Nuix · Schema

QueueStateNuixTaskRequest

Schema for QueueStateNuixTaskRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
capacity integer The capacity of the queue.
head integer The head of the queue.
tail integer The tail of the queue.
size integer The size of the queue.
tasks array The filtered array of tasks in the queue.
View JSON Schema on GitHub

JSON Schema

nuix-rest-queuestatenuixtaskrequest.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-queuestatenuixtaskrequest.json",
  "title": "QueueStateNuixTaskRequest",
  "description": "Schema for QueueStateNuixTaskRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "capacity": {
      "type": "integer",
      "description": "The capacity of the queue.",
      "format": "int64"
    },
    "head": {
      "type": "integer",
      "description": "The head of the queue.",
      "format": "int64"
    },
    "tail": {
      "type": "integer",
      "description": "The tail of the queue.",
      "format": "int64"
    },
    "size": {
      "type": "integer",
      "description": "The size of the queue."
    },
    "tasks": {
      "type": "array",
      "description": "The filtered array of tasks in the queue.",
      "items": {
        "$ref": "#/components/schemas/NuixTaskRequest"
      }
    }
  }
}