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

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

# IriSystematicProgramParty

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IriSystematicPartyRole:
      type: string
      description: Role of the party within the systematic program. Uses PascalCase
        values to align with the PartyRole filter vocabulary.
      enum:
        - Payor
        - Payee
    IriPartyPaymentForm:
      type: string
      description: Party-level payment form for the systematic program.
      enum:
        - DTCC
        - ACH
        - CHECK
        - WIRE
        - EXCHANGE
    IriSystematicProgramParty:
      type: object
      properties:
        partyRole:
          $ref: "#/components/schemas/IriSystematicPartyRole"
        taxId:
          type: string
          description: Tax identification number for the party.
          example: "123456789"
          minLength: 9
          maxLength: 9
          pattern: ^[0-9]{9}$
        percentage:
          type: number
          description: The party percentage for this program.
          example: 100
          minimum: 0
          maximum: 100
        bankId:
          type: string
          description: Bank account tied to the party.
          example: Bank_1
          maxLength: 100
        addressId:
          type: string
          description: Address tied to the party. Required by the IRI schema when the
            payment method is CHECK.
          example: ADDR001
          maxLength: 100
        paymentForm:
          $ref: "#/components/schemas/IriPartyPaymentForm"
      required:
        - partyRole
        - taxId
        - percentage
        - bankId
        - paymentForm
```
