TrackingConfig

Object that determines whether tracking should be used during a contact executed with this Config in the mission profile.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
autotrack object
View JSON Schema on GitHub

JSON Schema

ground-station-tracking-config-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-tracking-config-schema.json",
  "title": "TrackingConfig",
  "description": "Object that determines whether tracking should be used during a contact executed with this <code>Config</code> in the mission profile.",
  "type": "object",
  "properties": {
    "autotrack": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Criticality"
        },
        {
          "description": "Current setting for autotrack."
        }
      ]
    }
  },
  "required": [
    "autotrack"
  ]
}