{ "$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-list-ephemerides-request-schema.json", "title": "ListEphemeridesRequest", "description": "ListEphemeridesRequest schema from Amazon Ground Station API", "type": "object", "properties": { "endTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The end time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime." } ] }, "satelliteId": { "allOf": [ { "$ref": "#/components/schemas/Uuid" }, { "description": "The AWS Ground Station satellite ID to list ephemeris for." } ] }, "startTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The start time to list in UTC. The operation will return an ephemeris if its expiration time is within the time range defined by the startTime and endTime." } ] }, "statusList": { "allOf": [ { "$ref": "#/components/schemas/EphemerisStatusList" }, { "description": "The list of ephemeris status to return." } ] } }, "required": [ "endTime", "satelliteId", "startTime" ] }