Weatherbit · JSON Structure

Weatherbit Normals Structure

Normals schema from Weatherbit API

Type: object Properties: 3
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

Normals 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

timezone sources 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-normals-structure.json",
  "name": "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"
      }
    }
  }
}