RelativityOne · Schema

CreateEntityRequest

eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation

Properties

Name Type Description
firstName string First name of the entity.
lastName string Last name of the entity.
emailAddress string Email address of the entity.
employeeId string Optional employee identifier.
View JSON Schema on GitHub

JSON Schema

relativityone-createentityrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEntityRequest",
  "title": "CreateEntityRequest",
  "type": "object",
  "required": [
    "firstName",
    "lastName",
    "emailAddress"
  ],
  "properties": {
    "firstName": {
      "type": "string",
      "description": "First name of the entity."
    },
    "lastName": {
      "type": "string",
      "description": "Last name of the entity."
    },
    "emailAddress": {
      "type": "string",
      "format": "email",
      "description": "Email address of the entity."
    },
    "employeeId": {
      "type": "string",
      "description": "Optional employee identifier."
    }
  }
}