Weatherbit · JSON Structure

Weatherbit Energy Obs Group Structure

EnergyObsGroup schema from Weatherbit API

Type: object Properties: 4
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

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

Properties

count start_date end_date 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-energy-obs-group-structure.json",
  "name": "EnergyObsGroup",
  "description": "EnergyObsGroup schema from Weatherbit API",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "Count of found observations",
      "example": 1
    },
    "start_date": {
      "type": "int32",
      "description": "Start Date"
    },
    "end_date": {
      "type": "int32",
      "description": "End Date"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EnergyObs"
      }
    }
  }
}