ColorfulClouds · JSON Structure

Caiyun Weather Daily Astro Item Structure

DailyAstroItem schema from Caiyun Weather API

Type: object Properties: 3 Required: 3
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

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

Properties

date sunrise sunset

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-astro-item-structure.json",
  "name": "DailyAstroItem",
  "description": "DailyAstroItem schema from Caiyun Weather API",
  "type": "object",
  "properties": {
    "date": {
      "type": "date"
    },
    "sunrise": {
      "$ref": "#/components/schemas/DailyAstroTime"
    },
    "sunset": {
      "$ref": "#/components/schemas/DailyAstroTime"
    }
  },
  "required": [
    "date",
    "sunrise",
    "sunset"
  ]
}