{
  "title": "Email",
  "type": "object",
  "$id": "email",
  "description": "email schema",
  "properties": {
    "type": {
      "type": "string",
      "default": "Email"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  },
  "required": [
    "email"
  ]
}