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

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

# FinancialSettlementScheduleApprovalResponse

## 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:
    FinancialSettlementScheduleApprovalResponse:
      type: object
      properties:
        status:
          type: string
          description: >
            Current status of the financial settlement schedule <br> values:
            [`APPROVED`, `PREPARED`]
          example: APPROVED
        approvedBy:
          type: string
          format: email
          description: Email address of the user who performed the approval action
          example: approver@lawfirm.com
        lineItems:
          type: array
          default: []
          items:
            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
          description: List of line items in the financial settlement schedule
```
