opendb/collection/opendb-categories/collection.json
2021-11-17 14:03:05 +08:00

92 lines
2.4 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"schema": {
"bsonType": "object",
"required": [
"name"
],
"permission": {
"read": true,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "存储文档 ID系统自动生成"
},
"parent_id": {
"bsonType": "string",
"description": "父ID用于多级分类"
},
"type": {
"bsonType": "string",
"description": "用于区分不同的栏目分类",
"title": "栏目类型",
"label": "栏目"
},
"name": {
"bsonType": "string",
"description": "类别名称",
"title": "类别名称",
"trim": "both"
},
"icon": {
"bsonType": "string",
"description": "类别图标/图片地址",
"title": "图标地址",
"pattern": "^(http://|https://|/|./|@/)\\S",
"trim": "both"
},
"sort": {
"bsonType": "int",
"description": "类别排序,越大越靠后",
"title": "排序"
},
"open_url": {
"bsonType": "string",
"description": "点击跳转目标地址。如果是web地址则使用内置web-view打开如果是本地页面则跳转本地页面如果是schema地址则打开本地的app",
"title": "点击目标地址",
"format": "url",
"pattern": "^(http:\/\/|https:\/\/|\/|.\/|@\/)\\S",
"trim": "both"
},
"description": {
"bsonType": "string",
"description": "类别描述",
"title": "类别描述",
"trim": "both"
},
"is_hot_show": {
"bsonType": "bool",
"title": "加入热门显示",
"description": "是否热门显示"
},
"is_new_show": {
"bsonType": "bool",
"title": "加入新品显示",
"description": "是否新品显示"
},
"is_index_show": {
"bsonType": "bool",
"title": "首页显示",
"description": "是否首页显示"
},
"is_enable": {
"bsonType": "bool",
"defaultValue": true,
"title": "是否启用",
"label": "启用",
"description": "是否启用"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"defaultValue": {
"$env": "now"
}
}
}
},
"data": [],
"index": []
}