Nuix · Schema

CaseFunctionQueue

Schema for CaseFunctionQueue in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
caseId string Case identification token
queue array List of AsyncFunctionStatus objects for Async functions which are queued to execute.
View JSON Schema on GitHub

JSON Schema

nuix-rest-casefunctionqueue.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-casefunctionqueue.json",
  "title": "CaseFunctionQueue",
  "description": "Schema for CaseFunctionQueue in Nuix REST API",
  "type": "object",
  "properties": {
    "caseId": {
      "type": "string",
      "description": "Case identification token"
    },
    "queue": {
      "type": "array",
      "description": "List of AsyncFunctionStatus objects for Async functions which are queued to execute.",
      "items": {
        "$ref": "#/components/schemas/AsyncFunctionStatus"
      }
    }
  }
}