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

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

# AccountInfo

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    Owner:
      type: object
      properties:
        ownerType:
          type: string
        ownerName:
          type: string
        ownerAge:
          type: integer
          format: int32
        ownerAddressLine1:
          type: string
        ownerAddressLine2:
          type: string
        ownerAddressLine3:
          type: string
        city:
          type: string
        state:
          type: string
        zipCode:
          type: string
        preferredCommunicationType:
          type: string
        email:
          type: string
    AccountInfo:
      type: object
      properties:
        SourceSystem:
          type: string
          enum:
            - LC
        ContractNumber:
          type: string
        ContractId:
          type: string
        CovId:
          type: string
        QualTypeCode:
          type: string
        QualTypeDesc:
          type: string
        ApplicationDate:
          format: date-time
          type: string
        ModifiedEndowmentStatus:
          type: string
        MaturityDate:
          format: date-time
          type: string
        ProductLine:
          type: string
        ProductCategory:
          type: string
        ProductName:
          type: string
        PlanCode:
          type: string
        IssueState:
          type: string
        IssueDate:
          format: date-time
          type: string
        EffectiveDate:
          format: date-time
          type: string
        ContractStatus:
          type: string
        DeathBenefit:
          type: string
        MVAProduct:
          type: string
        ProductShareClass:
          type: string
        ProductCompanyId:
          type: number
        FaceAmount:
          type: number
        CashValue:
          type: number
        LengthofTerm:
          type: number
        LastUpdated:
          format: date-time
          type: string
        TokenId:
          type: string
        JurisdictionStateCode:
          type: string
        Owners:
          type: array
          items:
            $ref: "#/components/schemas/Owner"
      required:
        - SourceSystem
        - ContractNumber
        - ContractId
        - CovId
        - QualTypeCode
        - QualTypeDesc
        - ApplicationDate
        - ModifiedEndowmentStatus
        - MaturityDate
        - ProductLine
        - ProductCategory
        - ProductName
        - PlanCode
        - IssueState
        - IssueDate
        - EffectiveDate
        - ContractStatus
        - DeathBenefit
        - MVAProduct
        - ProductShareClass
        - ProductCompanyId
        - FaceAmount
        - CashValue
        - LengthofTerm
        - LastUpdated
        - TokenId
        - JurisdictionStateCode
        - Owners
```
