McAfee (Trellix) · Schema

ApiCommand

AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence

Properties

Name Type Description
command string Command name
description string Command description
parameters array
View JSON Schema on GitHub

JSON Schema

mcafee-apicommand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiCommand",
  "title": "ApiCommand",
  "type": "object",
  "properties": {
    "command": {
      "type": "string",
      "description": "Command name"
    },
    "description": {
      "type": "string",
      "description": "Command description"
    },
    "parameters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "required": {
            "type": "boolean"
          },
          "description": {
            "type": "string"
          }
        }
      }
    }
  }
}