---
title: "PartialWithdrawalFundDistribution"
url: "https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84/schemas/PartialWithdrawalFundDistribution"
---

> Full API specification: https://developers.zinnia.com/apis/policy-transactions-1-0-2/versions/d0006570-ab9d-464e-814f-d120ba425e84.md

# PartialWithdrawalFundDistribution

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia Policy Transactions API.
  version: 1.0.8
servers:
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://qa.api.zinnia.io
    description: QA Environment
components:
  schemas:
    PartialWithdrawalDistributionAmountType:
      type: string
      enum:
        - PERCENTAGE
        - AMOUNT
        - UNIT
      example: AMOUNT
    PartialWithdrawalFundDistributionSegment:
      type: object
      properties:
        segmentId:
          type: string
          example: "1231414"
        currentAmount:
          type: number
          format: double
          example: 10000
        requestedAmount:
          type: number
          format: double
          example: 1000
    PartialWithdrawalFundDistribution:
      type: object
      properties:
        fundId:
          type: string
          example: "1231414"
        fundName:
          type: string
          example: Fixed
        distributionAmountType:
          $ref: "#/components/schemas/PartialWithdrawalDistributionAmountType"
        totalFundValue:
          type: number
          format: double
          example: 10000
        requestedAmount:
          type: number
          format: double
          example: 1000
        fundDistributionSegments:
          type: array
          items:
            $ref: "#/components/schemas/PartialWithdrawalFundDistributionSegment"
```
