duck-creek · Schema

PolicyRequest

Properties

Name Type Description
productCode string
quoteId string
insured object
effectiveDate string
expirationDate string
coverages array
agentCode string
View JSON Schema on GitHub

JSON Schema

duck-creek-policyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyRequest",
  "title": "PolicyRequest",
  "type": "object",
  "required": [
    "productCode",
    "insured",
    "effectiveDate"
  ],
  "properties": {
    "productCode": {
      "type": "string"
    },
    "quoteId": {
      "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"
    }
  }
}