Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| label | string | |
| agent_type | string | |
| management_ip | string | |
| platform | string | |
| state | string | |
| operation_mode | string | |
| running | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SystemAgent",
"title": "SystemAgent",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"label": {
"type": "string"
},
"agent_type": {
"type": "string",
"enum": [
"onbox",
"offbox"
]
},
"management_ip": {
"type": "string"
},
"platform": {
"type": "string"
},
"state": {
"type": "string",
"enum": [
"active",
"inactive",
"error"
]
},
"operation_mode": {
"type": "string"
},
"running": {
"type": "boolean"
}
}
}