{ "$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-uplink-echo-config-schema.json", "title": "UplinkEchoConfig", "description": "

Information about an uplink echo Config.

Parameters from the AntennaUplinkConfig, corresponding to the specified AntennaUplinkConfigArn, are used when this UplinkEchoConfig is used in a contact.

", "type": "object", "properties": { "antennaUplinkConfigArn": { "allOf": [ { "$ref": "#/components/schemas/ConfigArn" }, { "description": "ARN of an uplink Config." } ] }, "enabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Whether or not an uplink Config is enabled." } ] } }, "required": [ "antennaUplinkConfigArn", "enabled" ] }