Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt

LayerAssignedCondition checks if the selected layer is assigned to any Content Item and triggers then e.g. Check if layer with ID "ProductInformation" is assigned to find all product-related content. 

(lightbulb) Triggers when a Content Item is available which has the selected Layer assigned. 

(lightbulb) Use Layer Assigned inside AND/OR to check if multiple Layers are assigned. 

...

Code Block
{
    "kind": "AndCondition",
    "conditions": [
		{
		"kind": "LayerAssignedCondition",
		"layerId": "AutoTagging"
		},
		{
		"kind": "LayerAssignedCondition",
		"layerId": "ProductInformation
		}
	]
}

...

Property

Value

kind

LayerAssignedCondition

layerId

The ID of the Layer to check. 

See Access Layer for details, but except in the JSON, you don't have to worry about casing. 

...