Holiday API · JSON Structure

Holidays Holiday Structure

Type: object Properties: 8
CalendarHolidaysPublic HolidaysObservancesReference DataCountriesLanguagesWorkdaysBusiness DaysLocalization

Holiday is a JSON Structure definition published by Holiday API, describing 8 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

name date observed public country uuid weekday subdivisions

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Holiday",
  "type": "object",
  "properties": {
    "name": {"type": "string"},
    "date": {"type": "string", "format": "date"},
    "observed": {"type": "string", "format": "date"},
    "public": {"type": "boolean"},
    "country": {"type": "string"},
    "uuid": {"type": "string", "format": "uuid"},
    "weekday": {
      "type": "object",
      "properties": {
        "date": {"type": "object"},
        "observed": {"type": "object"}
      }
    },
    "subdivisions": {"type": "array", "items": {"type": "string"}}
  }
}