| 参数名称 | 类型 | 含义 |
|---|---|---|
| document_id | string | 文档id |
| hash | string | 文档hash |
| created_at | string | 文档章节演示时间点 相对视频起始的开始时间点 |
| page | int | 当前文档章节页数 |
| title | string | 文档章节名称 |
| step_total | int | 子章节数量 |
| step | int | 当前文档子章节标识 |
| subsection | json | 子章节信息 参控下表subsection说明 |
| remake | string | 备注信息 |
| 参数名称 | 类型 | 含义 |
|---|---|---|
| document_id | string | 文档id |
| hash | string | 文档hash |
| created_at | string | 文档子章节演示时间点 相对视频起始的开始时间点 |
| page | int | 当前文档章节页数 |
| title | string | 子章节名称 |
| step | int | 当前文档子章节标识 |
| remake | string | 备注信息 |
[
{
// 文档id
"document_id": "e874e2db",
// 文档hash
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
//对应章节的时间点
"created_at": 2,
"page": 1,
"step": 0,
"step_total": 2,
"title": "第一章节",
"remark": "",
// 子章节列表
"subsection": [
{
"document_id": "e874e2db",
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
"page": 1,
"step": 1,
"title": "第一章节第1子章节",
"remark": "",
// 对应章节的时间点
"created_at": 4,
},
{
"id": 21,
"document_id": "e874e2db",
"hash": "8fc89be4e6bd4e0bf7fd0f1aacf9d807",
"page": 1,
"step": 2,
"title": "第一章节第2子章节",
"remark": "",
// 对应章节的时间点
"created_at": 5,
}
]
}
]