{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HistorySubhourly", "title": "HistorySubhourly", "type": "object", "properties": { "city_name": { "type": "string", "description": "City name (Closest)", "example": "Seattle" }, "state_code": { "type": "string", "description": "State abbreviation", "example": "WA" }, "country_code": { "type": "string", "description": "Country abbreviation", "example": "US" }, "timezone": { "type": "string", "description": "Local IANA time zone", "example": "America/New_York" }, "lat": { "type": "number", "description": "Latitude", "example": 47.61 }, "lon": { "type": "number", "description": "Longitude", "example": -122.33 }, "sources": { "type": "array", "description": "List of data sources used in response", "items": { "type": "string", "example": "12345-89083" } }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/HistoryObj" } } } }