{ "$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-eirp-structure.json", "name": "Eirp", "description": "Object that represents EIRP.", "type": "object", "properties": { "units": { "allOf": [ { "$ref": "#/components/schemas/EirpUnits" }, { "description": "Units of an EIRP." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/Double" }, { "description": "Value of an EIRP. Valid values are between 20.0 to 50.0 dBW." } ] } }, "required": [ "units", "value" ] }