ColorfulClouds · Schema

HourlyPM25Item

HourlyPM25Item schema from Caiyun Weather API

WeatherForecastingAir QualityPrecipitationHyperlocalGeospatialChina

Properties

Name Type Description
datetime string
value number
View JSON Schema on GitHub

JSON Schema

caiyun-weather-hourly-pm25-item-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-hourly-pm25-item-schema.json",
  "title": "HourlyPM25Item",
  "description": "HourlyPM25Item schema from Caiyun Weather API",
  "type": "object",
  "properties": {
    "datetime": {
      "type": "string",
      "format": "date-time"
    },
    "value": {
      "type": "number",
      "format": "float"
    }
  },
  "required": [
    "datetime",
    "value"
  ]
}