RelativityOne · Schema
ActiveCustodianSummary
eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation
Properties
| Name | Type | Description |
|---|---|---|
| projectId | integer | The artifact ID of the project. |
| projectName | string | Name of the legal hold project. |
| firstName | string | First name of the custodian. |
| lastName | string | Last name of the custodian. |
| emailAddress | string | Email address of the custodian. |
| employeeId | string | Optional employee identifier. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ActiveCustodianSummary",
"title": "ActiveCustodianSummary",
"type": "object",
"properties": {
"projectId": {
"type": "integer",
"description": "The artifact ID of the project."
},
"projectName": {
"type": "string",
"description": "Name of the legal hold project."
},
"firstName": {
"type": "string",
"description": "First name of the custodian."
},
"lastName": {
"type": "string",
"description": "Last name of the custodian."
},
"emailAddress": {
"type": "string",
"format": "email",
"description": "Email address of the custodian."
},
"employeeId": {
"type": "string",
"description": "Optional employee identifier."
}
}
}