{ "$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-bandwidth-structure.json", "name": "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": "

Frequency bandwidth value. AWS Ground Station currently has the following bandwidth limitations:

" } ] } }, "required": [ "units", "value" ] }