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

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

# PolicyContractState

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    TrackerType:
      type: string
      enum:
        - ERRORTRACKER
        - PAUSEDTRACKER
        - TXLIFE
        - POLICYSTATETRACKER
        - LOCKEDTRACKER
        - REVERSALREQUEST
        - POLICYISSUANCEERROR
    PolicyContractState:
      type: object
      properties:
        trackerType:
          $ref: "#/components/schemas/TrackerType"
        status:
          type: string
          description: The status of the policy contract, whether it is VALID or ERROR
            based on the trackerType that it's in.
          example: VALID
        reason:
          type: string
          description: The reason why this policy is in the current tracker state.
          example: Policy cannot be lifecycled to a previous date.
        currentLifecycleDate:
          type: string
          description: The date the policy is currently lifecycled to.
          format: date
          example: 2025-01-01
```
