{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/weatherbit/refs/heads/main/json-structure/weatherbit-current-obs-group-structure.json", "name": "CurrentObsGroup", "description": "CurrentObsGroup schema from Weatherbit API", "type": "object", "properties": { "count": { "type": "int32", "description": "Count of found observations", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/CurrentObs" } } } }