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

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

# Fee

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    FeeAttributes:
      type: object
      properties:
        feeType:
          type: string
          example: Admin Fee
          description: Fee Type
        feeAmount:
          type: string
          example: "50"
          description: Fee Amount
        startDate:
          type: string
          example: 2022-01-01
          description: Start Date
        effectiveRate:
          type: string
          example: 5%
          enum:
            - 5%
            - 10%
            - 15%
          description: Effective Rate
        feeWaivedIndicator:
          type: string
          example: Y
          enum:
            - Y
            - N
          description: Fee Waived Indicator
      required:
        - feeType
        - feeAmount
        - startDate
    Fee:
      type: object
      properties:
        attributes:
          $ref: "#/components/schemas/FeeAttributes"
      required:
        - attributes
```
