---
title: "IriWithdrawalValues"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/IriWithdrawalValues"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# IriWithdrawalValues

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IriWithdrawalValues:
      type: object
      properties:
        totalWithdrawalAmount:
          type: number
          description: Cumulative amount of funds withdrawn since policy inception.
          example: 0
          minimum: 0
          maximum: 9999999999.99
        freeWithdrawalAmount:
          type: number
          description: Maximum amount that can be withdrawn in a contract year without a
            surrender charge.
          example: 10000
          minimum: 0
          maximum: 9999999999.99
        yearToDateFreeWithdrawalAmount:
          type: number
          description: Amount withdrawn so far in the current contract year within the
            free withdrawal limit.
          example: 0
          minimum: 0
          maximum: 9999999999.99
        minimumWithdrawalAmount:
          type: number
          description: Smallest amount that can be withdrawn in a single transaction.
          example: 0
          minimum: 0
          maximum: 9999999999.99
        maximumWithdrawalAmount:
          type: number
          description: Highest amount that can be withdrawn in a single transaction or
            policy year.
          example: 0
          minimum: 0
          maximum: 9999999999.99
        freeAvailableAmount:
          type: number
          description: Remaining free withdrawal amount available.
          example: 0
          minimum: 0
          maximum: 9999999999.99
      required:
        - yearToDateFreeWithdrawalAmount
```
