ColorfulClouds · JSON Structure

Caiyun Weather Realtime Response Structure

RealtimeResponse schema from Caiyun Weather API

Type: Properties: 0
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

RealtimeResponse 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-realtime-response-structure.json",
  "name": "RealtimeResponse",
  "description": "RealtimeResponse schema from Caiyun Weather API",
  "allOf": [
    {
      "$ref": "#/components/schemas/EnvelopeBase"
    },
    {
      "type": "object",
      "properties": {
        "result": {
          "type": "object",
          "properties": {
            "realtime": {
              "$ref": "#/components/schemas/Realtime"
            },
            "primary": {
              "type": "int32"
            }
          },
          "required": [
            "realtime"
          ]
        }
      },
      "required": [
        "result"
      ]
    }
  ]
}