Entity with its children
{ "$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" } } } }