@rapharacing/schemas
Version:
OpenAPI to JSON Schema to be used with middy for CC response validation
33 lines • 762 B
JSON
{
"type": "object",
"required": [
"firstName",
"lastName",
"password",
"uid"
],
"properties": {
"firstName": {
"type": "string",
"description": "first name of the user"
},
"lastName": {
"type": "string",
"description": "last name of the user"
},
"password": {
"type": "string",
"description": "user password"
},
"titleCode": {
"type": "string"
},
"uid": {
"type": "string",
"description": "user id, unique string required to create new user. It can be email"
}
},
"title": "UserSignUp",
"description": "Representation of an UserSignUp. Consists of fields required to register new customer",
"$schema": "http://json-schema.org/schema#"
}