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

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

# PolicySectionDetail

Policy section containing deductions, coverages, and conditions

## 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:
    PolicyDeduction:
      type: object
      properties:
        deductionRate:
          type: number
          example: 30
        deductionDesc:
          type: string
          example: Brokerage ( - )
        deductionId:
          type: string
          example: "26270"
        isUpdated:
          type: boolean
        updated:
          type: boolean
    PolicyCoverage:
      type: object
      properties:
        policyCoverageDesc:
          type: string
          example: Security and Privacy Liability
        grossWritten:
          type: number
          example: 15000
        currency:
          type: string
          example: USD
        policyCoverageId:
          type: string
          example: "108136"
        isUpdated:
          type: boolean
        updated:
          type: boolean
    PolicyCondition:
      type: object
      properties:
        conditionId:
          type: string
          example: "13019"
        typeOfClauseCode:
          type: string
          nullable: true
        typeOfClauseDescription:
          type: string
          example: Clause
        baseCode:
          type: string
          example: LMA 5493
        clauseTitle:
          type: string
          example: Cyber Exclusion
        isUpdated:
          type: boolean
        updated:
          type: boolean
    PolicySectionDetail:
      type: object
      description: Policy section containing deductions, coverages, and conditions
      properties:
        policyDeductions:
          type: array
          items:
            $ref: "#/components/schemas/PolicyDeduction"
        policyCoverages:
          type: array
          items:
            $ref: "#/components/schemas/PolicyCoverage"
        policyConditions:
          type: array
          items:
            $ref: "#/components/schemas/PolicyCondition"
        excess:
          type: number
          example: 0
        aggregateLimitOfLiability:
          type: number
          nullable: true
        policySectionDesc:
          type: string
          example: "1142"
        policySectionId:
          type: string
          example: "55107"
        allRiskDeductible:
          type: number
          nullable: true
        isUpdated:
          type: boolean
        updated:
          type: boolean
```
