mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-14 23:12:59 +08:00
25 lines
567 B
JSON
25 lines
567 B
JSON
{
|
||
"schema": {
|
||
"bsonType": "object",
|
||
"required": ["friend_uid", "follow_uid"],
|
||
"properties": {
|
||
"_id": {
|
||
"description": "ID,系统自动生成"
|
||
},
|
||
"friend_uid": {
|
||
"bsonType": "string",
|
||
"description": "被关注者user_id,参考uni-id-users表"
|
||
},
|
||
"follow_uid": {
|
||
"bsonType": "string",
|
||
"description": "关注者user_id,参考uni-id-users表"
|
||
},
|
||
"create_date": {
|
||
"bsonType": "timestamp",
|
||
"description": "创建时间"
|
||
}
|
||
}
|
||
},
|
||
"index": []
|
||
}
|