PropertyAddValve
Note
Valve for adding one or more properties to an item.
Valve operates on the Current Item Set and will process all items surviving the common item filtering rules.
Properties
| Name | Description | Default value | Mandatory | Supports property expansion |
|---|---|---|---|---|
| name | The name of the property | Yes | Yes | |
| value | The property value. If list, property will be multi value. | Yes | Yes | |
| enable_multi_value | Flag to enable extended multi value support. Valve will look for JSON encoded arrays in the (expanded) value and add all values. | false | No | No |
| splitter | Splitter character for values | ',' | No | No |
Example Configuration
{
"name": "PropertyAddValve",
"config": {
"name":"user_display_name",
"value":"{{item.cn}}",
"splitter" : ";"
}
}
Requirements
Item set must have at least one entry.