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

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

# IriPartyIdentification

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    IriIdentificationType:
      type: string
      description: Type of identification.
      enum:
        - PASSPORT
        - STATEPHOTOID
        - DRIVERLICENSENUMBER
        - SSN
        - TIN
        - EXTERNAL
        - EIN
        - OTHER
    IriPartyIdentification:
      type: object
      properties:
        identificationId:
          type: string
          description: Identifier for the identification record.
          example: IDE-875
          pattern: ^[A-Za-z0-9._-]{1,100}$
        startDate:
          type: string
          description: Date the identification record becomes effective.
          example: 2026-03-06
          format: date
        endDate:
          type: string
          description: Date the identification record ends.
          example: 2028-03-06
          format: date
        identificationType:
          $ref: "#/components/schemas/IriIdentificationType"
        identificationKey:
          type: string
          description: Identification key.
          example: US-PPT
          pattern: ^[A-Za-z0-9._-]{1,100}$
        identificationValue:
          type: string
          description: Identification value.
          example: "999888777"
          maxLength: 100
        identificationDescription:
          type: string
          description: Description of the identifier.
          example: US Passport
          maxLength: 255
        issueState:
          type: string
          description: State that issued the identification.
          example: NC
          pattern: ^[A-Z]{2}$
        issueCountry:
          type: string
          description: Country that issued the identification.
          example: US
          pattern: ^[A-Z]{2}$
      required:
        - startDate
        - endDate
```
