expressCart/lib/schemas/editUser.json

19 lines
365 B
JSON
Raw Normal View History

2019-11-16 19:37:48 +10:00
{
"$id": "editUser",
"type": "object",
"properties": {
"usersName": {
"type": "string"
},
"userEmail": {
"type": "string",
"format": "emailAddress"
},
"userPassword": {
"type": "string"
},
"isAdmin": {
"type": "boolean"
}
2019-11-16 19:57:50 +10:00
}
2019-11-16 19:37:48 +10:00
}