Skip to main content

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:

  • Minimum items: 1

Example schema

{
  "and": [
    {
      "filters": {
        "eq": "pVAkV"
      }
    },
    {
      "locations": {
        "eq": "LA|code|E08000019"
      }
    }
  ]
}