ConfigDetails

Details for certain Config object types in a contact.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
antennaDemodDecodeDetails object
endpointDetails object
s3RecordingDetails object
View JSON Schema on GitHub

JSON Schema

ground-station-config-details-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-config-details-schema.json",
  "title": "ConfigDetails",
  "description": "Details for certain <code>Config</code> object types in a contact.",
  "type": "object",
  "properties": {
    "antennaDemodDecodeDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AntennaDemodDecodeDetails"
        },
        {
          "description": "Details for antenna demod decode <code>Config</code> in a contact."
        }
      ]
    },
    "endpointDetails": {
      "$ref": "#/components/schemas/EndpointDetails"
    },
    "s3RecordingDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3RecordingDetails"
        },
        {
          "description": "Details for an S3 recording <code>Config</code> in a contact."
        }
      ]
    }
  }
}