duck-creek · Schema
ProductSummary
Properties
| Name | Type | Description |
|---|---|---|
| productCode | string | |
| productName | string | |
| lineOfBusiness | string | |
| availableStates | array | |
| effectiveDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductSummary",
"title": "ProductSummary",
"type": "object",
"properties": {
"productCode": {
"type": "string"
},
"productName": {
"type": "string"
},
"lineOfBusiness": {
"type": "string"
},
"availableStates": {
"type": "array",
"items": {
"type": "string"
}
},
"effectiveDate": {
"type": "string",
"format": "date"
}
}
}