ColorfulClouds · JSON Structure

Caiyun Weather Hourly Precipitation Item Structure

HourlyPrecipitationItem schema from Caiyun Weather API

Type: object Properties: 3 Required: 3
WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

HourlyPrecipitationItem 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

datetime value probability

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-hourly-precipitation-item-structure.json",
  "name": "HourlyPrecipitationItem",
  "description": "HourlyPrecipitationItem schema from Caiyun Weather API",
  "type": "object",
  "properties": {
    "datetime": {
      "type": "datetime"
    },
    "value": {
      "type": "float",
      "description": "Precipitation intensity in mm/hr."
    },
    "probability": {
      "type": "float",
      "description": "Per-hour precipitation probability (0-100)."
    }
  },
  "required": [
    "datetime",
    "value",
    "probability"
  ]
}