Trellix · Schema

Group

Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR

Properties

Name Type Description
id string Unique identifier for the group
name string Display name of the group
parentId string Identifier of the parent group in the hierarchy
path string Full path of the group in the organizational hierarchy
deviceCount integer Number of devices assigned to this group
View JSON Schema on GitHub

JSON Schema

trellix-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the group"
    },
    "name": {
      "type": "string",
      "description": "Display name of the group"
    },
    "parentId": {
      "type": "string",
      "description": "Identifier of the parent group in the hierarchy"
    },
    "path": {
      "type": "string",
      "description": "Full path of the group in the organizational hierarchy"
    },
    "deviceCount": {
      "type": "integer",
      "description": "Number of devices assigned to this group"
    }
  }
}