Allianz Trade · Schema
JointInsured
A joint insured entity registered under a policy
Credit InsuranceInsuranceRisk ManagementTrade CreditE-CommerceSurety
Properties
| Name | Type | Description |
|---|---|---|
| jointInsuredId | string | Unique identifier for the joint insured |
| policyId | string | Parent policy identifier |
| companyName | string | Legal name of the joint insured company |
| registrationNumber | string | Company registration number |
| country | string | ISO 3166-1 alpha-2 country code |
| status | string | Current status of the joint insured |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.allianz-trade.com/schemas/trade-policy-joint_insured-schema.json",
"title": "JointInsured",
"type": "object",
"description": "A joint insured entity registered under a policy",
"properties": {
"jointInsuredId": {
"type": "string",
"description": "Unique identifier for the joint insured"
},
"policyId": {
"type": "string",
"description": "Parent policy identifier"
},
"companyName": {
"type": "string",
"description": "Legal name of the joint insured company"
},
"registrationNumber": {
"type": "string",
"description": "Company registration number"
},
"country": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code"
},
"status": {
"type": "string",
"description": "Current status of the joint insured",
"enum": [
"active",
"inactive"
]
}
}
}