McAfee (Trellix) · Schema

DataSource

AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence

Properties

Name Type Description
id integer Data source ID
name string Data source name
ipAddress string IP address of the data source
type string Data source type
enabled boolean Whether the data source is enabled
childType string Child data source type
zoneId integer Zone ID
View JSON Schema on GitHub

JSON Schema

mcafee-datasource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSource",
  "title": "DataSource",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Data source ID"
    },
    "name": {
      "type": "string",
      "description": "Data source name"
    },
    "ipAddress": {
      "type": "string",
      "description": "IP address of the data source"
    },
    "type": {
      "type": "string",
      "description": "Data source type"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the data source is enabled"
    },
    "childType": {
      "type": "string",
      "description": "Child data source type"
    },
    "zoneId": {
      "type": "integer",
      "description": "Zone ID"
    }
  }
}