Amazon Ground Station · Schema
GetSatelliteResponse
Data ProcessingIoTSatellite CommunicationsSpace Technology
Properties
| Name | Type | Description |
|---|---|---|
| currentEphemeris | object | |
| groundStations | object | |
| noradSatelliteID | object | |
| satelliteArn | object | |
| satelliteId | 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-get-satellite-response-schema.json",
"title": "GetSatelliteResponse",
"description": "<p/>",
"type": "object",
"properties": {
"currentEphemeris": {
"allOf": [
{
"$ref": "#/components/schemas/EphemerisMetaData"
},
{
"description": "The current ephemeris being used to compute the trajectory of the satellite."
}
]
},
"groundStations": {
"allOf": [
{
"$ref": "#/components/schemas/GroundStationIdList"
},
{
"description": "A list of ground stations to which the satellite is on-boarded."
}
]
},
"noradSatelliteID": {
"allOf": [
{
"$ref": "#/components/schemas/noradSatelliteID"
},
{
"description": "NORAD satellite ID number."
}
]
},
"satelliteArn": {
"allOf": [
{
"$ref": "#/components/schemas/satelliteArn"
},
{
"description": "ARN of a satellite."
}
]
},
"satelliteId": {
"allOf": [
{
"$ref": "#/components/schemas/Uuid"
},
{
"description": "UUID of a satellite."
}
]
}
}
}