S3Object

Object stored in S3 containing ephemeris data.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
bucket object
key object
version object
View JSON Schema on GitHub

JSON Schema

ground-station-s3-object-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-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."
        }
      ]
    }
  }
}