---
title: "LinkedTaskRecordModel"
url: "https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5/schemas/LinkedTaskRecordModel"
---

> Full API specification: https://developers.zinnia.com/apis/case-management-1-0-0/versions/0091226b-6452-4e75-93ce-4bbfe022aad5.md

# LinkedTaskRecordModel

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Case Management API
  version: 1.0.0
servers:
  - url: https://dev.api.zinnia.io/
    description: Dev Environment
  - url: https://qa.api.zinnia.io/
    description: QA Environment
  - url: https://uat.api.zinnia.io/
    description: UAT Environment
  - url: https://api.zinnia.io/
    description: PROD Environment
components:
  schemas:
    TaskLinkTaskDetailsModel:
      type: object
      properties:
        taskId:
          type: string
          example: TA000000000302
        taskStatus:
          type: string
          example: INPROGRESS
        taskType:
          type: string
          example: Suitability
        createdAt:
          type: string
          format: date-time
          example: 2026-01-09T02:07:40.455Z
        updatedAt:
          type: string
          format: date-time
          example: 2026-01-09T02:10:12.000Z
    LinkedTaskRecordModel:
      type: object
      properties:
        taskDetails:
          $ref: "#/components/schemas/TaskLinkTaskDetailsModel"
        associatedTaskDetails:
          $ref: "#/components/schemas/TaskLinkTaskDetailsModel"
        linkType:
          type: string
          enum:
            - RELATED
            - CHILD
          example: RELATED
        linkedTasks:
          type: array
          items:
            $ref: "#/components/schemas/LinkedTaskRecordModel"
          default: []
```
