osma-server/docs/db-validation/personal_libraries.json

23 lines
410 B
JSON
Raw Normal View History

2022-07-28 19:33:27 +03:00
{
"$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
}
}
}
}
}