ColorfulClouds · JSON Structure

Caiyun Weather Daily Wind Item Structure

DailyWindItem schema from Caiyun Weather API

Type: object Properties: 4 Required: 4
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

DailyWindItem is a JSON Structure definition published by ColorfulClouds, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

date max min avg

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-wind-item-structure.json",
  "name": "DailyWindItem",
  "description": "DailyWindItem schema from Caiyun Weather API",
  "type": "object",
  "properties": {
    "date": {
      "type": "date"
    },
    "max": {
      "$ref": "#/components/schemas/DailyWindProperty"
    },
    "min": {
      "$ref": "#/components/schemas/DailyWindProperty"
    },
    "avg": {
      "$ref": "#/components/schemas/DailyWindProperty"
    }
  },
  "required": [
    "date",
    "max",
    "min",
    "avg"
  ]
}