Weatherbit · JSON Structure

Weatherbit Normals Obj Structure

NormalsObj schema from Weatherbit API

Type: object Properties: 9
WeatherForecastingHistorical DataAir QualityAlertsAgricultural Weather

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

Properties

month temp dewpt max_wind_spd min_wind_spd wind_spd wind_dir precip snow

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-obj-structure.json",
  "name": "NormalsObj",
  "description": "NormalsObj schema from Weatherbit API",
  "type": "object",
  "properties": {
    "month": {
      "type": "double",
      "description": "Month number",
      "example": 2.0
    },
    "temp": {
      "type": "double",
      "description": "Average temperature",
      "example": 30.0
    },
    "dewpt": {
      "type": "double",
      "description": "Average dew point",
      "example": 25.0
    },
    "max_wind_spd": {
      "type": "double",
      "description": "Maximum wind speed",
      "example": 5.0
    },
    "min_wind_spd": {
      "type": "double",
      "description": "Minimum wind speed",
      "example": 0.0
    },
    "wind_spd": {
      "type": "double",
      "description": "Average wind speed",
      "example": 2.0
    },
    "wind_dir": {
      "type": "double",
      "description": "Average wind direction",
      "example": 200.0
    },
    "precip": {
      "type": "double",
      "description": "Average Liquid equivalent precipitation - Default (mm)",
      "example": 3.1
    },
    "snow": {
      "type": "double",
      "description": "Average Snowfall - Default (mm)",
      "example": 30.5
    }
  }
}