Weatherbit · JSON Structure

Weatherbit Current Obs Group Structure

CurrentObsGroup schema from Weatherbit API

Type: object Properties: 2
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

CurrentObsGroup is a JSON Structure definition published by Weatherbit, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

count data

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/weatherbit/refs/heads/main/json-structure/weatherbit-current-obs-group-structure.json",
  "name": "CurrentObsGroup",
  "description": "CurrentObsGroup schema from Weatherbit API",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "Count of found observations",
      "example": 1
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CurrentObs"
      }
    }
  }
}