duck-creek · Schema
ClaimSummary
Properties
| Name | Type | Description |
|---|---|---|
| claimId | string | |
| claimNumber | string | |
| policyId | string | |
| status | string | |
| lossDate | string | |
| reportedDate | string | |
| lossType | string | |
| totalIncurred | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClaimSummary",
"title": "ClaimSummary",
"type": "object",
"properties": {
"claimId": {
"type": "string"
},
"claimNumber": {
"type": "string"
},
"policyId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"OPEN",
"CLOSED",
"DENIED",
"PENDING"
]
},
"lossDate": {
"type": "string",
"format": "date"
},
"reportedDate": {
"type": "string",
"format": "date"
},
"lossType": {
"type": "string"
},
"totalIncurred": {
"type": "number"
}
}
}