{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "New Customer Profile Email",
  "$id": "#customer/new-customer-profile-email",
  "properties": {
    "customer_profile_id": {
      "type": "number"
    },
    "description": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "type": {
      "type": "string",
      "enum": ["primary", "accountant", "technical"]
    }
  },
  "required": ["customer_profile_id", "description", "email", "type"],
  "type": "object"
}
