doc: readme contributing roadmap

This commit is contained in:
Artemy 2022-07-28 19:33:27 +03:00
parent 11628b0190
commit 2cf76d8c0f
9 changed files with 342 additions and 2 deletions

View file

@ -0,0 +1,22 @@
{
"$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
}
}
}
}
}