Weatherbit · Schema

HistoryAG

HistoryAG schema from Weatherbit API

WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

Properties

Name Type Description
lat number Latitude
lon number Longitude
data array
View JSON Schema on GitHub

JSON Schema

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