RelativityOne · Schema

Task

eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation

Properties

Name Type Description
artifactId integer The unique artifact ID of the task.
name string Name of the task.
status string Current status of the task.
projectId integer Artifact ID of the associated legal hold project.
dueDate string Due date of the task.
View JSON Schema on GitHub

JSON Schema

relativityone-task-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Task",
  "title": "Task",
  "type": "object",
  "properties": {
    "artifactId": {
      "type": "integer",
      "description": "The unique artifact ID of the task."
    },
    "name": {
      "type": "string",
      "description": "Name of the task."
    },
    "status": {
      "type": "string",
      "enum": [
        "Open",
        "InProgress",
        "Completed",
        "Cancelled"
      ],
      "description": "Current status of the task."
    },
    "projectId": {
      "type": "integer",
      "description": "Artifact ID of the associated legal hold project."
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "description": "Due date of the task."
    }
  }
}