guestbook.schema.json 881 字节
Newer Older
1 2 3 4 5 6 7 8 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 44 45
// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
	"bsonType": "object",
	"required": [],
	"permission": {
		"read":  "doc.state || auth.uid == doc.uid || 'AUDITOR' in auth.role",
		"create": "auth.uid != null",
		"update": true,
		"delete": "auth.uid == doc.uid"
	},
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
		},
		"text": {
			"bsonType": "string",
			"permission":{
				"update":"'AUDITOR' in auth.role"
			}
		},
		"uid": {
			"forceDefaultValue": {
				"$env": "uid"
			},
			"foreignKey": "uni-id-users._id"
		},
		"ip": {
			"forceDefaultValue": {
				"$env": "clientIP"
			}
		},
		"create_time": {
			"forceDefaultValue": {
				"$env": "now"
			}
		},
		"state": {
			"bsonType": "bool",
			"forceDefaultValue":false,
			"permission":{
				"write":"'AUDITOR' in auth.role"
			}
		}
	}
}