Amazon Ground Station · JSON Structure

Ground Station Tle Data Structure

Two-line element set (TLE) data.

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

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

Properties

tleLine1 tleLine2 validTimeRange

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-data-structure.json",
  "name": "TLEData",
  "description": "Two-line element set (TLE) data.",
  "type": "object",
  "properties": {
    "tleLine1": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TleLineOne"
        },
        {
          "description": "First line of two-line element set (TLE) data."
        }
      ]
    },
    "tleLine2": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TleLineTwo"
        },
        {
          "description": "Second line of two-line element set (TLE) data."
        }
      ]
    },
    "validTimeRange": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeRange"
        },
        {
          "description": "The valid time range for the TLE. Gaps or overlap are not permitted."
        }
      ]
    }
  },
  "required": [
    "tleLine1",
    "tleLine2",
    "validTimeRange"
  ]
}