1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "additionalProperties": false, 4 "properties": { 5 "foo": { 6 "type": "string", 7 "format": "no_match" 8 }, 9 "contact": { 10 "type": "string", 11 "format": "email" 12 } 13 }, 14 "required": ["foo", "contact"], 15 "type": "object" 16} 17