---
title: "DocumentItemV3"
url: "https://developer.pexa.co.uk/apis/lodgement-v3-v3/versions/36a70223-1b6a-4258-8121-37db0f9b4edb/schemas/DocumentItemV3"
---

> Full API specification: https://developer.pexa.co.uk/apis/lodgement-v3-v3/versions/36a70223-1b6a-4258-8121-37db0f9b4edb.md

# DocumentItemV3

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Lodgement
  version: v3.0.0
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    DocumentItemV3:
      type: object
      properties:
        documentId:
          type: string
          format: uuid
          readOnly: true
        documentType:
          type: string
          example: MORTGAGE_DEED
        documentCategory:
          type: string
          example: APPLICATION
        certificationType:
          type: string
          pattern: (CERTIFIED|ORIGINAL|SCANNED)
          example: CERTIFIED
          description: |
            Allowed values: [`CERTIFIED`, `ORIGINAL`, `SCANNED`]
        file:
          type: object
          properties:
            fileId:
              type: string
              format: uuid
              readOnly: true
            fileName:
              type: string
              example: sample_document.pdf
            fileUploadStatus:
              type: string
              pattern: (SUCCESS|PENDING|VIRUS_FOUND|FAILED)
              example: SUCCESS
              description: |
                Allowed values: [`SUCCESS`, `PENDING`, `VIRUS_FOUND`, `FAILED`]
            auditAttributes:
              type: object
              properties:
                createdAt:
                  type: string
                  format: date-time
                createdBy:
                  type: string
                lastModifiedAt:
                  type: string
                  format: date-time
                lastModifiedBy:
                  type: string
```
