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

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

# TaskMappedRequestDocument

Metadata for a document mapped to a specific task in the system.

## 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:
    TaskMappedRequestDocument:
      type: object
      description: Metadata for a document mapped to a specific task in the system.
      properties:
        documentId:
          type: string
          description: A unique identifier for the document.
          example: abc12345
        documentName:
          type: string
          description: The name of the document.
          example: Report_Q1_2024.pdf
        documentSource:
          type: string
          description: The origin or source of the document, such as a system name or
            module.
          example: Zinnia.OnBase
        fileType:
          type: string
          description: Type of document, like pdf or an image.
          example: pdf
        displayName:
          type: string
          description: Display name of the document.
          example: Replacement of Life Insurance or Annuities
        operationType:
          type: string
          description: Specifies the type of operation to be performed on the document.
          enum:
            - REMOVE
            - ADD
          example: REMOVE
        createdDate:
          type: string
          format: date-time
          description: Timestamp when the document was created.
```
