RelativityOne · Schema

CreateLegalHoldProjectRequest

eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation

Properties

Name Type Description
name string The name of the legal hold project.
ownerEmailAddress string Email address of the project owner.
description string Optional description of the project.
status string
View JSON Schema on GitHub

JSON Schema

relativityone-createlegalholdprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateLegalHoldProjectRequest",
  "title": "CreateLegalHoldProjectRequest",
  "type": "object",
  "required": [
    "name",
    "ownerEmailAddress"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the legal hold project."
    },
    "ownerEmailAddress": {
      "type": "string",
      "format": "email",
      "description": "Email address of the project owner."
    },
    "description": {
      "type": "string",
      "description": "Optional description of the project."
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Draft"
      ],
      "default": "Active"
    }
  }
}