{
"type": "string",
"required": [
"string"
],
"properties": {
"email": {
"type": "string",
"format": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"date": {
"type": "string",
"description": "string"
},
"country": {
"type": "string",
"minLength": 0,
"maxLength": 0
},
"gender": {
"type": "string",
"enum": [
"string"
]
},
"phone": {
"type": "string",
"pattern": "string"
},
"address": {
"type": "string",
"required": [
"string"
],
"properties": {
"city": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"street": {
"type": "string"
},
"state": {
"type": "string"
}
}
}
}
}