ColorfulClouds · Schema

DailyResponse

DailyResponse schema from Caiyun Weather API

WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina
View JSON Schema on GitHub

JSON Schema

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