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

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

# FundAllocation

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    FundAccountType:
      type: string
      enum:
        - FIXED
        - INDEXED
        - VARIABLE
        - INTERIM
    FundAllocation:
      type: object
      properties:
        fundId:
          type: string
          description: A unique identifier for a specific fund account available for
            selection for Fund Allocation
          example: FUND001
        fundName:
          type: string
          description: The official business name of the specific fund account within the
            investment structure
          example: Everglades Fixed IUL Fund
        fundAccountType:
          $ref: "#/components/schemas/FundAccountType"
        allocationPercentage:
          type: number
          description: The percentage of total fund allocation assigned to a particular
            fund account
          example: 100
          format: double
        startDate:
          type: string
          format: date
          description: The date when the fund allocation /investment selection/fund
            becomes active
          example: 2023-01-01
        endDate:
          type: string
          format: date
          description: The date when the fund allocation /investment selection/fund is no
            longer valid
          example: 2023-01-01
```
