AntennaUplinkConfig

Information about the uplink Config of an antenna.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
spectrumConfig object
targetEirp object
transmitDisabled object
View JSON Schema on GitHub

JSON Schema

ground-station-antenna-uplink-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-uplink-config-schema.json",
  "title": "AntennaUplinkConfig",
  "description": "Information about the uplink <code>Config</code> of an antenna.",
  "type": "object",
  "properties": {
    "spectrumConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UplinkSpectrumConfig"
        },
        {
          "description": "Information about the uplink spectral <code>Config</code>."
        }
      ]
    },
    "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"
  ]
}