RelativityOne · Schema

AddCustodianRequest

eDiscoveryLegalLegal HoldDocument-ManagementComplianceLitigation

Properties

Name Type Description
emailAddress string Email address of the custodian to add.
employeeId string Optional employee identifier.
View JSON Schema on GitHub

JSON Schema

relativityone-addcustodianrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddCustodianRequest",
  "title": "AddCustodianRequest",
  "type": "object",
  "required": [
    "emailAddress"
  ],
  "properties": {
    "emailAddress": {
      "type": "string",
      "format": "email",
      "description": "Email address of the custodian to add."
    },
    "employeeId": {
      "type": "string",
      "description": "Optional employee identifier."
    }
  }
}