Condition
This JSON example represents a filtering condition for a dataset. It specifies that the dataset should be filtered based on the "ProductName" attribute, where the value should be equal to "apple." Additionally, it suggests a sorting priority of 1 for this condition.
{
"Sort": 1,
"Field": "ProductName",
"DataType": "Text",
"Operator": "Equal",
"Values": ["apple"]
}
Last updated
Was this helpful?