Filtering: Metadata Content
To filter items by metadata, the target platform must support metadata. If the target platform does not support metadata, the "Metadata Content" custom filter will be disabled. To filter metadata content, both the Filtering and Scripting options need to be enabled on the Advanced setting page. The Metadata Mapping option should not be enabled.
Filtering metadata is not supported when using the Metadata Import function. Any metadata content filters configured with Metadata Import will be ignored.
Metadata should be entered using the one of the following formats:
[Property]="Text"
[Property]=Numeric Value
[Property]="Text 1" OR [Property]="Text 2"
[Property]=Numeric Value 1 AND [Property]=Numeric Value 2
The following example excludes items with value "Doe" for the property value LName metadata column on the Source platform.
The following example excludes items with value "Doe" or “Smith” for the property value LName metadata column on the Source platform.
Identify the Columns to Filter on
Populate the property name value that corresponds with metadata content column.
{
"transfer" : {
"metadata_map": {
"schemas": [
{
"mappings": [
{
"source": {
"property": {
"name": "LName",
"type": "string"
}
},
"destination": {
"property": {
"name": "LName",
"type": "string"
}
}
}
]
}
]
}
}
}