{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/xweather/refs/heads/main/json-schema/xweather-conditions-response-schema.json", "title": "ConditionsResponse", "description": "ConditionsResponse schema from Xweather Weather API", "allOf": [ { "$ref": "#/components/schemas/ApiResponse" }, { "type": "object", "properties": { "response": { "oneOf": [ { "$ref": "#/components/schemas/ConditionsRecord" }, { "type": "array", "items": { "$ref": "#/components/schemas/ConditionsRecord" } } ] } } } ] }