Seems, that format email it's just string. I have schema: ``` { "type": "object", "properties": { "email": { "type": "string", "format": "email" } } } ``` I'm trying to validate data: ``` {"email": "just string"} ``` And validator said that's ok.