Edit

Example: stop actions for the particular scene:

				
					{
   "blockOptions":{
      "method":{
         "name":"stopScene",
         "args":{
            "sceneId":"sceneId"
         }
      }
   },
   "blockType":"then",
   "fields":[
      {
         "name":"sceneId",
         "type":"sceneId",
         "value":"{scene_id}"
      }
   ]
}				
			
Edit

Example: stop actions from the block “else” for the scene:

				
					{
   "blockOptions":{
      "method":{
         "name":"stopScene",
         "args":{
            "sceneId":"sceneId",
            "block":"block"
         }
      }
   },
   "blockType":"then",
   "fields":[
      {
         "name":"sceneId",
         "type":"sceneId",
         "value": "{scene_id}"
      },
      {
         "name":"block",
         "type":"string",
         "value": "else"
      }
   ]
}