{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HistoryAG", "title": "HistoryAG", "type": "object", "properties": { "lat": { "type": "number", "description": "Latitude", "example": 47.61 }, "lon": { "type": "number", "description": "Longitude", "example": -122.33 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/HistoryAGObj" } } } }