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