McAfee (Trellix) · Schema

Watchlist

AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence

Properties

Name Type Description
id integer Watchlist ID
name string Watchlist name
type string Watchlist value type (e.g., IPAddress, Hash, String)
valueCount integer Number of values in the watchlist
dynamic boolean Whether the watchlist is dynamically populated
View JSON Schema on GitHub

JSON Schema

mcafee-watchlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Watchlist",
  "title": "Watchlist",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Watchlist ID"
    },
    "name": {
      "type": "string",
      "description": "Watchlist name"
    },
    "type": {
      "type": "string",
      "description": "Watchlist value type (e.g., IPAddress, Hash, String)"
    },
    "valueCount": {
      "type": "integer",
      "description": "Number of values in the watchlist"
    },
    "dynamic": {
      "type": "boolean",
      "description": "Whether the watchlist is dynamically populated"
    }
  }
}