ThemeParks.wiki · JSON Structure

Themeparks Wiki Live Data Response Structure

Live data for an entity and all its children

Type: object Properties: 4
EntertainmentReal-TimeTheme ParksWait TimesTravel

LiveDataResponse 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 liveData

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-live-data-response-structure.json",
  "name": "LiveDataResponse",
  "description": "Live data for an entity and all its children",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Entity UUID"
    },
    "name": {
      "type": "string",
      "description": "Entity name"
    },
    "entityType": {
      "type": "string",
      "description": "Entity type"
    },
    "liveData": {
      "type": "array",
      "description": "Live data for child entities",
      "items": {
        "$ref": "#/components/schemas/LiveEntityData"
      }
    }
  }
}