{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/dog-api/refs/heads/main/json-schema/breed-list-response.json", "title": "BreedListResponse", "description": "Response envelope for the master breed list.", "type": "object", "properties": { "message": { "type": "object", "description": "Map of breed name to a list of sub-breed names.", "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "status": { "type": "string", "enum": ["success", "error"] } }, "required": ["message", "status"] }