---
title: "RiderDetailPatch"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/RiderDetailPatch"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# RiderDetailPatch

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    RiderDetailPatch:
      type: object
      properties:
        type:
          type: string
          enum:
            - Rider_OWP
            - Rider_ABRTRM
            - Rider_CTR
            - Rider_ABRCHR
            - Rider_ADR
            - Rider_WPR
            - Rider_CGR
            - Rider_GIBR
            - Rider_OPR
            - Rider_OWDR
            - Rider_WDR
            - Rider_NHR
            - Rider_ABRCRI
          description: Type of rider
          example: Rider_ABRTRM
        faceAmount:
          type: number
          format: double
          minimum: 0
          description: Face amount for the rider opted by owner
          example: 250000
        premium:
          type: number
          format: double
          minimum: 0
          description: Premium amount for the rider
          example: 250000
        status:
          type: string
          enum:
            - ACTIVE
            - TERMINATED
            - PENDING
            - SUSPENDED
          description: Status of the rider. It should be always APPROVED.
          example: ACTIVE
        optedForPolicy:
          type: string
          enum:
            - YES
            - NO
          description: Whether the rider is opted for this policy or not.
          example: YES
        tableRating:
          type: string
          enum:
            - TABLEA
            - TABLEB
            - TABLEC
            - TABLED
            - TABLEE
            - TABLEF
            - TABLEG
            - TABLEH
            - TABLEI
            - TABLEJ
            - TABLEK
            - TABLEL
            - TABLEM
            - TABLEN
            - TABLEO
            - TABLEP
            - NONETABLE
          description: Table rating classification
          example: TABLEA
        party:
          type: array
          items:
            type: string
            description: Associated PartyIds for given rider
            example: 5f8f2f5c-6c3b-4e3b-8f2f-5c6c3b4e3b8f
```
