Allow pass string formats to ajvResolver and use defaults from [ajv-formats](https://ajv.js.org/guide/formats.html#string-formats). example schema: ```json { "type": "object", "properties": { "email": { "type": "string", "format": "email", }, }, "required": ["email"], "$schema": "http://json-schema.org/draft-07/schema#" } ```