duck-creek · Schema

Insured

Properties

Name Type Description
name string
type string
dateOfBirth string
ssn string Social security number (masked)
address object
phone string
email string
View JSON Schema on GitHub

JSON Schema

duck-creek-insured-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Insured",
  "title": "Insured",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "INDIVIDUAL",
        "BUSINESS"
      ]
    },
    "dateOfBirth": {
      "type": "string",
      "format": "date"
    },
    "ssn": {
      "type": "string",
      "description": "Social security number (masked)"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "phone": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  }
}