1
0
Files
zimin-live-streaming-timeline/data.schema.json

58 lines
1.2 KiB
JSON

{
"type": "object",
"required": [
"timeline"
],
"properties": {
"timeline": {
"type": "array",
"title": "时间线",
"items": {
"type": "object",
"required": [
"startTime",
"endTime"
],
"properties": {
"startTime": {
"type": "string",
"title": "开始时间"
},
"endTime": {
"type": "string",
"title": "结束时间"
},
"content": {
"type": "string",
"title": "直播内容",
"default": ""
},
"remarks": {
"type": "string",
"title": "备注",
"default": ""
}
},
"defaultSnippets": [
{
"label": "基础格式",
"body": {
"startTime": "",
"endTime": "",
"content": ""
}
},
{
"label": "基础格式 + 备注",
"body": {
"startTime": "",
"endTime": "",
"content": "",
"remarks": ""
}
}
]
}
}
}
}