---
title: "ApprovedLineItem"
url: "https://developer.pexa.co.uk/apis/financials-v1-v1/versions/5cb0c2f5-c5c3-45e5-9a20-009908d7f57b/schemas/ApprovedLineItem"
---

> Full API specification: https://developer.pexa.co.uk/apis/financials-v1-v1/versions/5cb0c2f5-c5c3-45e5-9a20-009908d7f57b.md

# ApprovedLineItem

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Financial
  version: v1.1.0
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    ApprovedLineItem:
      type: object
      properties:
        lineItemId:
          type: string
          format: uuid
          description: Unique identifier for the line item
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
        amount:
          type: number
          description: Amount for the line item
          example: 100
        type:
          type: string
          description: |
            Type of line item <br> values: [`SOURCE`, `DESTINATION`]
          example: SOURCE
        authorised:
          type: boolean
          nullable: true
          description: Authorization status of the line item
          example: true
        reference:
          type: string
          description: Reference for the line item
          example: ref
        category:
          type: string
          description: Category of the line item
          example: Mortgage Advance
        attributes:
          type: object
          description: Additional line item attributes. Omitted when neither `subCategory`
            nor `notes` is set.
          properties:
            subCategory:
              type: string
              pattern: ^(LANDLORD_FEE|MANAGEMENT_COMPANY_FEE|INDEMNITY_INSURANCE|ESTATE_AGENTS_FEE|OTHER)$
              description: Sub-category. Only populated when `category` is `Third Party
                Payment`.
              example: INDEMNITY_INSURANCE
            notes:
              type: string
              minLength: 0
              maxLength: 128
              description: Optional free-text notes for the line item.
              example: Insurance Fee
```
