Nuix · Schema

JobCreated

Schema for JobCreated in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
id integer ID of task
taskName string Name of task, one of `Collect`, `Relocate` `Deploy` or `Launch`.
taskNum integer Task number, defines sequence in a multi-job collection
totalTasks integer Total number of tasks in the collection
View JSON Schema on GitHub

JSON Schema

nuix-ecc-jobcreated.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-jobcreated.json",
  "title": "JobCreated",
  "description": "Schema for JobCreated in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "ID of task"
    },
    "taskName": {
      "type": "string",
      "description": "Name of task, one of `Collect`, `Relocate` `Deploy` or `Launch`."
    },
    "taskNum": {
      "type": "integer",
      "description": "Task number, defines sequence in a multi-job collection"
    },
    "totalTasks": {
      "type": "integer",
      "description": "Total number of tasks in the collection"
    }
  }
}