Nuix · Schema

listCustodianResponse

Schema for listCustodianResponse in Nuix ECC REST API

ForensicseDiscoveryInvestigationsComplianceData ProcessingLegal TechnologyIntelligence

Properties

Name Type Description
custodians array List of Custodians.
View JSON Schema on GitHub

JSON Schema

nuix-ecc-listcustodianresponse.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-listcustodianresponse.json",
  "title": "listCustodianResponse",
  "description": "Schema for listCustodianResponse in Nuix ECC REST API",
  "type": "object",
  "properties": {
    "custodians": {
      "type": "array",
      "description": "List of Custodians.",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "id of the custodian"
          },
          "name": {
            "type": "string",
            "description": "name of the custodian"
          },
          "groups": {
            "type": "array",
            "description": "array of groups that this custodian belongs to",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer",
                  "description": "id of the group"
                },
                "name": {
                  "type": "string",
                  "description": "name of the group"
                }
              }
            }
          }
        }
      }
    }
  }
}