ColorfulClouds · JSON Structure

Caiyun Weather Alert Structure

Alert schema from Caiyun Weather API

Type: object Properties: 3
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

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

Properties

status content adcodes

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-alert-structure.json",
  "name": "Alert",
  "description": "Alert schema from Caiyun Weather API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "example": "ok"
    },
    "content": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertContentItem"
      }
    },
    "adcodes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AlertAdcode"
      }
    }
  }
}