---
title: "Deductible"
url: "https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579/schemas/Deductible"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579.md

# Deductible

Deductible details for a quote section (single object, not an array).

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: dev
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    IdReference:
      type: object
      description: Reference to a lookup-backed entity identified by `id` (the XFI
        lookup id, environment-specific).
      required:
        - id
      additionalProperties: false
      properties:
        id:
          type: string
          description: XFI lookup id — the canonical identifier (environment-specific).
          example: "260"
    Deductible:
      type: object
      description: Deductible details for a quote section (single object, not an array).
      required:
        - typeOfDeductible
        - deductibleBasis
      properties:
        typeOfDeductible:
          $ref: "#/components/schemas/IdReference"
          description: Type of deductible — id only.
        deductibleBasis:
          $ref: "#/components/schemas/IdReference"
          description: Deductible basis — id only.
        allRiskDeductible:
          type: integer
          description: Optional. All-risk deductible indicator for this section — `1` when
            an all-risk deductible applies.
          example: 1
```
