AntennaDownlinkDemodDecodeConfig

Information about how AWS Ground Station should configure an antenna for downlink demod decode during a contact.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
decodeConfig object
demodulationConfig object
spectrumConfig object
View JSON Schema on GitHub

JSON Schema

ground-station-antenna-downlink-demod-decode-config-schema.json Raw ↑
{
  "$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 <code>Config</code>."
        }
      ]
    },
    "demodulationConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DemodulationConfig"
        },
        {
          "description": "Information about the demodulation <code>Config</code>."
        }
      ]
    },
    "spectrumConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SpectrumConfig"
        },
        {
          "description": "Information about the spectral <code>Config</code>."
        }
      ]
    }
  },
  "required": [
    "decodeConfig",
    "demodulationConfig",
    "spectrumConfig"
  ]
}