opendb/collection/uni-id-balances/collection.json

45 lines
865 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.

{
"bsonType": "object",
"required": ["user_id", "amount", "balance"],
"permission": {
"read": true,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户id参考uni-id-users表"
},
"amount": {
"bsonType": "int",
"description": "本次变化的金额"
},
"type": {
"bsonType": "int",
"enum": [1, 2],
"description": "类型 1:收入 2:支出"
},
"balance": {
"bsonType": "int",
"description": "变化后的余额"
},
"comment": {
"bsonType": "string",
"description": "备注,说明新增、消费的缘由",
"trim": "both"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"defaultValue": {
"$env": "now"
}
}
}
}