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

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

# LineItem

## 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:
    LineItem:
      type: object
      required:
        - authorised
        - category
        - amount
      properties:
        authorised:
          type: boolean
          example: true
          description: Authorisation status of the line item
        category:
          type: string
          pattern: ^(Mortgage Advance)$
          description: |
            Allowed values:
             [`Mortgage Advance`]
          example: Mortgage Advance
        amount:
          type: number
          minimum: 1
          maximum: 999999999999.99
          description: Amount to be credited / debited
          example: 10
```
