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

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

# LapseProtectionAttributes

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    LapseProtectionAttributes:
      type: object
      properties:
        startDate:
          type: string
          example: 2022-01-01
          description: Start Date
        endDate:
          type: string
          example: 2022-12-31
          description: End Date
        monthlyPayment:
          type: string
          example: "20"
          description: Monthly Payment
        cumulativePayment:
          type: string
          example: "120"
          description: Cumulative Payment
        guaranteedPeriod:
          type: string
          example: "24"
          description: Guaranteed Period
      required:
        - startDate
        - endDate
        - monthlyPayment
        - cumulativePayment
        - guaranteedPeriod
```
