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