---
title: "InstalmentEntry"
url: "https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579/schemas/InstalmentEntry"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579.md

# InstalmentEntry

A single entry in a custom instalment plan.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: dev
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    InstalmentEntry:
      type: object
      description: A single entry in a custom instalment plan.
      required:
        - dueDate
        - sharePercent
      properties:
        dueDate:
          type: string
          format: date
          description: Due date for this instalment.
          example: 2026-08-01
        sharePercent:
          type: number
          format: double
          description: Percentage of total premium due on this date. All entries across
            the instalmentPlan must sum to 100.
          example: 25
```
