opendb/collection/uni-id-permissions/collection.json
2020-10-12 17:29:20 +08:00

43 lines
897 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"schema": {
"bsonType": "object",
"required": [
"permission_id"
],
"properties": {
"_id": {
"description": "存储文档 ID系统自动生成"
},
"permission_id": {
"bsonType": "string",
"description": "权限唯一标识,不可修改,不允许重复"
},
"permission_name": {
"bsonType": "string",
"description": "权限名称"
},
"comment": {
"bsonType": "string",
"description": "备注"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间"
}
}
},
"index": [
{
"IndexName": "permission_id",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "permission_id",
"Direction": "1"
}
],
"MgoIsUnique": true
}
}
]
}