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

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

# TransferOfWholeAttributesV3

## 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:
    TransferOfWholeAttributesV3:
      allOf:
        - type: object
          properties:
            applicationType:
              type: string
          discriminator:
            propertyName: applicationType
            mapping:
              MORTGAGE_DEED: "#/components/schemas/MortgageDeedAttributesV3"
              TRANSFER_OF_WHOLE: "#/components/schemas/TransferOfWholeAttributesV3"
              CANCEL_A_RESTRICTION: "#/components/schemas/CancelARestrictionAttributesV3"
              DISCHARGE: "#/components/schemas/DischargeAttributesV3"
        - type: object
      type: object
      properties:
        transactionValue:
          type: number
          example: 100
        landRegistryFee:
          type: number
          example: 100
          readOnly: true
        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
```
