{
    "format": "tsv",
    "definitions": {},
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "http://example.com/root.json",
    "title": "Appreciation Engine Email Validation Schema",
    "required": [
        "Email_Address"
    ],
    "type": "object",
    "properties": {
        "Email_Address": {
            "$id": "#/properties/Email_Address",
            "should_fail": true,
            "type": "string",
            "examples": [
                "123@gmail.com"
            ],
            "pattern": ".+"
        }
    }
}
