AggregateStatus

Aggregate status of Agent components.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
signatureMap object
status object
View JSON Schema on GitHub

JSON Schema

ground-station-aggregate-status-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-aggregate-status-schema.json",
  "title": "AggregateStatus",
  "description": "Aggregate status of Agent components.",
  "type": "object",
  "properties": {
    "signatureMap": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SignatureMap"
        },
        {
          "description": "Sparse map of failure signatures."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AgentStatus"
        },
        {
          "description": "Aggregate status."
        }
      ]
    }
  },
  "required": [
    "status"
  ]
}