Trellix · Schema

TagCreate

Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR

Properties

Name Type Description
name string Display name for the new tag
description string Description of the tag purpose
criteria string Optional criteria expression for automatic tag assignment to matching devices
View JSON Schema on GitHub

JSON Schema

trellix-tagcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagCreate",
  "title": "TagCreate",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the new tag"
    },
    "description": {
      "type": "string",
      "description": "Description of the tag purpose"
    },
    "criteria": {
      "type": "string",
      "description": "Optional criteria expression for automatic tag assignment to matching devices"
    }
  }
}