Amazon Ground Station · JSON Structure

Ground Station Elevation Structure

Elevation angle of the satellite in the sky during a contact.

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

Elevation 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

unit 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-elevation-structure.json",
  "name": "Elevation",
  "description": "Elevation angle of the satellite in the sky during a contact.",
  "type": "object",
  "properties": {
    "unit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AngleUnits"
        },
        {
          "description": "Elevation angle units."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Double"
        },
        {
          "description": "Elevation angle value."
        }
      ]
    }
  },
  "required": [
    "unit",
    "value"
  ]
}