-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch_cli_resp.schema.json
More file actions
120 lines (120 loc) · 3.51 KB
/
Copy pathsearch_cli_resp.schema.json
File metadata and controls
120 lines (120 loc) · 3.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "抖音关键词搜索 - API出参",
"description": "抖音实时关键词搜索, API出参Schema详解",
"properties": {
"aweme_id": {
"type": "string",
"description": "抖音视频ID"
},
"desc": {
"type": "string",
"description": "抖音视频描述"
},
"create_time": {
"type": "number",
"description": "抖音视频创建时间戳"
},
"author_uid": {
"type": "string",
"description": "视频作者抖音ID"
},
"author_nickname": {
"type": "string",
"description": "视频作者抖音昵称"
},
"author_avatar": {
"type": "string",
"description": "视频作者抖音头像"
},
"author_sec_uid": {
"type": "string",
"description": "视频作者抖音SEC_UID"
},
"author_signature": {
"type": "string",
"description": "视频作者抖音签名"
},
"comment_count": {
"type": "number",
"description": "抖音视频评论数"
},
"digg_count": {
"type": "number",
"description": "抖音视频点赞数"
},
"share_count": {
"type": "number",
"description": "抖音视频分享数"
},
"collect_count": {
"type": "number",
"description": "抖音视频收藏数"
},
"share_url": {
"type": "string",
"description": "抖音视频分享URL"
},
"dynamic_cover": {
"type": "array",
"description": "抖音视频动态封面",
"items": {
"type": "string",
"description": "抖音视频动态封面URL"
}
},
"play_addr": {
"type": "string",
"description": "视频播放地址、视频下载地址"
},
"play_uri": {
"type": "string",
"description": "抖音视频播放URI"
},
"music_id": {
"type": "string",
"description": "抖音视频音乐ID"
},
"music_title": {
"type": "string",
"description": "抖音视频音乐标题"
},
"music_author": {
"type": "string",
"description": "抖音视频音乐作者"
},
"music_play_url": {
"type": "string",
"description": "抖音视频音乐播放URL"
},
"tags": {
"type": "array",
"description": "抖音视频标签",
"items": {
"type": "string",
"description": "抖音视频标签"
}
},
"suggest_words": {
"type": "array",
"description": "抖音小蓝词",
"items": {
"type": "string",
"description": "抖音小蓝词, 评论框顶端显示的建议词"
}
},
"url": {
"type": "string",
"description": "抖音视频URL"
},
"author_url": {
"type": "string",
"description": "视频作者抖音主页URL"
},
"create_time_str": {
"type": "string",
"description": "抖音视频创建时间"
}
}
}