DataSetQueryCriteriaGeographicLevels
The geographic levels criteria to filter results by in a data set 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": [
"REG",
"LA"
],
"notIn": [
"LAD",
"SCH"
]
}