Weatherbit · Schema

CurrentObsGroup

CurrentObsGroup schema from Weatherbit API

WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

Properties

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

JSON Schema

weatherbit-current-obs-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/weatherbit/refs/heads/main/json-schema/weatherbit-current-obs-group-schema.json",
  "title": "CurrentObsGroup",
  "description": "CurrentObsGroup schema from Weatherbit API",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Count of found observations",
      "example": 1
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CurrentObs"
      }
    }
  }
}