{
"$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-tle-ephemeris-schema.json",
"title": "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."
}
]
}
}
}