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

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

# PolicyReferenceDataModel

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    PolicyReferenceDataModel:
      type: object
      properties:
        policyNumber:
          type: string
          description: number/subjective id of policy
          example: POLICY1234567890
        planCode:
          type: string
          description: plan code for policy
          example: PLAN001
        productName:
          type: string
          description: product name of policy
          example: Deluxe Universal Life
        firstName:
          type: string
          description: policy owner first name
          example: Nick
        lastName:
          type: string
          description: policy owner last name
          example: Burdell
        fullName:
          type: string
          description: policy owner full name
          example: Nick Burdell
        policyStatus:
          type: string
          description: status of policy, needs to be enum
          example: IGO
        lineOfBusiness:
          type: string
          description: line of business, usually LIFE or ANNUITY
          example: LIFE
        restrictionStatus:
          description: restriction status in SOR
          example:
            - LEGAL
          type: array
          items:
            type: string
        carrierId:
          type: string
          description: 4 character id of carrier, also called clientCode or companyCode
          example: EVGL
        companyName:
          type: string
          description: Company associated with policyholder
          example: Everglades
        ssn:
          type: string
          description: Social security number of policy holder, masked on return
        productType:
          type: string
          description: Type of the product
          example: universal
        lastUpdated:
          format: date-time
          type: string
          description: last time policy was updated
        createdAt:
          format: date-time
          type: string
          description: creation date of the policy
        id:
          type: string
          description: reference id of the policy, fully unique
          example: 3cc99edada4f4a88be77cef53ba0b3fd
        partyIds:
          description: list of party ids associated with the policy
          example:
            - 4fd32e7aecc24888be9c5418d6dc646a
            - 2739e8897e7141189ccd366f7d054ff0
          type: array
          items:
            type: string
        issueDate:
          type: string
          format: date
          description: Issue date of the policy in YYYY-MM-DD format
          example: 2024-09-30
      required:
        - policyNumber
        - createdAt
```
