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