{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AgentStatusSummary",
"title": "AgentStatusSummary",
"type": "object",
"description": "Contains information about an agent status.",
"properties": {
"Id": {
"type": "string",
"description": "The identifier for an agent status.",
"example": "a1b2c3d4-5678-90ab-cdef-44444EXAMPLE"
},
"Arn": {
"type": "string",
"description": "The Amazon Resource Name (ARN) for the agent status."
},
"Name": {
"type": "string",
"description": "The name of the agent status.",
"example": "Available"
},
"Type": {
"type": "string",
"description": "The type of the agent status.",
"enum": [
"ROUTABLE",
"CUSTOM",
"OFFLINE"
],
"example": "ROUTABLE"
}
}
}