opendb-news-favorite.schema.json 1.0 KB
Newer Older
L
2  
linju 已提交
1 2 3 4
{
	"bsonType": "object",
	"required": ["user_id", "article_id"],
	"permission": {
5
		"read": "doc.user_id == auth.uid",
L
2  
linju 已提交
6
		"create": "auth.uid != null",
7 8
		"update": "doc.user_id == auth.uid",
		"delete": "doc.user_id == auth.uid"
L
2  
linju 已提交
9 10 11 12
	},
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
DCloud_JSON's avatar
DCloud_JSON 已提交
13
		},
L
2  
linju 已提交
14 15 16 17
		"article_id": {
			"bsonType": "string",
			"description": "文章id,参考opendb-news-articles表",
			"foreignKey": "opendb-news-articles._id"
DCloud_JSON's avatar
DCloud_JSON 已提交
18 19 20 21
		},
		"article_title": {
			"bsonType": "string",
			"description": "文章标题"
L
2  
linju 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
		},
		"user_id": {
			"bsonType": "string",
			"description": "收藏者id,参考uni-id-users表",
			"forceDefaultValue": {
				"$env": "uid"
			},
			"foreignKey": "uni-id-users._id"
		},
		"create_date": {
			"bsonType": "timestamp",
			"description": "收藏时间",
			"forceDefaultValue": {
				"$env": "now"
			}
芊里 已提交
37 38 39
		},
		"update_date": {
			"bsonType": "timestamp",
DCloud_JSON's avatar
DCloud_JSON 已提交
40
			"description": "更新\/修改时间",
芊里 已提交
41 42 43
			"forceDefaultValue": {
				"$env": "now"
			}
L
2  
linju 已提交
44 45
		}
	}
46
}