Nuix · Schema

ItemSetResponse

Schema for ItemSetResponse in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
guid string The item set guid
name string name
description string description
batches array A list of batches for the item set
View JSON Schema on GitHub

JSON Schema

nuix-rest-itemsetresponse.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-itemsetresponse.json",
  "title": "ItemSetResponse",
  "description": "Schema for ItemSetResponse in Nuix REST API",
  "type": "object",
  "properties": {
    "guid": {
      "type": "string",
      "description": "The item set guid"
    },
    "name": {
      "type": "string",
      "description": "name"
    },
    "description": {
      "type": "string",
      "description": "description"
    },
    "batches": {
      "type": "array",
      "description": "A list of batches for the item set",
      "items": {
        "$ref": "#/components/schemas/ItemSetBatchResponse"
      }
    }
  }
}