Trellix · Schema

ActionHistoryEntry

Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR

Properties

Name Type Description
id string Unique identifier for the action
type string Type of action executed
status string Final status of the action
targetHost string Hostname targeted by the action
initiatedBy string User or system that initiated the action
createdAt string Timestamp when the action was initiated
completedAt string Timestamp when the action completed
View JSON Schema on GitHub

JSON Schema

trellix-actionhistoryentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionHistoryEntry",
  "title": "ActionHistoryEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the action"
    },
    "type": {
      "type": "string",
      "description": "Type of action executed"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "executing",
        "completed",
        "failed"
      ],
      "description": "Final status of the action"
    },
    "targetHost": {
      "type": "string",
      "description": "Hostname targeted by the action"
    },
    "initiatedBy": {
      "type": "string",
      "description": "User or system that initiated the action"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the action was initiated"
    },
    "completedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the action completed"
    }
  }
}