---
title: "Insured"
url: "https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75/schemas/Insured"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-ap-is-beta/versions/018fd555-bac2-494f-872b-ac47b74f1e75.md

# Insured

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: uat
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    Insured:
      required:
        - companyName
        - countryISOAlpha2Code
        - countryISOAlpha3Code
        - domicileCountry
        - domicileState
        - email
        - mailingAddressCity
        - id
      type: object
      properties:
        id:
          type: integer
          format: int32
        companyName:
          maxLength: 200
          minLength: 0
          type: string
        domicileCountry:
          description: 'Domicile country — always send as code, e.g. { "code": "USA" }.'
          properties:
            code:
              example: USA
              type: string
          required:
            - code
          type: object
        domicileState:
          description: 'Domicile state — always send as code, e.g. { "code": "NY" }.'
          properties:
            code:
              example: NY
              type: string
          required:
            - code
          type: object
        mailingAddress1:
          maxLength: 200
          minLength: 0
          type: string
        mailingAddressCity:
          maxLength: 30
          minLength: 0
          type: string
        email:
          type: string
        countryISOAlpha2Code:
          type: string
          description: countryISOAlpha2Code must be required
        countryISOAlpha3Code:
          type: string
          description: countryISOAlpha3Code must be required
```
