duck-creek · Schema

Endorsement

Properties

Name Type Description
endorsementId string
type string
effectiveDate string
premiumChange number
View JSON Schema on GitHub

JSON Schema

duck-creek-endorsement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Endorsement",
  "title": "Endorsement",
  "type": "object",
  "properties": {
    "endorsementId": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date"
    },
    "premiumChange": {
      "type": "number"
    }
  }
}