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 »

ContentSchemaCondition checks if any Content Item has the defined Content Schema (Virtual Type or File Type) and triggers then e.g. check for Content Schema "Images" to find all images. 

Triggers the moment the selected Content Schema is available. 

Use Content Schema inside AND/OR to check for multiple Content Item Types. 

Find Images and Documents
{
	"kind": "AndCondition",
	"conditions": [
		{
			"kind": "ContentSchemaCondition",
			"schemaId": "DocumentMetadata"
		},
		{
			"kind": "ContentSchemaCondition",
			"schemaId": "ImageMetadata"
		}
	]
}

Specific Definitions

Type-ahead and select the Content Type from the dropdown. The schemaID is used; Virtual Type ID or File Type ID is used in the Business Rule, so you can update the name anytime.  

PropertyValue
kind

ContentSchemaCondition

schemaId

The ID of the Virtual Type or File Type to check. 

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

Is Layer AutoTagging Assigned?
{
	"kind": "ContentSchemaCondition",
	"schemaId": "DocumentMetadata"
}
  • No labels