ColorfulClouds · Schema

WeatherResponse

WeatherResponse schema from Caiyun Weather API

WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina
View JSON Schema on GitHub

JSON Schema

caiyun-weather-weather-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-weather-response-schema.json",
  "title": "WeatherResponse",
  "description": "WeatherResponse schema from Caiyun Weather API",
  "allOf": [
    {
      "$ref": "#/components/schemas/EnvelopeBase"
    },
    {
      "type": "object",
      "properties": {
        "result": {
          "$ref": "#/components/schemas/Result"
        }
      },
      "required": [
        "result"
      ]
    }
  ]
}