McAfee (Trellix) · Schema

FilterList

AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence

Properties

Name Type Description
id string List identifier
name string List name
type string Type of entries in the list
entryCount integer Number of entries in the list
View JSON Schema on GitHub

JSON Schema

mcafee-filterlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FilterList",
  "title": "FilterList",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "List identifier"
    },
    "name": {
      "type": "string",
      "description": "List name"
    },
    "type": {
      "type": "string",
      "enum": [
        "url",
        "ip",
        "mediaType",
        "string",
        "category"
      ],
      "description": "Type of entries in the list"
    },
    "entryCount": {
      "type": "integer",
      "description": "Number of entries in the list"
    }
  }
}