duck-creek · Schema

PolicyUpdateRequest

Properties

Name Type Description
endorsementEffectiveDate string
reason string
coverages array
View JSON Schema on GitHub

JSON Schema

duck-creek-policyupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyUpdateRequest",
  "title": "PolicyUpdateRequest",
  "type": "object",
  "properties": {
    "endorsementEffectiveDate": {
      "type": "string",
      "format": "date"
    },
    "reason": {
      "type": "string"
    },
    "coverages": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CoverageRequest"
      }
    }
  }
}