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

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

# FullCyberSubmissionRequest

Full submission payload — Step 2 of the submission lifecycle (`Base → Full → Quote`). Extends the Step 1 fields (all optional here, required only when calling this endpoint standalone without a prior `/policies/submission/base` call) with underwriting data. Required: `underWriter`, `mosaicOccupation`, `sectionIdentifier`. Conditional: `referenceType` (required when the producing entity, derived from `division`, is MSSL or MEEA). `office`, `mop`, and `typeOfPlacementBespoke` are NOT part of the contract — derived server-side.

## 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:
    SubmissionInsured:
      type: object
      description: >-
        Insured details for the shell submission.


        **Option A — Existing contact:** Set `insureContacts.id` to the XFI
        contact identifier. All other insured fields are ignored.


        **Option B — New insured:** Provide `companyName`, `domicileCountry`,
        `domicileState`, and any available mailing-address fields.
        `insureContacts` must be omitted.
      properties:
        companyName:
          type: string
          description: "**Required when creating a new insured** (i.e. `insureContacts` is
            not provided). Legal company name as stated in the submission
            documentation."
          x-conditional-required: Required when creating a new insured (insureContacts not provided).
          example: Veritas Capital
        domicileCountry:
          description: '**Required when creating a new insured.** Domicile country —
            **always send as `code`**, e.g. `{ "code": "USA" }`. Represents the
            country where the insured is legally domiciled.'
          example:
            code: USA
          properties:
            code:
              description: ISO country code or XFI country code.
              example: USA
              type: string
          required:
            - code
          type: object
          x-conditional-required: Required when creating a new insured (insureContacts not provided).
        domicileState:
          description: '**Required when creating a new insured** and the domicile country
            has state-level data. Domicile state — **always send as `code`**,
            e.g. `{ "code": "NY" }`.'
          example:
            code: NJ
          properties:
            code:
              description: State/province code.
              example: NY
              type: string
          required:
            - code
          type: object
          x-conditional-required: Required when creating a new insured (insureContacts not provided).
        mailingAddress1:
          type: string
          example: 123 Cedar Street
        mailingAddressCity:
          type: string
          example: Green Bay
        email:
          type: string
          format: email
          description: Optional if insureContacts is provided.
          example: underwriting@veritascap.com
        zipCode:
          type: string
          description: Post code / zip for the insured mailing address. **Required when
            creating a new insured** and the insured’s country uses postal
            codes.
          x-conditional-required: Required when creating a new insured and the country
            uses postal codes.
          example: "54304"
        obligor:
          $ref: "#/components/schemas/IdReference"
          description: Conditional — Political Risk only. Obligor contact reference — `id`
            only.
        insureContacts:
          $ref: "#/components/schemas/IdReference"
          description: 'Insured contact reference — `id` only (e.g. `{ "id": "2000887"
            }`). Use this to reference an existing insured in XFI. When
            supplied, all other insured fields (companyName, domicile, mailing
            address) are ignored.'
    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"
    SubmissionPolicy:
      type: object
      description: Policy node. effectiveDate, expiryDate, currency, product,
        territory are mandatory.
      required:
        - effectiveDate
        - expiryDate
        - currency
        - product
        - territory
      properties:
        effectiveDate:
          type: string
          format: date
          description: "**Required.** Policy effective date (ISO 8601). Source: policy
            terms section of the slip."
          example: 2024-01-01
        expiryDate:
          type: string
          format: date
          description: "**Required.** Policy expiry date (ISO 8601). Source: policy terms
            section of the slip."
          example: 2025-01-01
        currency:
          $ref: "#/components/schemas/CodeReference"
          description: "**Required.** Currency reference — `code` only (e.g. `USD`, `GBP`,
            `EUR`)."
        product:
          $ref: "#/components/schemas/IdReference"
          description: "**Required.** Product reference — `id` only."
        territory:
          $ref: "#/components/schemas/CodeReference"
          description: "**Required.** Territory reference — `code` only."
    CodeReference:
      type: object
      description: Reference to a lookup-backed entity identified by `code` (the
        environment-stable business code).
      required:
        - code
      additionalProperties: false
      properties:
        code:
          type: string
    SectionIdentifierRef:
      type: object
      description: Section identifier, identified by `id`. Ids are fixed and stable
        across all environments.
      required:
        - id
      additionalProperties: false
      properties:
        id:
          type: string
          enum:
            - "1"
            - "2"
          description: 1 = C&C, 2 = Non C&C.
          example: "1"
    ReferenceTypeRef:
      type: object
      description: Reference type, identified by `id`. Ids are fixed and stable across
        all environments.
      required:
        - id
      additionalProperties: false
      properties:
        id:
          type: string
          enum:
            - "1"
            - "2"
            - "3"
          description: 1 = EEA, 2 = Non-EEA, 3 = Both.
          example: "1"
    FullCyberSubmissionRequest:
      type: object
      description: "Full submission payload — Step 2 of the submission lifecycle
        (`Base → Full → Quote`). Extends the Step 1 fields (all optional here,
        required only when calling this endpoint standalone without a prior
        `/policies/submission/base` call) with underwriting data. Required:
        `underWriter`, `mosaicOccupation`, `sectionIdentifier`. Conditional:
        `referenceType` (required when the producing entity, derived from
        `division`, is MSSL or MEEA). `office`, `mop`, and
        `typeOfPlacementBespoke` are NOT part of the contract — derived
        server-side."
      required:
        - underWriter
        - mosaicOccupation
        - sectionIdentifier
      properties:
        insured:
          $ref: "#/components/schemas/SubmissionInsured"
          description: Optional. Already on the DRAFT from Step 1; supply only when
            calling Full standalone.
        producer:
          $ref: "#/components/schemas/IdReference"
          description: Optional. Already on the DRAFT from Step 1. `id` only.
        policy:
          $ref: "#/components/schemas/SubmissionPolicy"
          description: Optional. Already on the DRAFT from Step 1. Use the top-level
            `policyDescription` field for a free-text description.
        directAssumed:
          $ref: "#/components/schemas/IdReference"
          description: Optional. `id` only.
        typeOfBilling:
          $ref: "#/components/schemas/IdReference"
          description: Optional. `id` only.
        division:
          $ref: "#/components/schemas/IdReference"
          description: Optional. `id` only.
        writtenLine:
          type: integer
          minimum: 1
          format: int32
          description: Optional. Written line percentage (e.g. 100).
          example: 100
        policyDescription:
          type: string
          description: Optional. Free-text policy description. Defaulted/derived
            server-side when omitted.
          example: Cyber primary 2026 renewal
        class:
          $ref: "#/components/schemas/CodeReference"
          description: 'Optional. Risk class — `code` only (e.g. `{ "code": "CY" }`).'
        producingCompany:
          $ref: "#/components/schemas/IdReference"
          description: Optional. Producing company — `id` only. Required when division is
            Mosaic Asta Europe.
        marketSource:
          $ref: "#/components/schemas/IdReference"
          description: Optional. Market source — `id` only.
        sectionIdentifier:
          $ref: "#/components/schemas/SectionIdentifierRef"
          description: "**Required.** Section identifier — `id` only (1 = C&C, 2 = Non
            C&C)."
        referenceType:
          $ref: "#/components/schemas/ReferenceTypeRef"
          description: "**Conditional.** Reference type — `id` only (1 = EEA, 2 = Non-EEA,
            3 = Both). Required when the producing entity (derived from
            `division`) is MSSL or MEEA."
        underWriter:
          $ref: "#/components/schemas/IdReference"
          description: '**Required.** Underwriter — `id` only (e.g. `{ "id": "8842" }`).'
        mosaicOccupation:
          $ref: "#/components/schemas/IdReference"
          description: '**Required.** Mosaic occupation — `id` only (e.g. `{ "id": "198"
            }`).'
        umr:
          type: string
          description: Optional. Unique Market Reference.
          example: B1234567890
        revTurnover:
          type: integer
          minimum: 0
          format: int32
          description: Optional. Insured's annual revenue or turnover amount.
          example: 0
        producingUnderwriter:
          $ref: "#/components/schemas/IdReference"
          description: Optional. Producing underwriter — `id` only. Defaults to the
            submission underwriter when omitted.
        lloydsIndustrialSector:
          $ref: "#/components/schemas/IdReference"
          description: Optional. Lloyd's industrial sector — `id` only. When supplied,
            takes precedence over the server's automatic derivation.
        sBFClass:
          $ref: "#/components/schemas/IdReference"
          description: Optional. sBFClass — `id` only.
```
