Nuix · Schema

jobListDetail

Schema for jobListDetail in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
id integer id of the job
taskName string Name of task, one of `Collect`, `Relocate` `Deploy` or `Launch`.
label string Optional, user-defined label for this job. Can be used subsequently as search criteria for jobs.
caseName string name of the Case this job is running under
status string current status of the job (see values below)
warnings integer current number of warnings
errors integer current number of errors
bytesCollected integer bytes currently collected
bytesToCollect integer total bytes to collect in the job
filesCollected integer files currently collected
filesToCollect integer total files to collect in the job
collectionId integer id of the collection this job is running in
collectionName string name of the collection this job is running in
custodianName string name of the custodian associated with this collection, if any
custodianId integer id of the custodian associated with this collection, if any
targetName string name of the target this job is collecting from
targetId integer id of the target this job is collecting from
destination string destination path for this job
startTime string date/time of the start of this job
endTime string date/time of the end of this job
computerId integer id of the computer on which this job is running
computerName string name of the computer on which this job is running
View JSON Schema on GitHub

JSON Schema

nuix-ecc-joblistdetail.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-joblistdetail.json",
  "title": "jobListDetail",
  "description": "Schema for jobListDetail in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "id of the job"
    },
    "taskName": {
      "type": "string",
      "description": "Name of task, one of `Collect`, `Relocate` `Deploy` or `Launch`."
    },
    "label": {
      "type": "string",
      "description": "Optional, user-defined label for this job.\n\nCan be used subsequently as search criteria for jobs."
    },
    "caseName": {
      "type": "string",
      "description": "name of the Case this job is running under"
    },
    "status": {
      "type": "string",
      "description": "current status of the job (see values below)"
    },
    "warnings": {
      "type": "integer",
      "description": "current number of warnings"
    },
    "errors": {
      "type": "integer",
      "description": "current number of errors"
    },
    "bytesCollected": {
      "type": "integer",
      "description": "bytes currently collected"
    },
    "bytesToCollect": {
      "type": "integer",
      "description": "total bytes to collect in the job"
    },
    "filesCollected": {
      "type": "integer",
      "description": "files currently collected"
    },
    "filesToCollect": {
      "type": "integer",
      "description": "total files to collect in the job"
    },
    "collectionId": {
      "type": "integer",
      "description": "id of the collection this job is running in"
    },
    "collectionName": {
      "type": "string",
      "description": "name of the collection this job is running in"
    },
    "custodianName": {
      "type": "string",
      "description": "name of the custodian associated with this collection, if any"
    },
    "custodianId": {
      "type": "integer",
      "description": "id of the custodian associated with this collection, if any"
    },
    "targetName": {
      "type": "string",
      "description": "name of the target this job is collecting from"
    },
    "targetId": {
      "type": "integer",
      "description": "id of the target this job is collecting from"
    },
    "destination": {
      "type": "string",
      "description": "destination path for this job"
    },
    "startTime": {
      "type": "string",
      "description": "date/time of the start of this job"
    },
    "endTime": {
      "type": "string",
      "description": "date/time of the end of this job"
    },
    "computerId": {
      "type": "integer",
      "description": "id of the computer on which this job is running"
    },
    "computerName": {
      "type": "string",
      "description": "name of the computer on which this job is running"
    }
  }
}