Amazon Ground Station · JSON Structure

Ground Station Tle Ephemeris Structure

Two-line element set (TLE) ephemeris.

Type: object Properties: 2
Data ProcessingIoTSatellite CommunicationsSpace Technology

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

Properties

s3Object tleData

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-tle-ephemeris-structure.json",
  "name": "TLEEphemeris",
  "description": "Two-line element set (TLE) ephemeris.",
  "type": "object",
  "properties": {
    "s3Object": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Object"
        },
        {
          "description": "Identifies the S3 object to be used as the ephemeris."
        }
      ]
    },
    "tleData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TLEDataList"
        },
        {
          "description": "The data for a TLE ephemeris, supplied directly in the request rather than through an S3 object."
        }
      ]
    }
  }
}