RelativityOne · Schema

CreateTaskRequest

eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation

Properties

Name Type Description
name string Name of the task.
projectId integer Artifact ID of the legal hold project.
dueDate string Optional due date for the task.
assignedTo string Email address of the user assigned to the task.
View JSON Schema on GitHub

JSON Schema

relativityone-createtaskrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateTaskRequest",
  "title": "CreateTaskRequest",
  "type": "object",
  "required": [
    "name",
    "projectId"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the task."
    },
    "projectId": {
      "type": "integer",
      "description": "Artifact ID of the legal hold project."
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "description": "Optional due date for the task."
    },
    "assignedTo": {
      "type": "string",
      "description": "Email address of the user assigned to the task."
    }
  }
}