{ "$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-antenna-uplink-config-schema.json", "title": "AntennaUplinkConfig", "description": "Information about the uplink Config of an antenna.", "type": "object", "properties": { "spectrumConfig": { "allOf": [ { "$ref": "#/components/schemas/UplinkSpectrumConfig" }, { "description": "Information about the uplink spectral Config." } ] }, "targetEirp": { "allOf": [ { "$ref": "#/components/schemas/Eirp" }, { "description": "EIRP of the target." } ] }, "transmitDisabled": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Whether or not uplink transmit is disabled." } ] } }, "required": [ "spectrumConfig", "targetEirp" ] }