duck-creek · Schema

Quote

Properties

Name Type Description
quoteId string
status string
totalPremium number
premiumBreakdown array
underwritingMessages array
expiresAt string
View JSON Schema on GitHub

JSON Schema

duck-creek-quote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Quote",
  "title": "Quote",
  "type": "object",
  "properties": {
    "quoteId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "RATED",
        "REFERRED",
        "DECLINED"
      ]
    },
    "totalPremium": {
      "type": "number"
    },
    "premiumBreakdown": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "coverageCode": {
            "type": "string"
          },
          "premium": {
            "type": "number"
          }
        }
      }
    },
    "underwritingMessages": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}