{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/colorfulclouds/refs/heads/main/json-schema/caiyun-weather-hourly-response-schema.json", "title": "HourlyResponse", "description": "HourlyResponse schema from Caiyun Weather API", "allOf": [ { "$ref": "#/components/schemas/EnvelopeBase" }, { "type": "object", "properties": { "result": { "type": "object", "properties": { "hourly": { "$ref": "#/components/schemas/Hourly" }, "primary": { "type": "integer" } }, "required": [ "hourly" ] } } } ] }