...
[Property]="Text"
[Property]=Numeric Value
...
Identify the Columns to Filter on
Populate the property name value that corresponds with metadata content column.
Code Block |
---|
{
"transfer" : {
"metadata_map": {
"schemas": [
{
"mappings": [
{
"source": {
"property": {
"name": "LName",
"type": "string"
}
},
"destination": {
"property": {
"name": "LName",
"type": "string"
}
}
}
]
}
]
}
}
} |
...
Filter Using REST API
If the target platform does not support metadata, the filter
or text
definition for the given connection will be ignored.
...
Operator ( | Description | Equivalent T |
|
| ||||||
---|---|---|---|---|---|---|---|---|---|---|
| equals |
|
|
| ||||||
| not equals |
|
|
| ||||||
| less than |
|
|
| ||||||
| less than or equal to |
|
|
| ||||||
| greater than |
|
|
| ||||||
| greater than or equal to |
|
|
| ||||||
| starts with |
|
|
| ||||||
| does not start with |
|
|
| ||||||
| ends with |
|
|
| ||||||
| does not end with |
|
|
| ||||||
| contains |
|
|
| ||||||
| does not contain |
|
|
| ||||||
| includes all the |
|
|
| ||||||
| does not include all the |
|
|
| ||||||
| the |
|
|
| ||||||
| the |
|
|
|
...
Code Block |
---|
{
...
"transfer": {
...
"filter": {
"source": [{
"action": "exclude",
"rules": [{
"text": "[ProtectionLevel]=\"Sensitive\"",
"type": "filter_metadata"
}],
"type": "filter_rule"
}
]
}
}
...
} |
...
Populate the property name value that corresponds with metadata content column.
Code Block |
---|
{ "transfer" : { "metadata_map": { "schemas": [ { "mappings": [ { "source": { "property": { "name": "LName", "type": "string" } }, "destination": { "property": { "name": "LName", "type": "string" } } } ] } ] } } } |
...