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

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

# RegulatoryCoding

Regulatory coding (code split) line within a quote section.

## 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:
    RegulatoryCoding:
      type: object
      description: Regulatory coding (code split) line within a quote section.
      required:
        - code
        - codeSplitPc
      properties:
        code:
          type: string
          description: "**Required.** Regulatory / risk classification code (e.g. 'E2',
            '7T'). Source: the agreement’s risk classification code set."
          example: E2
        codeSplitPc:
          type: number
          format: double
          description: "**Required.** Code split percentage for this regulatory coding
            entry (numeric). All entries across the section must sum to 100."
          example: 50
        overrideAgreementRiskCode:
          type: boolean
          description: Set `true` to override the agreement’s default risk code with this
            entry. Default is `false`.
          example: false
        gELR:
          type: number
          format: double
          description: Optional. gELR (gross expected loss ratio) for this regulatory
            coding entry, when it differs from the section-level `gELR`.
          example: 50
```
