uni-id-scores.schema.json 944 字节
Newer Older
芊里 已提交
1 2
{
	"bsonType": "object",
3 4 5 6 7 8
	"required": ["user_id", "score", "balance"],
	"permission": {
		"read": true,
		"create": true,
		"update": "doc._id == auth.uid",
		"delete": false
DCloud_JSON's avatar
312  
DCloud_JSON 已提交
9
	},
芊里 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
		},
		"user_id": {
			"bsonType": "string",
			"description": "用户id,参考uni-id-users表"
		},
		"score": {
			"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": "创建时间",
			"forceDefaultValue": {
				"$env": "now"
			}
		}
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
44
}