ColorfulClouds · Schema

Alert

Alert schema from Caiyun Weather API

WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

Properties

Name Type Description
status string
content array
adcodes array
View JSON Schema on GitHub

JSON Schema

caiyun-weather-alert-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-alert-schema.json",
  "title": "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"
      }
    }
  }
}