---
title: "PrefillPolicy"
url: "https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec/schemas/PrefillPolicy"
---

> Full API specification: https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec.md

# PrefillPolicy

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Connect Order Entry API
  version: 1.0.3
servers:
  - url: https://dev.api.zinnia.io
  - url: https://qa.api.zinnia.io
  - url: https://uat.api.zinnia.io
components:
  schemas:
    PrefillDuration:
      type: object
      properties:
        periodDescription:
          type: string
          nullable: true
        unitCode:
          type: string
          nullable: true
        unitCount:
          type: string
          nullable: true
      additionalProperties: false
    PrefillFlag:
      type: object
      properties:
        indicator:
          type: string
          nullable: true
        indicatorTypeCode:
          type: string
          nullable: true
      additionalProperties: false
    PrefillQuestionAnswer:
      type: object
      properties:
        questionCode:
          type: string
          nullable: true
        questionText:
          type: string
          nullable: true
        answerCode:
          type: string
          nullable: true
        answerText:
          type: string
          nullable: true
        value:
          type: number
          format: double
          nullable: true
        accountDesignationCode:
          type: string
          nullable: true
      additionalProperties: false
    PrefillUnderwritingDecision:
      type: object
      properties:
        classCode:
          type: string
          nullable: true
      additionalProperties: false
    PrefillPolicy:
      type: object
      properties:
        duration:
          $ref: "#/components/schemas/PrefillDuration"
        effectiveDate:
          type: string
          nullable: true
        faceAmount:
          type: number
          format: double
          nullable: true
        flag:
          type: array
          items:
            $ref: "#/components/schemas/PrefillFlag"
          nullable: true
        questionAnswer:
          type: array
          items:
            $ref: "#/components/schemas/PrefillQuestionAnswer"
          nullable: true
        underwritingDecision:
          $ref: "#/components/schemas/PrefillUnderwritingDecision"
      additionalProperties: false
```
