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

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

# TaxWithHolding

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    TaxWithHoldingAttributes:
      type: object
      properties:
        taxWithholdingPlace:
          type: string
        partyId:
          type: string
          description: Party ID is a unique identifier assigned to a party (individual or
            entity) involved in an insurance or annuity contract. This
            identifier helps ensure accurate data exchange and tracking across
            insurance transactions
        taxWithheldAmount:
          type: string
        taxWithheldPercent:
          type: string
        taxWithholdingType:
          type: string
        withholdingNumberExemptions:
          type: string
        maritalStatus:
          type: string
        taxJurisdiction:
          type: string
        taxableAmount:
          type: string
      required:
        - taxWithholdingPlace
        - partyId
        - taxWithheldAmount
        - taxWithheldPercent
        - taxWithholdingType
        - withholdingNumberExemptions
        - maritalStatus
        - taxJurisdiction
        - taxableAmount
    TaxWithHolding:
      type: object
      properties:
        attributes:
          $ref: "#/components/schemas/TaxWithHoldingAttributes"
      required:
        - attributes
```
