ColorfulClouds · JSON Structure

Caiyun Weather Daily Response Structure

DailyResponse schema from Caiyun Weather API

Type: Properties: 0
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

DailyResponse is a JSON Structure definition published by ColorfulClouds. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/colorfulclouds/refs/heads/main/json-structure/caiyun-weather-daily-response-structure.json",
  "name": "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": "int32"
            }
          },
          "required": [
            "daily"
          ]
        }
      }
    }
  ]
}