DataSetQueryCriteriaOr
A condition criteria where at least one sub-criteria must resolve to true for the overall query to match any results.
This is equivalent to the OR
operator in SQL.
Properties
Property | Type | Required | Description |
---|---|---|---|
or |
array (one of: ) | true |
The sub-criteria where one must resolve to true. Validation constraints:
|
Example schema
{
"or": [
{
"filters": {
"eq": "pVAkV"
}
},
{
"locations": {
"eq": {
"level": "LA",
"code": "E08000019"
}
}
}
]
}