{ "$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" } } }