Table of Contents
Unassign Tagbox Items Action
Table of Contents
The UnassignTagboxItemsAction unassigns a specific tagbox item from the specified tagbox field, e.g., to remove flagged content tags from public keywords. This requires the layer with the field and the tag to be present on the content; therefore, combine with "LayerAssignedCondition."
The Business Rules are not executed in sequence. If one Business Rule assigns tags and another unassigns a tag, it can happen that this does not work, as the Business Rule Engine may first try to unassign the value when the tags are not yet assigned.
Specific definitions
| Property | Value |
|---|---|
| kind | UnassignTagboxItemsAction |
| path |
The path to the field may be the LayerId. |
| fieldId |
The ID of a tagbox field, the value should be inserted in. |
| refIds |
A list of refIds of the items that should be assigned, either a list of refIds or a variable.
|
Unassign tags in the Keywords field from a variable
"actions": [
{
"kind": "UnassignTagboxItemsAction ",
"path": "BasicInformation",
"fieldId": "publicKeywords",
"refIds": "$myVariable$"
}
],