Amazon Ground Station · JSON Structure

Ground Station Uplink Spectrum Config Structure

Information about the uplink spectral Config.

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

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

Properties

centerFrequency polarization

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-uplink-spectrum-config-structure.json",
  "name": "UplinkSpectrumConfig",
  "description": "Information about the uplink spectral <code>Config</code>.",
  "type": "object",
  "properties": {
    "centerFrequency": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Frequency"
        },
        {
          "description": "Center frequency of an uplink spectral <code>Config</code>. Valid values are between 2025 to 2120 MHz."
        }
      ]
    },
    "polarization": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Polarization"
        },
        {
          "description": "Polarization of an uplink spectral <code>Config</code>. Capturing both <code>\"RIGHT_HAND\"</code> and <code>\"LEFT_HAND\"</code> polarization requires two separate configs."
        }
      ]
    }
  },
  "required": [
    "centerFrequency"
  ]
}