Skip to main content

DataSetGetQueryGeographicLevels

The geographic levels criteria to filter results by in a data set GET query.

Properties

Property Type Required Description
eq GeographicLevelCode false

Filter the results to be in this geographic level.

notEq GeographicLevelCode false

Filter the results to not be in this geographic level.

in array (GeographicLevelCode) false

Filter the results to be in one of these geographic levels.

notIn array (GeographicLevelCode) false

Filter the results to not be in one of these geographic levels.

Example schema

{
  "eq": "NAT",
  "notEq": "PROV",
  "in": [
    "NAT",
    "LA"
  ],
  "notIn": [
    "REG",
    "LAD"
  ]
}