Weatherbit · Schema

Normals

Normals schema from Weatherbit API

WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

Properties

Name Type Description
timezone string Local IANA time zone
sources array List of data sources used in response
data array
View JSON Schema on GitHub

JSON Schema

weatherbit-normals-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-normals-schema.json",
  "title": "Normals",
  "description": "Normals schema from Weatherbit API",
  "type": "object",
  "properties": {
    "timezone": {
      "type": "string",
      "description": "Local IANA time zone",
      "example": "America/New_York"
    },
    "sources": {
      "type": "array",
      "description": "List of data sources used in response",
      "items": {
        "type": "string",
        "example": "era5"
      }
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NormalsObj"
      }
    }
  }
}