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

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

# LapseAssessment

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    LapseAssessmentAttributes:
      type: object
      properties:
        lapseIndicator:
          type: string
          example: Y
          enum:
            - Y
            - N
          description: Lapse Indicator
        gracePeriodStartDate:
          type: string
          example: 2022-03-15
          description: Grace Period Start Date
        gracePeriodEndDate:
          type: string
          example: 2022-06-15
          description: Grace Period End Date
        lapseEffectiveDate:
          type: string
          example: 2022-06-15
          description: Lapse Effective Date
        totalLapsePendingAmount:
          type: string
          example: "150"
          description: Total Lapse Pending Amount
        minimumLapsePendingAmount:
          type: string
          example: "50"
          description: Minimum Lapse Pending Amount
      required:
        - gracePeriodStartDate
        - gracePeriodEndDate
        - lapseEffectiveDate
        - totalLapsePendingAmount
        - minimumLapsePendingAmount
    LapseAssessment:
      type: object
      properties:
        attributes:
          $ref: "#/components/schemas/LapseAssessmentAttributes"
      required:
        - attributes
```
