mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 19:19:45 +08:00
26 lines
555 B
JSON
26 lines
555 B
JSON
|
{
|
|||
|
"schema": {
|
|||
|
"bsonType": "object",
|
|||
|
"required": ["name", "description", "create_date"],
|
|||
|
"properties": {
|
|||
|
"_id": {
|
|||
|
"description": "存储文档 ID(文章 ID),系统自动生成"
|
|||
|
},
|
|||
|
"name": {
|
|||
|
"bsonType": "string",
|
|||
|
"description": "类别名称"
|
|||
|
},
|
|||
|
"description": {
|
|||
|
"bsonType": "string",
|
|||
|
"description": "类别描述"
|
|||
|
},
|
|||
|
"create_date": {
|
|||
|
"bsonType": "timestamp",
|
|||
|
"description": "创建时间"
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
"data": [],
|
|||
|
"index": []
|
|||
|
}
|