mirror of
https://github.com/OSMA-D/osma-server.git
synced 2025-02-01 02:09:09 +03:00
22 lines
410 B
JSON
22 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|