mirror of
https://github.com/OSMA-D/osma-server.git
synced 2025-02-01 10:19:08 +03:00
23 lines
410 B
JSON
23 lines
410 B
JSON
|
{
|
||
|
"$jsonSchema": {
|
||
|
"bsonType": "object",
|
||
|
"required": ["apps", "name"],
|
||
|
"properties": {
|
||
|
"name": {
|
||
|
"bsonType": "string",
|
||
|
"minLength": 3,
|
||
|
"maxLength": 16
|
||
|
},
|
||
|
"apps": {
|
||
|
"bsonType": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"bsonType": "string",
|
||
|
"minLength": 3,
|
||
|
"maxLength": 5
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|