Nuix · Schema

TaskStatusRequest

Schema for TaskStatusRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
status string The desired status of the TaskRequest
View JSON Schema on GitHub

JSON Schema

nuix-rest-taskstatusrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-rest-taskstatusrequest.json",
  "title": "TaskStatusRequest",
  "description": "Schema for TaskStatusRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "status": {
      "description": "The desired status of the TaskRequest",
      "type": "string",
      "enum": [
        "IN_PROGRESS",
        "CANCELLED",
        "STOPPED",
        "PAUSED"
      ]
    }
  }
}