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

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

# LineItemAttributesDto

Additional line item attributes. Omitted when neither `subCategory` nor `notes` is set.

## 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:
    LineItemAttributesDto:
      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
```
