Eirp

Object that represents EIRP.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
units object
value object
View JSON Schema on GitHub

JSON Schema

ground-station-eirp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-eirp-schema.json",
  "title": "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"
  ]
}