Amazon Ground Station · JSON Structure

Ground Station Ground Station Data Structure

Information about the ground station data.

Type: object Properties: 3
Data ProcessingIoTSatellite CommunicationsSpace Technology

GroundStationData is a JSON Structure definition published by Amazon Ground Station, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

groundStationId groundStationName region

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-ground-station-data-structure.json",
  "name": "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."
        }
      ]
    }
  }
}