{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/disney/refs/heads/main/json-schema/disney-service-index-schema.json", "title": "ServiceIndex", "description": "Map of named endpoint operations to their URL templates returned by GET /.", "type": "object", "required": [ "getCharacter", "getCharacterById", "getCharactersById" ], "properties": { "getCharacter": { "type": "string", "description": "URL template for the paginated character list endpoint.", "example": "/character" }, "getCharacterById": { "type": "string", "description": "URL template for the single-character-by-id endpoint.", "example": "/character/:id" }, "getCharactersById": { "type": "string", "description": "URL template for the plural-path single-character alias.", "example": "/characters/:id" } } }