Tanium · Schema

Tanium Endpoint

Represents a managed endpoint (computer, server, or device) in the Tanium platform. Endpoints are the primary entities that Tanium discovers, monitors, and manages across the enterprise.

ComplianceEndpoint ManagementPatch ManagementSecurityThreat DetectionUnified Endpoint Management

Properties

Name Type Description
id integer Unique numeric identifier for the endpoint in Tanium
computerName string Hostname of the endpoint
computerID string Tanium client identifier assigned to the endpoint
ipAddress string Primary IP address of the endpoint
ipAddresses array All IP addresses associated with the endpoint
macAddress string Primary MAC address of the endpoint
operatingSystem string Full operating system name and version
osPlatform string Operating system platform category
manufacturer string Hardware manufacturer
model string Hardware model
serialNumber string Hardware serial number
domainName string Active Directory or DNS domain name
lastRegistration string Timestamp of the last client registration with the Tanium server
taniumClientVersion string Version of the Tanium client installed on the endpoint
isVirtual boolean Whether the endpoint is a virtual machine
chassisType string Physical chassis type (Desktop, Laptop, Server, Virtual)
totalMemory string Total physical memory
diskSpace string Total disk space
freeDiskSpace string Available free disk space
installedApplications array List of installed software applications
tags array Tags assigned to the endpoint for organization
View JSON Schema on GitHub

JSON Schema

tanium-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/tanium/blob/main/json-schema/tanium-endpoint-schema.json",
  "title": "Tanium Endpoint",
  "description": "Represents a managed endpoint (computer, server, or device) in the Tanium platform. Endpoints are the primary entities that Tanium discovers, monitors, and manages across the enterprise.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique numeric identifier for the endpoint in Tanium"
    },
    "computerName": {
      "type": "string",
      "description": "Hostname of the endpoint"
    },
    "computerID": {
      "type": "string",
      "description": "Tanium client identifier assigned to the endpoint"
    },
    "ipAddress": {
      "type": "string",
      "description": "Primary IP address of the endpoint"
    },
    "ipAddresses": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "All IP addresses associated with the endpoint"
    },
    "macAddress": {
      "type": "string",
      "description": "Primary MAC address of the endpoint"
    },
    "operatingSystem": {
      "type": "string",
      "description": "Full operating system name and version"
    },
    "osPlatform": {
      "type": "string",
      "description": "Operating system platform category",
      "enum": ["Windows", "Linux", "Mac", "Solaris", "AIX"]
    },
    "manufacturer": {
      "type": "string",
      "description": "Hardware manufacturer"
    },
    "model": {
      "type": "string",
      "description": "Hardware model"
    },
    "serialNumber": {
      "type": "string",
      "description": "Hardware serial number"
    },
    "domainName": {
      "type": "string",
      "description": "Active Directory or DNS domain name"
    },
    "lastRegistration": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the last client registration with the Tanium server"
    },
    "taniumClientVersion": {
      "type": "string",
      "description": "Version of the Tanium client installed on the endpoint"
    },
    "isVirtual": {
      "type": "boolean",
      "description": "Whether the endpoint is a virtual machine"
    },
    "chassisType": {
      "type": "string",
      "description": "Physical chassis type (Desktop, Laptop, Server, Virtual)"
    },
    "totalMemory": {
      "type": "string",
      "description": "Total physical memory"
    },
    "diskSpace": {
      "type": "string",
      "description": "Total disk space"
    },
    "freeDiskSpace": {
      "type": "string",
      "description": "Available free disk space"
    },
    "installedApplications": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Application name"
          },
          "version": {
            "type": "string",
            "description": "Application version"
          },
          "vendor": {
            "type": "string",
            "description": "Application vendor"
          }
        }
      },
      "description": "List of installed software applications"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags assigned to the endpoint for organization"
    }
  },
  "required": ["computerName"]
}