Object stored in S3 containing ephemeris data.
{ "$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-s3-object-schema.json", "title": "S3Object", "description": "Object stored in S3 containing ephemeris data.", "type": "object", "properties": { "bucket": { "allOf": [ { "$ref": "#/components/schemas/S3BucketName" }, { "description": "An Amazon S3 Bucket name." } ] }, "key": { "allOf": [ { "$ref": "#/components/schemas/S3ObjectKey" }, { "description": "An Amazon S3 key for the ephemeris." } ] }, "version": { "allOf": [ { "$ref": "#/components/schemas/S3VersionId" }, { "description": "For versioned S3 objects, the version to use for the ephemeris." } ] } } }