{ "$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" } } } }