Trellix · Schema
AffectedHost
Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| hostName | string | Hostname of the affected system |
| agentGuid | string | GUID of the endpoint agent |
| ipAddress | string | IP address of the affected host |
| macAddresses | array | MAC addresses of network interfaces |
| detectionCount | integer | Number of detections on this host |
| severity | string | Highest severity detection on this host |
| firstDetected | string | Timestamp of the first detection on this host |
| lastDetected | string | Timestamp of the most recent detection |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AffectedHost",
"title": "AffectedHost",
"type": "object",
"properties": {
"hostName": {
"type": "string",
"description": "Hostname of the affected system"
},
"agentGuid": {
"type": "string",
"format": "uuid",
"description": "GUID of the endpoint agent"
},
"ipAddress": {
"type": "string",
"description": "IP address of the affected host"
},
"macAddresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "MAC addresses of network interfaces"
},
"detectionCount": {
"type": "integer",
"description": "Number of detections on this host"
},
"severity": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
],
"description": "Highest severity detection on this host"
},
"firstDetected": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the first detection on this host"
},
"lastDetected": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the most recent detection"
}
}
}