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

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

# FundAllocations

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    FundAllocationsAttributes:
      type: object
      properties:
        productFullName:
          type: string
          example: Product A
          description: Product Full Name
        fundId:
          type: string
          example: FUND123
          description: Fund ID
        allocationPercent:
          type: string
          example: 20%
          description: Allocation Percent
        startDate:
          type: string
          example: 2022-01-01
          description: Start Date
        endDate:
          type: string
          example: 2022-12-31
          description: End Date
      required:
        - productFullName
        - fundId
        - allocationPercent
        - startDate
        - endDate
    FundAllocations:
      type: object
      properties:
        attributes:
          $ref: "#/components/schemas/FundAllocationsAttributes"
      required:
        - attributes
```
