{
  "title": "Email",
  "$id": "https://velocitynetwork.foundation/schemas/email-v1.0",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "@context": {
      "$ref": "#/definitions/Json-ld-context_Schema"
    },
    "type": {
      "type": "string",
      "default": "Email"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The email address.",
      "maxLength": 256
    }
  },
  "required": [
    "email"
  ],
  "definitions": {
    "Json-ld-context_Schema": {
      "title": "json-ld-context",
      "oneOf": [
        {
          "type": "string",
          "maxLength": 2048
        },
        {
          "type": "array",
          "minItems": 1,
          "items": {
            "type": "string",
            "maxLength": 2048
          }
        }
      ],
      "description": "Simplified context for Velocity Publishers to Use"
    }
  }
}