{ "$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" } } } } } } } } }