Skip to main content

DataSetGetQueryTimePeriods

The time period criteria to filter results by in a data set GET query.

Properties

Property Type Required Description
eq string false

Filter the results to be in this time period.

notEq string false

Filter the results to not be in this time period.

in array (string) false

Filter the results to be in one of these time periods.

notIn array (string) false

Filter the results to not be in one of these time periods.

gt string false

Filter the results to be in a time period that is chronologically greater than the one specified.

gte string false

Filter the results to be in a time period that is chronologically greater than or equal to the one specified.

lt string false

Filter the results to be in a time period that is chronologically less than the one specified.

lte string false

Filter the results to be in a time period that is chronologically less than or equal to the one specified.

Example schema

{
  "eq": "2024|CY",
  "notEq": "2024/2025|AY",
  "in": [
    "2022|CY",
    "2023|CY",
    "2024|CY"
  ],
  "notIn": [
    "2020|M1",
    "2020|M2",
    "2020|M3"
  ],
  "gt": "2017/2018|AY",
  "gte": "2017|CY",
  "lt": "2023/2024|AY",
  "lte": "2023|CY"
}