---
title: "OLifE"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/OLifE"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# OLifE

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    Holding:
      type: object
      properties:
        attribute_id:
          type: string
        Policy:
          $ref: "#/components/schemas/EvidencePolicy"
      required:
        - Policy
    EvidenceParty:
      type: object
      properties:
        PartyTypeCode:
          type: string
        GovtID:
          type: string
        GovtIDTC:
          type: string
        Person:
          $ref: "#/components/schemas/EvidencePerson"
        Address:
          $ref: "#/components/schemas/EvidenceAddress"
    Relation:
      type: object
      properties:
        OriginatingObjectType:
          type: string
        RelatedObjectType:
          type: string
        RelationRoleCode:
          type: string
        BirthDate:
          type: string
    EvidencePolicy:
      type: object
      properties:
        CarrierCode:
          type: string
        ApplicationInfo:
          $ref: "#/components/schemas/ApplicationInfo"
        RequirementInfo:
          $ref: "#/components/schemas/RequirementInfo"
    EvidencePerson:
      type: object
      properties:
        FirstName:
          type: string
        LastName:
          type: string
        Gender:
          type: string
          description: "Allowed values: M, F"
        BirthDate:
          type: string
    EvidenceAddress:
      type: object
      properties:
        Zip:
          type: string
    ApplicationInfo:
      type: object
      properties:
        TrackingID:
          type: string
        HOAppFormNumber:
          type: string
      required:
        - HOAppFormNumber
    RequirementInfo:
      type: object
      properties:
        attribute_id:
          type: string
        attribute_AppliesToPartyID:
          type: string
        ReqCode:
          type: string
        RequirementInfoUniqueID:
          type: string
        RequirementDetails:
          type: string
      required:
        - RequirementDetails
    OLifE:
      type: object
      properties:
        Holding:
          $ref: "#/components/schemas/Holding"
        Party:
          $ref: "#/components/schemas/EvidenceParty"
        Relation:
          $ref: "#/components/schemas/Relation"
```
