Amazon Ground Station · JSON Structure

Ground Station Eirp Structure

Object that represents EIRP.

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

Eirp 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-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"
  ]
}