mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
31 lines
588 B
JSON
31 lines
588 B
JSON
{
|
||
"schema": {
|
||
"bsonType": "object",
|
||
"required": ["content", "count"],
|
||
"permission": {
|
||
"read": true,
|
||
"create": false,
|
||
"update": false,
|
||
"delete": false
|
||
},
|
||
"properties": {
|
||
"_id": {
|
||
"description": "ID,系统自动生成"
|
||
},
|
||
"content": {
|
||
"bsonType": "string",
|
||
"description": "搜索内容"
|
||
},
|
||
"count": {
|
||
"bsonType": "int",
|
||
"description": "搜索次数"
|
||
},
|
||
"create_date": {
|
||
"bsonType": "timestamp",
|
||
"description": "统计时间"
|
||
}
|
||
}
|
||
},
|
||
"index": []
|
||
}
|