-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhot_cli_resp.schema.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathhot_cli_resp.schema.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "抖音热榜 - API出参",
"description": "抖音实时热榜, API出参Schema详解",
"required": [
"word",
"event_time",
"hot_value",
"position",
"view_count"
],
"properties": {
"id": {
"type": "number",
"description": "自增ID"
},
"word": {
"type": "string",
"description": "热榜关键词"
},
"event_time": {
"type": "number",
"description": "事件发生时间"
},
"hot_value": {
"type": "number",
"description": "热榜值"
},
"position": {
"type": "number",
"description": "热榜排名"
},
"view_count": {
"type": "number",
"description": "关键词的搜索量"
},
"event_time_format": {
"type": "string",
"description": "事件发生时间格式化字符串"
}
}
}