-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment_cli_resp.schema.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathcomment_cli_resp.schema.json
File metadata and controls
44 lines (44 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "抖音评论获取 - API出参",
"description": "抖音获取作品评论, API出参Schema详解",
"properties": {
"cid": {
"type": "string",
"description": "抖音评论ID"
},
"text": {
"type": "string",
"description": "抖音评论内容"
},
"create_time": {
"type": "number",
"description": "抖音评论发布时间戳"
},
"digg_count": {
"type": "number",
"description": "抖音评论点赞数"
},
"user_uid": {
"type": "string",
"description": "抖音评论者用户ID"
},
"user_nickname": {
"type": "string",
"description": "抖音评论者昵称"
},
"user_sec_uid": {
"type": "string",
"description": "抖音评论者SEC_UID"
},
"reply_comment_total": {
"type": "number",
"description": "抖音评论回复数"
},
"ip_label": {
"type": "string",
"description": "抖音评论者IP区域"
}
}
}