{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-reserve-contact-request-schema.json", "title": "ReserveContactRequest", "description": "
", "type": "object", "properties": { "endTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "End time of a contact in UTC." } ] }, "groundStation": { "allOf": [ { "$ref": "#/components/schemas/GroundStationName" }, { "description": "Name of a ground station." } ] }, "missionProfileArn": { "allOf": [ { "$ref": "#/components/schemas/MissionProfileArn" }, { "description": "ARN of a mission profile." } ] }, "satelliteArn": { "allOf": [ { "$ref": "#/components/schemas/satelliteArn" }, { "description": "ARN of a satellite" } ] }, "startTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "Start time of a contact in UTC." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagsMap" }, { "description": "Tags assigned to a contact." } ] } }, "required": [ "endTime", "groundStation", "missionProfileArn", "satelliteArn", "startTime" ] }