mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-28 23:39:43 +08:00
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
|
{
|
|||
|
"schema": {
|
|||
|
"bsonType": "object",
|
|||
|
"required": [
|
|||
|
"role_id",
|
|||
|
"permission"
|
|||
|
],
|
|||
|
"properties": {
|
|||
|
"_id": {
|
|||
|
"description": "存储文档 ID,系统自动生成"
|
|||
|
},
|
|||
|
"role_id": {
|
|||
|
"bsonType": "string",
|
|||
|
"description": "角色唯一标识,不可修改,不允许重复"
|
|||
|
},
|
|||
|
"role_name": {
|
|||
|
"bsonType": "string",
|
|||
|
"description": "角色名称"
|
|||
|
},
|
|||
|
"comment": {
|
|||
|
"bsonType": "string",
|
|||
|
"description": "用户昵称"
|
|||
|
},
|
|||
|
"create_date": {
|
|||
|
"bsonType": "timestamp",
|
|||
|
"description": "创建时间"
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
"index": [
|
|||
|
{
|
|||
|
"IndexName": "role_id",
|
|||
|
"MgoKeySchema": {
|
|||
|
"MgoIndexKeys": [
|
|||
|
{
|
|||
|
"Name": "role_id",
|
|||
|
"Direction": "1"
|
|||
|
}
|
|||
|
],
|
|||
|
"MgoIsUnique": true
|
|||
|
}
|
|||
|
},
|
|||
|
{
|
|||
|
"IndexName": "permission",
|
|||
|
"MgoKeySchema": {
|
|||
|
"MgoIndexKeys": [
|
|||
|
{
|
|||
|
"Name": "permission",
|
|||
|
"Direction": "1"
|
|||
|
}
|
|||
|
],
|
|||
|
"MgoIsUnique": false
|
|||
|
}
|
|||
|
}
|
|||
|
]
|
|||
|
}
|