12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
const User = {
|
|
"id": "/UserValidation",
|
|
"type": Object,
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"mail": { "type": "string" },
|
|
"password": { "type": "string" },
|
|
},
|
|
"required": ["name", "password", "mail"]
|
|
}
|
|
|
|
module.exports = User |