-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathplugin.json
137 lines (137 loc) · 3.6 KB
/
plugin.json
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "IMDB",
"avatar": "https://static.sencdn.com/brand/logo/logo-red-text-gray-2x.png",
"variables": {
"API_KEY": "Your API Key"
},
"functions": [
{
"name": "search",
"description": "Search for movies and series from IMDb API",
"parameters": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Movie title"
},
"titleType": {
"type": "string",
"description": "Title type"
},
"releaseDateFrom": {
"type": "string",
"description": "Release date from"
},
"releaseDateTo": {
"type": "string",
"description": "Release date to"
},
"userRatingFrom": {
"type": "number",
"description": "User rating from"
},
"userRatingTo": {
"type": "number",
"description": "User rating to"
},
"numberOfVotesFrom": {
"type": "number",
"description": "Number of votes from"
},
"numberOfVotesTo": {
"type": "number",
"description": "Number of votes to"
},
"genres": {
"type": "string",
"description": "Genres"
},
"titleGroups": {
"type": "string",
"description": "Title groups"
},
"titleData": {
"type": "string",
"description": "Title data"
},
"companies": {
"type": "string",
"description": "Companies"
},
"instantWatchOptions": {
"type": "string",
"description": "Instant watch options"
},
"usCertificates": {
"type": "string",
"description": "US certificates"
},
"colorInfo": {
"type": "string",
"description": "Color info"
},
"countries": {
"type": "string",
"description": "Countries"
},
"countriesStr": {
"type": "string",
"description": "Countries (string)"
},
"keyword": {
"type": "string",
"description": "Keyword"
},
"languages": {
"type": "string",
"description": "Languages"
},
"languagesStr": {
"type": "string",
"description": "Languages (string)"
},
"filmingLocations": {
"type": "string",
"description": "Filming locations"
},
"popularityFrom": {
"type": "number",
"description": "Popularity from"
},
"popularityTo": {
"type": "number",
"description": "Popularity to"
},
"plot": {
"type": "string",
"description": "Plot"
},
"runtimeFrom": {
"type": "number",
"description": "Runtime from"
},
"runtimeTo": {
"type": "number",
"description": "Runtime to"
},
"soundMix": {
"type": "string",
"description": "Sound mix"
},
"count": {
"type": "string",
"description": "Result count"
},
"sort": {
"type": "string",
"description": "Sort order"
},
"required": [
"location"
]
}
}
}
]
}