Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

ContentRelationItemAssignedCondition checks if any/a specific Content Item was added to the provided Relationship Field to any Content Item and triggers this very moment e.g. check if the Press Kit has a Logo (or the correct Logo) and a Hero Shot (or the correct Hero Shot)Triggers the moment an item is assigned in the provided Relationship Field, either any value (leave refId empty) or a specific value (provide refId). 

Use Content Relation Item Assigned inside AND/OR to check for multiple assignments to Relationship Fields. 

Check if Press Kit Has a Hero Shot and a Logo
{
    "kind": "AndCondition",
    "conditions": [
		{
			"kind": "ContentRelationItemAssignedCondition",
			"fieldPath": "pressKit.heroShot",
			"contentId": "6517nls8465os810401ub"
		},
		{
			"kind": "ContentRelationItemAssignedCondition",
			"fieldPath": "pressKit.logo",
			"contentId": "6517nls8465os810401ub"
		}
	]
}


Specific Definitions

The ID is used in the Business Rule, so you can update the list item attributes any time. 

PropertyValue
kind

ContentRelationItemAssignedCondition

fieldpath

layerId.fieldId

contentSchemaId.fieldId

Details on accessing field values, specifically fieldpath starts lowercase

Supports JSON path syntax which you can test here: https://jsonpath.com.

contentId

The Content Item ID of the Content Item to check, which you see in the URL when you double-click to open the Content Item. 

This is optional. You can leave it empty if you want to check any assignments in the field. 

You can get the refId by opening up the List Item in Detail View and check the URL. 

Is Product 12346xxx Assigned?
{
	"kind": "ContentRelationItemAssignedCondition",
	"fieldPath": "pressKit.heroShot",
	"contentId": "6517nls8465os810401ub"
}
  • No labels