Skip to main content

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:

  • Minimum items: 1

Example schema

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