Description of ephemeris.
{ "$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-ephemeris-description-schema.json", "title": "EphemerisDescription", "description": "Description of ephemeris.", "type": "object", "properties": { "ephemerisData": { "allOf": [ { "$ref": "#/components/schemas/UnboundedString" }, { "description": "Supplied ephemeris data." } ] }, "sourceS3Object": { "allOf": [ { "$ref": "#/components/schemas/S3Object" }, { "description": "Source S3 object used for the ephemeris." } ] } } }