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

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

# Reinstatement

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    ReinstatementAttributes:
      type: object
      properties:
        lastReinstatementDate:
          type: string
          example: 2021-12-31
          description: Last Reinstatement Date
        maxReinstatementYrs:
          type: string
          example: "3"
          description: Max Reinstatement Years
        underwritingDecision:
          type: string
          example: Approved
          description: Underwriting Decision
        approvalDate:
          type: string
          example: 2022-01-01
          description: Approval Date
        effectiveDate:
          type: string
          example: 2022-03-15
          description: Effective Date
        expirationDate:
          type: string
          example: 2022-12-31
          description: Expiration Date
        paymentAmount:
          type: string
          example: "30"
          description: Payment Amount
      required:
        - lastReinstatementDate
        - maxReinstatementYrs
        - underwritingDecision
        - approvalDate
        - effectiveDate
        - expirationDate
        - paymentAmount
    Reinstatement:
      type: object
      properties:
        attributes:
          $ref: "#/components/schemas/ReinstatementAttributes"
      required:
        - attributes
```
