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

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

# PolicyFeeAttributes

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    PolicyFeeAttributes:
      type: object
      properties:
        feeId:
          type: string
          example: FEE123
          description: Fee ID
        feeType:
          type: string
          example: Admin Fee
          description: Fee Type
        startDate:
          type: string
          example: 2022-01-01
          description: Start Date
        effectiveRate:
          type: string
          example: 5%
          enum:
            - 5%
            - 10%
            - 15%
          description: Effective Rate
        feeAmount:
          type: string
          example: "50"
          description: Fee Amount
        netAmountAtRisk:
          type: string
          example: "100"
          description: The Net Amount at Risk (NAR) is the difference between the policy’s
            total death benefit and the policy’s account value (cash value). It
            represents the portion of the death benefit that the insurance
            company is at risk of paying out beyond the policyholder’s
            accumulated account value
      required:
        - feeId
        - feeType
        - startDate
        - feeAmount
        - netAmountAtRisk
```
