Weatherbit · JSON Structure

Weatherbit History Ag Structure

HistoryAG schema from Weatherbit API

Type: object Properties: 3
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

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

Properties

lat lon 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-history-ag-structure.json",
  "name": "HistoryAG",
  "description": "HistoryAG schema from Weatherbit API",
  "type": "object",
  "properties": {
    "lat": {
      "type": "double",
      "description": "Latitude",
      "example": 47.61
    },
    "lon": {
      "type": "double",
      "description": "Longitude",
      "example": -122.33
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HistoryAGObj"
      }
    }
  }
}