ThemeParks.wiki · Schema

ChildrenResponse

Entity with its children

EntertainmentReal-TimeTheme ParksWait TimesTravel

Properties

Name Type Description
id string Parent entity UUID
name string Parent entity name
entityType string Parent entity type
children array Child entities
View JSON Schema on GitHub

JSON Schema

themeparks-wiki-children-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/themeparks-wiki/refs/heads/main/json-schema/themeparks-wiki-children-response-schema.json",
  "title": "ChildrenResponse",
  "description": "Entity with its children",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Parent entity UUID"
    },
    "name": {
      "type": "string",
      "description": "Parent entity name"
    },
    "entityType": {
      "type": "string",
      "description": "Parent entity type"
    },
    "children": {
      "type": "array",
      "description": "Child entities",
      "items": {
        "$ref": "#/components/schemas/Entity"
      }
    }
  }
}