Nuix · Schema

BulkItemSetItemsRequest

Schema for BulkItemSetItemsRequest in Nuix REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
addItems array The items to add to the itemset.
removeItems array The items to remove from the itemset.
View JSON Schema on GitHub

JSON Schema

nuix-rest-bulkitemsetitemsrequest.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-bulkitemsetitemsrequest.json",
  "title": "BulkItemSetItemsRequest",
  "description": "Schema for BulkItemSetItemsRequest in Nuix REST API",
  "type": "object",
  "properties": {
    "addItems": {
      "type": "array",
      "description": "The items to add to the itemset.",
      "items": {
        "$ref": "#/components/schemas/ItemSetAddItemsRequest"
      }
    },
    "removeItems": {
      "type": "array",
      "description": "The items to remove from the itemset.",
      "items": {
        "$ref": "#/components/schemas/ItemSetRemoveItemsRequest"
      }
    }
  }
}