{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "http://json-schema.int.adscore.com/user/reset_request.schema.json",
	"title": "User Reset Request",
	"description": "Request to reset user e-mail address",
	"type": "object",
	"required": [
		"body"
	],
	"properties": {
		"route": {
			"type": "object",
			"properties": {
				"path": {
					"const": "/user/reset/request"
				},
				"methods": {
					"const": ["POST"]
				}
			}
		},
		"body": {
			"type": "object",
			"description": "Request body",
			"required": [
				"email"
			],
			"properties": {
				"email": {
					"type": "string",
					"format": "email"
				}
			}
		}
	}
}
		
