FrequencyBandwidth

Object that describes the frequency bandwidth.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
units object
value object
View JSON Schema on GitHub

JSON Schema

ground-station-frequency-bandwidth-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-frequency-bandwidth-schema.json",
  "title": "FrequencyBandwidth",
  "description": "Object that describes the frequency bandwidth. ",
  "type": "object",
  "properties": {
    "units": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BandwidthUnits"
        },
        {
          "description": "Frequency bandwidth units."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "<p>Frequency bandwidth value. AWS Ground Station currently has the following bandwidth limitations:</p> <ul> <li> <p>For <code>AntennaDownlinkDemodDecodeconfig</code>, valid values are between 125 kHz to 650 MHz.</p> </li> <li> <p>For <code>AntennaDownlinkconfig</code>, valid values are between 10 kHz to 54 MHz.</p> </li> <li> <p>For <code>AntennaUplinkConfig</code>, valid values are between 10 kHz to 54 MHz.</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "units",
    "value"
  ]
}