Nuix · Schema

ComputerJobs

Schema for ComputerJobs in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
computerName string name of the computer where the job is running
computerId string UUID of the computer
jobs array List of tasks being run
View JSON Schema on GitHub

JSON Schema

nuix-ecc-computerjobs.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-ecc-computerjobs.json",
  "title": "ComputerJobs",
  "description": "Schema for ComputerJobs in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "computerName": {
      "type": "string",
      "description": "name of the computer where the job is running"
    },
    "computerId": {
      "type": "string",
      "description": "UUID of the computer"
    },
    "jobs": {
      "type": "array",
      "description": "List of tasks being run",
      "items": {
        "$ref": "#/components/schemas/JobCreated"
      }
    }
  }
}