Amazon Ground Station · Schema
ListEphemeridesRequest
ListEphemeridesRequest schema from Amazon Ground Station API
Data ProcessingIoTSatellite CommunicationsSpace Technology
Properties
| Name | Type | Description |
|---|---|---|
| endTime | object | |
| satelliteId | object | |
| startTime | object | |
| statusList | object |
JSON Schema
{
"$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 <code>startTime</code> and <code>endTime</code>."
}
]
},
"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 <code>startTime</code> and <code>endTime</code>."
}
]
},
"statusList": {
"allOf": [
{
"$ref": "#/components/schemas/EphemerisStatusList"
},
{
"description": "The list of ephemeris status to return."
}
]
}
},
"required": [
"endTime",
"satelliteId",
"startTime"
]
}