---
title: "ApprovedLineItem"
url: "https://developer.pexa.co.uk/apis/financials-v1-v1/versions/d3f169b2-8b77-47f6-8696-d6efa1bd09f2/schemas/ApprovedLineItem"
---

> Full API specification: https://developer.pexa.co.uk/apis/financials-v1-v1/versions/d3f169b2-8b77-47f6-8696-d6efa1bd09f2.md

# ApprovedLineItem

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Financial
  version: v1
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
```
