ThemeParks.wiki · JSON Structure

Themeparks Wiki Schedule Entry Structure

A single schedule entry for a park operating day

Type: object Properties: 5
EntertainmentReal-TimeTheme ParksWait TimesTravel

ScheduleEntry is a JSON Structure definition published by ThemeParks.wiki, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

date openingTime closingTime type specialHours

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/themeparks-wiki/refs/heads/main/json-structure/themeparks-wiki-schedule-entry-structure.json",
  "name": "ScheduleEntry",
  "description": "A single schedule entry for a park operating day",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "description": "Date in YYYY-MM-DD format",
      "example": "2025-03-15"
    },
    "openingTime": {
      "type": "string",
      "description": "Park opening time as ISO 8601 datetime",
      "example": "2025-03-15T09:00:00-05:00"
    },
    "closingTime": {
      "type": "string",
      "description": "Park closing time as ISO 8601 datetime",
      "example": "2025-03-15T23:00:00-05:00"
    },
    "type": {
      "type": "string",
      "description": "Schedule entry type",
      "enum": [
        "OPERATING",
        "TICKETED_EVENT",
        "PRIVATE_EVENT",
        "EXTRA_HOURS"
      ],
      "example": "OPERATING"
    },
    "specialHours": {
      "type": "boolean",
      "description": "Whether this is special event hours",
      "nullable": true
    }
  }
}