Amazon Ground Station · JSON Structure

Ground Station Antenna Uplink Config Structure

Information about the uplink Config of an antenna.

Type: object Properties: 3 Required: 2
Data ProcessingIoTSatellite CommunicationsSpace Technology

AntennaUplinkConfig is a JSON Structure definition published by Amazon Ground Station, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

spectrumConfig targetEirp transmitDisabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-antenna-uplink-config-structure.json",
  "name": "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"
  ]
}