{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/xweather/refs/heads/main/json-schema/xweather-tropical-cyclones-response-schema.json", "title": "TropicalCyclonesResponse", "description": "TropicalCyclonesResponse schema from Xweather Weather API", "allOf": [ { "$ref": "#/components/schemas/ApiResponse" }, { "type": "object", "properties": { "response": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "basin": { "type": "string" }, "category": { "type": "string" }, "status": { "type": "string" } } } } } } ] }