{
"$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-spectrum-config-schema.json",
"title": "SpectrumConfig",
"description": "Object that describes a spectral Config.",
"type": "object",
"properties": {
"bandwidth": {
"allOf": [
{
"$ref": "#/components/schemas/FrequencyBandwidth"
},
{
"description": "
Bandwidth of a spectral Config. AWS Ground Station currently has the following bandwidth limitations:
For AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz to 650 MHz.
For AntennaDownlinkconfig valid values are between 10 kHz to 54 MHz.
For AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.
Config. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink."
}
]
},
"polarization": {
"allOf": [
{
"$ref": "#/components/schemas/Polarization"
},
{
"description": "Polarization of a spectral Config. Capturing both \"RIGHT_HAND\" and \"LEFT_HAND\" polarization requires two separate configs."
}
]
}
},
"required": [
"bandwidth",
"centerFrequency"
]
}