{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-ground-station-data-structure.json", "name": "GroundStationData", "description": "Information about the ground station data.", "type": "object", "properties": { "groundStationId": { "allOf": [ { "$ref": "#/components/schemas/GroundStationName" }, { "description": "UUID of a ground station." } ] }, "groundStationName": { "allOf": [ { "$ref": "#/components/schemas/GroundStationName" }, { "description": "Name of a ground station." } ] }, "region": { "allOf": [ { "$ref": "#/components/schemas/AWSRegion" }, { "description": "Ground station Region." } ] } } }