Amazon Ground Station · JSON Structure

Ground Station Frequency Structure

Object that describes the frequency.

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

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

Properties

units value

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-frequency-structure.json",
  "name": "Frequency",
  "description": "Object that describes the frequency.",
  "type": "object",
  "properties": {
    "units": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FrequencyUnits"
        },
        {
          "description": "Frequency units."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "Frequency value. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink."
        }
      ]
    }
  },
  "required": [
    "units",
    "value"
  ]
}