Weatherbit · Schema

CurrentObsGroup

WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

Properties

Name Type Description
count integer Count of found observations
data array
View JSON Schema on GitHub

JSON Schema

weatherbit-currentobsgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrentObsGroup",
  "title": "CurrentObsGroup",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Count of found observations",
      "example": 1
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CurrentObs"
      }
    }
  }
}