GroundStationData

Information about the ground station data.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
groundStationId object
groundStationName object
region object
View JSON Schema on GitHub

JSON Schema

ground-station-ground-station-data-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-ground-station-data-schema.json",
  "title": "GroundStationData",
  "description": "Information about the ground station data.",
  "type": "object",
  "properties": {
    "groundStationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroundStationName"
        },
        {
          "description": "UUID of a ground station."
        }
      ]
    },
    "groundStationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroundStationName"
        },
        {
          "description": "Name of a ground station."
        }
      ]
    },
    "region": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AWSRegion"
        },
        {
          "description": "Ground station Region."
        }
      ]
    }
  }
}