ThemeParks.wiki · JSON Structure

Themeparks Wiki Schedule Response Structure

Schedule for an entity

Type: object Properties: 4
EntertainmentReal-TimeTheme ParksWait TimesTravel

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

Properties

id name entityType schedule

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-response-structure.json",
  "name": "ScheduleResponse",
  "description": "Schedule for an entity",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Entity UUID"
    },
    "name": {
      "type": "string",
      "description": "Entity name"
    },
    "entityType": {
      "type": "string",
      "description": "Entity type"
    },
    "schedule": {
      "type": "array",
      "description": "Array of schedule entries",
      "items": {
        "$ref": "#/components/schemas/ScheduleEntry"
      }
    }
  }
}