---
title: "RegulatoryCoding"
url: "https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660/schemas/RegulatoryCoding"
---

> Full API specification: https://devportal.connecttrident.com/apis/trident-ap-is-1/versions/967439f4-0251-4ec6-b55c-13f079a9b660.md

# RegulatoryCoding

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

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: "2.0"
servers:
  - url: https://trident-api.connecttrident.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
```
