Type Equals
The typeEquals
condition tests whether a node's type is equal to a given value.
JSON Schema
{
"title": "Type Equals",
"properties": {
"type": {
"type": "string",
"title": "Type"
}
}
}
Example #1
Suppose you wanted to test whether a node is of type my:article
. You could set up the condition like this:
{
"type": "typeEquals",
"config": {
"type": "my:article"
}
}