Nuix · Schema

createCustodianRequest

Schema for createCustodianRequest in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
custodianName string name of the custodian to be created
description string optional, description of the custodian to be created
groups array optional, array of ids(s) of group(s) this custodian will be added to
View JSON Schema on GitHub

JSON Schema

nuix-ecc-createcustodianrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/nuix/refs/heads/main/json-schema/nuix-ecc-createcustodianrequest.json",
  "title": "createCustodianRequest",
  "description": "Schema for createCustodianRequest in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "custodianName": {
      "type": "string",
      "description": "name of the custodian to be created"
    },
    "description": {
      "type": "string",
      "description": "optional, description of the custodian to be created"
    },
    "groups": {
      "type": "array",
      "description": "optional, array of ids(s) of group(s) this custodian will be added to",
      "items": {
        "type": "object",
        "properties": {
          "groupId": {
            "type": "string",
            "description": "id of the group to add this custodian to"
          }
        }
      }
    }
  }
}