Tanium · Schema

Tanium Package

Represents a deployment package in the Tanium platform. Packages contain scripts and files that are deployed to endpoints through actions to perform remediation, configuration changes, or software installation.

ComplianceEndpoint ManagementPatch ManagementSecurityThreat DetectionUnified Endpoint Management

Properties

Name Type Description
id integer Unique numeric identifier for the package
name string Package name
displayName string Human-friendly display name
command string Command line to execute on the endpoint
commandTimeout integer Timeout in seconds for command execution
expireSeconds integer Seconds until the package action expires
contentSet object Content set the package belongs to
files array Files included in the package for deployment
parameters array Configurable parameters for the package
modTime string Last modification timestamp
creationTime string Creation timestamp
View JSON Schema on GitHub

JSON Schema

tanium-package-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/tanium/blob/main/json-schema/tanium-package-schema.json",
  "title": "Tanium Package",
  "description": "Represents a deployment package in the Tanium platform. Packages contain scripts and files that are deployed to endpoints through actions to perform remediation, configuration changes, or software installation.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique numeric identifier for the package"
    },
    "name": {
      "type": "string",
      "description": "Package name"
    },
    "displayName": {
      "type": "string",
      "description": "Human-friendly display name"
    },
    "command": {
      "type": "string",
      "description": "Command line to execute on the endpoint"
    },
    "commandTimeout": {
      "type": "integer",
      "description": "Timeout in seconds for command execution"
    },
    "expireSeconds": {
      "type": "integer",
      "description": "Seconds until the package action expires"
    },
    "contentSet": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer",
          "description": "Content set identifier"
        },
        "name": {
          "type": "string",
          "description": "Content set name"
        }
      },
      "description": "Content set the package belongs to"
    },
    "files": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "File identifier"
          },
          "name": {
            "type": "string",
            "description": "File name"
          },
          "hash": {
            "type": "string",
            "description": "File hash for integrity verification"
          },
          "size": {
            "type": "integer",
            "description": "File size in bytes"
          }
        }
      },
      "description": "Files included in the package for deployment"
    },
    "parameters": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "key": {
            "type": "string",
            "description": "Parameter key name"
          },
          "defaultValue": {
            "type": "string",
            "description": "Default parameter value"
          },
          "label": {
            "type": "string",
            "description": "Human-readable parameter label"
          }
        }
      },
      "description": "Configurable parameters for the package"
    },
    "modTime": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    },
    "creationTime": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    }
  },
  "required": ["id", "name"]
}