Amazon Ground Station · JSON Structure

Ground Station Component Status Data Structure

Data on the status of agent components.

Type: object Properties: 7 Required: 4
Data ProcessingIoTSatellite CommunicationsSpace Technology

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

Properties

bytesReceived bytesSent capabilityArn componentType dataflowId packetsDropped status

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-component-status-data-structure.json",
  "name": "ComponentStatusData",
  "description": "Data on the status of agent components.",
  "type": "object",
  "properties": {
    "bytesReceived": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "Bytes received by the component."
        }
      ]
    },
    "bytesSent": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "Bytes sent by the component."
        }
      ]
    },
    "capabilityArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CapabilityArn"
        },
        {
          "description": "Capability ARN of the component."
        }
      ]
    },
    "componentType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentTypeString"
        },
        {
          "description": "The Component type."
        }
      ]
    },
    "dataflowId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Uuid"
        },
        {
          "description": "Dataflow UUID associated with the component."
        }
      ]
    },
    "packetsDropped": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "Packets dropped by component."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AgentStatus"
        },
        {
          "description": "Component status."
        }
      ]
    }
  },
  "required": [
    "capabilityArn",
    "componentType",
    "dataflowId",
    "status"
  ]
}