PropertyMultiValueDiffValve
Compares two multi value properties (source_1 & source_2) and puts the values from the first one, that doesn't exist in the second one, in a third property (dest).
Valve operates on the Current Item Set and will process all items surviving the common item filtering rules.
Properties
Example Configuration
{
"name": "PropertyMultiValueDiffValve",
"config": {
"source_1":"description",
"source_2":"carLicense",
"dest":"match_prop"
}
}
The valve will compare all values in 'description' against the values in 'carLicense'. Missing values in 'carLicense' will be added to 'match_prop'.
Requirements
item set must have at least one entry.