RegisterAgentRequest

RegisterAgentRequest schema from Amazon Ground Station API

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
agentDetails object
discoveryData object
View JSON Schema on GitHub

JSON Schema

ground-station-register-agent-request-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-register-agent-request-schema.json",
  "title": "RegisterAgentRequest",
  "description": "RegisterAgentRequest schema from Amazon Ground Station API",
  "type": "object",
  "properties": {
    "agentDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AgentDetails"
        },
        {
          "description": "Detailed information about the agent being registered."
        }
      ]
    },
    "discoveryData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DiscoveryData"
        },
        {
          "description": "Data for associating an agent with the capabilities it is managing."
        }
      ]
    }
  },
  "required": [
    "agentDetails",
    "discoveryData"
  ]
}