Trellix · Schema
Reaction
Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the reaction |
| type | string | Type of response reaction executed |
| status | string | Current execution status of the reaction |
| targetHost | string | Host identifier targeted by the reaction |
| createdAt | string | Timestamp when the reaction was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Reaction",
"title": "Reaction",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the reaction"
},
"type": {
"type": "string",
"description": "Type of response reaction executed"
},
"status": {
"type": "string",
"enum": [
"pending",
"executing",
"completed",
"failed"
],
"description": "Current execution status of the reaction"
},
"targetHost": {
"type": "string",
"description": "Host identifier targeted by the reaction"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the reaction was created"
}
}
}