{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/colorfulclouds/refs/heads/main/json-schema/caiyun-weather-alert-schema.json", "title": "Alert", "description": "Alert schema from Caiyun Weather API", "type": "object", "properties": { "status": { "type": "string", "example": "ok" }, "content": { "type": "array", "items": { "$ref": "#/components/schemas/AlertContentItem" } }, "adcodes": { "type": "array", "items": { "$ref": "#/components/schemas/AlertAdcode" } } } }