duck-creek · Schema
QuoteRequest
Properties
| Name | Type | Description |
|---|---|---|
| productCode | string | |
| insured | object | |
| effectiveDate | string | |
| expirationDate | string | |
| coverages | array | |
| agentCode | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QuoteRequest",
"title": "QuoteRequest",
"type": "object",
"required": [
"productCode",
"insured",
"effectiveDate"
],
"properties": {
"productCode": {
"type": "string"
},
"insured": {
"$ref": "#/components/schemas/Insured"
},
"effectiveDate": {
"type": "string",
"format": "date"
},
"expirationDate": {
"type": "string",
"format": "date"
},
"coverages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoverageRequest"
}
},
"agentCode": {
"type": "string"
}
}
}