EphemerisDescription

Description of ephemeris.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
ephemerisData object
sourceS3Object object
View JSON Schema on GitHub

JSON Schema

ground-station-ephemeris-description-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}