Amazon Ground Station · JSON Structure

Ground Station Update Ephemeris Request Structure

UpdateEphemerisRequest schema from Amazon Ground Station API

Type: object Properties: 3 Required: 1
Data ProcessingIoTSatellite CommunicationsSpace Technology

UpdateEphemerisRequest is a JSON Structure definition published by Amazon Ground Station, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

enabled name priority

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-update-ephemeris-request-structure.json",
  "name": "UpdateEphemerisRequest",
  "description": "UpdateEphemerisRequest schema from Amazon Ground Station API",
  "type": "object",
  "properties": {
    "enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Whether the ephemeris is enabled or not. Changing this value will not require the ephemeris to be re-validated."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SafeName"
        },
        {
          "description": "A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris."
        }
      ]
    },
    "priority": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EphemerisPriority"
        },
        {
          "description": "<p>Customer-provided priority score to establish the order in which overlapping ephemerides should be used.</p> <p>The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.</p> <p>Priority must be 1 or greater</p>"
        }
      ]
    }
  },
  "required": [
    "enabled"
  ]
}