opendb/collection/opendb-search-hot/collection.json

31 lines
589 B
JSON
Raw Normal View History

{
"schema": {
"bsonType": "object",
"required": ["content", "count"],
2020-10-27 18:21:58 +08:00
"permission": {
2020-10-28 20:21:38 +08:00
"read": true,
"create": false,
"update": false,
"delete": false
2020-10-27 18:21:58 +08:00
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"content": {
"bsonType": "string",
"description": "搜索内容"
},
"count": {
"bsonType": "long",
"description": "搜索次数"
},
"create_date": {
"bsonType": "timestamp",
"description": "统计时间"
}
}
},
"index": []
}