{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/colorfulclouds/refs/heads/main/json-structure/caiyun-weather-daily-wind-item-structure.json", "name": "DailyWindItem", "description": "DailyWindItem schema from Caiyun Weather API", "type": "object", "properties": { "date": { "type": "date" }, "max": { "$ref": "#/components/schemas/DailyWindProperty" }, "min": { "$ref": "#/components/schemas/DailyWindProperty" }, "avg": { "$ref": "#/components/schemas/DailyWindProperty" } }, "required": [ "date", "max", "min", "avg" ] }