---
title: "TransferOfWholeAttributesV2"
url: "https://developer.pexa.co.uk/apis/lodgement-v2-v2/versions/533c1263-195b-449f-a7da-afa5f3211cc2/schemas/TransferOfWholeAttributesV2"
---

> Full API specification: https://developer.pexa.co.uk/apis/lodgement-v2-v2/versions/533c1263-195b-449f-a7da-afa5f3211cc2.md

# TransferOfWholeAttributesV2

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Lodgement
  version: v2
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    TransferOfWholeAttributesV2:
      allOf:
        - type: object
          properties:
            applicationType:
              type: string
          discriminator:
            propertyName: applicationType
            mapping:
              MORTGAGE_DEED: MortgageDeedAttributesV2
              CHANGE_OF_NAME: ChangeOfNameDocumentAttributesV2
              TRANSFER_OF_WHOLE: TransferOfWholeAttributesV2
        - type: object
      type: object
      properties:
        transactionValue:
          type: number
          example: 100
        landRegistryFee:
          type: number
          example: 100
          readOnly: true
        certificationType:
          type: string
          pattern: (CERTIFIED|ORIGINAL|SCANNED)
          example: CERTIFIED
          description: |
            Allowed values: [`CERTIFIED`, `ORIGINAL`, `SCANNED`]
        considerationType:
          type: string
          pattern: ^(MONETARY_CONSIDERATION|NO_MONETARY_CONSIDERATION|TRANSFER_OF_MATRIMONIAL_OR_CIVIL_PARTNERSHIP_HOME)$
          description: >
            Allowed values: [`MONETARY_CONSIDERATION`,
            `NO_MONETARY_CONSIDERATION`,
            `TRANSFER_OF_MATRIMONIAL_OR_CIVIL_PARTNERSHIP_HOME`]
          example: MONETARY_CONSIDERATION
```
