Precipitation schema from Caiyun Weather API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/colorfulclouds/refs/heads/main/json-schema/caiyun-weather-precipitation-schema.json", "title": "Precipitation", "description": "Precipitation schema from Caiyun Weather API", "type": "object", "properties": { "local": { "$ref": "#/components/schemas/PrecipitationLocal" }, "nearest": { "$ref": "#/components/schemas/PrecipitationNearest" } }, "required": [ "local" ] }