AmTrust Financial Services · Schema
QuoteRequest
Request to create a commercial lines quote
Commercial InsuranceInsuranceProperty And CasualtySmall BusinessWorkers CompensationFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| product_type | string | Insurance product type |
| state | string | US state abbreviation |
| effective_date | string | Policy effective date |
| expiration_date | string | Policy expiration date |
| insured | object | |
| coverages | array | Requested coverage details |
| agent_id | string | AmTrust agent identifier |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amtrust-financial-services/refs/heads/main/json-schema/amtrust-financial-services-quote-request-schema.json",
"title": "QuoteRequest",
"description": "Request to create a commercial lines quote",
"type": "object",
"required": [
"product_type",
"state",
"effective_date",
"insured"
],
"properties": {
"product_type": {
"type": "string",
"description": "Insurance product type",
"enum": [
"workers_compensation",
"bop",
"general_liability",
"commercial_package"
]
},
"state": {
"type": "string",
"description": "US state abbreviation",
"example": "TX"
},
"effective_date": {
"type": "string",
"format": "date",
"description": "Policy effective date",
"example": "2025-07-01"
},
"expiration_date": {
"type": "string",
"format": "date",
"description": "Policy expiration date",
"example": "2026-07-01"
},
"insured": {
"$ref": "#/components/schemas/Insured"
},
"coverages": {
"type": "array",
"description": "Requested coverage details",
"items": {
"$ref": "#/components/schemas/Coverage"
}
},
"agent_id": {
"type": "string",
"description": "AmTrust agent identifier",
"example": "AGT-12345"
}
}
}