Published when a Central agent changes its state in the status resource.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/apicentral.agent.start", "title": "apicentral.agent.start", "type": "object", "description": "Published when a Central agent changes its state in the status resource.", "x-context": "api_central", "allOf": [ { "$ref": "#/components/schemas/EventDataCentral" } ], "properties": { "agent_type": { "type": "string", "enum": [ "DiscoveryAgent", "TraceabilityAgent" ], "example": "DiscoveryAgent" }, "agent_version": { "type": "string", "example": "example_value" }, "dataplane_type": { "type": "string", "description": "Gateway the agent links to.", "example": "example_value" }, "envId": { "$ref": "#/components/schemas/Environment/properties/guid" }, "group": { "type": "string", "enum": [ "management" ], "example": "management" } } }