{ "$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-downlink-demod-decode-config-schema.json", "title": "AntennaDownlinkDemodDecodeConfig", "description": "Information about how AWS Ground Station should con\ufb01gure an antenna for downlink demod decode during a contact.", "type": "object", "properties": { "decodeConfig": { "allOf": [ { "$ref": "#/components/schemas/DecodeConfig" }, { "description": "Information about the decode Config." } ] }, "demodulationConfig": { "allOf": [ { "$ref": "#/components/schemas/DemodulationConfig" }, { "description": "Information about the demodulation Config." } ] }, "spectrumConfig": { "allOf": [ { "$ref": "#/components/schemas/SpectrumConfig" }, { "description": "Information about the spectral Config." } ] } }, "required": [ "decodeConfig", "demodulationConfig", "spectrumConfig" ] }