mirror of
https://github.com/OSMA-D/osma-server.git
synced 2025-02-01 02:09:09 +03:00
23 lines
403 B
JSON
23 lines
403 B
JSON
|
{
|
||
|
"$jsonSchema": {
|
||
|
"bsonType": "object",
|
||
|
"required": ["name", "password", "email", "role"],
|
||
|
"properties": {
|
||
|
"name": {
|
||
|
"bsonType": "string",
|
||
|
"minLength": 3,
|
||
|
"maxLength": 16
|
||
|
},
|
||
|
"password": {
|
||
|
"bsonType": "string"
|
||
|
},
|
||
|
"email": {
|
||
|
"bsonType": "string"
|
||
|
},
|
||
|
"role": {
|
||
|
"bsonType": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|