-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathINPUT_SCHEMA.json
272 lines (272 loc) · 8.88 KB
/
INPUT_SCHEMA.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
{
"title": "Input schema for Kickstarter search actor",
"type": "object",
"schemaVersion": 1,
"properties": {
"query": {
"title": "Query",
"type": "string",
"description": "What to search Kickstarter for",
"editor": "textfield",
"prefill": "Gadgets"
},
"maxResults": {
"title": "Maximum results",
"type": "integer",
"description": "Limit number of results",
"minimum": 0,
"prefill": 50
},
"category": {
"sectionCaption": "Possible filters",
"title": "Category",
"type": "string",
"description": "Category to search in",
"prefill": "All",
"enum": [
"All",
"art",
"art/ceramics",
"art/conceptual art",
"art/digital art",
"art/illustration",
"art/installations",
"art/mixed media",
"art/painting",
"art/performance art",
"art/public art",
"art/sculpture",
"art/textiles",
"art/video art",
"comics",
"comics/anthologies",
"comics/comic books",
"comics/events",
"comics/graphic novels",
"comics/webcomics",
"crafts",
"crafts/candles",
"crafts/crochet",
"crafts/diy",
"crafts/embroidery",
"crafts/glass",
"crafts/knitting",
"crafts/pottery",
"crafts/printing",
"crafts/quilts",
"crafts/stationery",
"crafts/taxidermy",
"crafts/weaving",
"crafts/woodworking",
"dance",
"dance/performances",
"dance/residencies",
"dance/spaces",
"dance/workshops",
"design",
"design/architecture",
"design/civic design",
"design/graphic design",
"design/interactive design",
"design/product design",
"design/typography",
"fashion",
"fashion/accessories",
"fashion/apparel",
"fashion/childrenswear",
"fashion/couture",
"fashion/footwear",
"fashion/jewelry",
"fashion/pet fashion",
"fashion/ready-to-wear",
"film & video",
"film & video/action",
"film & video/animation",
"film & video/comedy",
"film & video/documentary",
"film & video/drama",
"film & video/experimental",
"film & video/family",
"film & video/fantasy",
"film & video/festivals",
"film & video/horror",
"film & video/movie theaters",
"film & video/music videos",
"film & video/narrative film",
"film & video/romance",
"film & video/science fiction",
"film & video/shorts",
"film & video/television",
"film & video/thrillers",
"film & video/webseries",
"food",
"food/bacon",
"food/community gardens",
"food/cookbooks",
"food/drinks",
"food/events",
"food/farmer's markets",
"food/farms",
"food/food trucks",
"food/restaurants",
"food/small batch",
"food/spaces",
"food/vegan",
"games",
"games/gaming hardware",
"games/live games",
"games/mobile games",
"games/playing cards",
"games/puzzles",
"games/tabletop games",
"games/video games",
"journalism",
"journalism/audio",
"journalism/photo",
"journalism/print",
"journalism/video",
"journalism/web",
"music",
"music/blues",
"music/chiptune",
"music/classical music",
"music/comedy",
"music/country & folk",
"music/electronic music",
"music/faith",
"music/hip-hop",
"music/indie rock",
"music/jazz",
"music/kids",
"music/latin",
"music/metal",
"music/pop",
"music/punk",
"music/r&b",
"music/rock",
"music/world music",
"photography",
"photography/animals",
"photography/fine art",
"photography/nature",
"photography/people",
"photography/photobooks",
"photography/places",
"publishing",
"publishing/academic",
"publishing/anthologies",
"publishing/art books",
"publishing/calendars",
"publishing/children's books",
"publishing/comedy",
"publishing/fiction",
"publishing/letterpress",
"publishing/literary journals",
"publishing/nonfiction",
"publishing/periodicals",
"publishing/poetry",
"publishing/radio & podcasts",
"publishing/translations",
"publishing/young adult",
"publishing/zines",
"publishing/literary spaces",
"technology",
"technology/3d printing",
"technology/apps",
"technology/camera equipment",
"technology/diy electronics",
"technology/fabrication tools",
"technology/flight",
"technology/gadgets",
"technology/hardware",
"technology/makerspaces",
"technology/robots",
"technology/software",
"technology/sound",
"technology/space exploration",
"technology/wearables",
"technology/web",
"theater",
"theater/comedy",
"theater/experimental",
"theater/festivals",
"theater/immersive",
"theater/musical",
"theater/plays",
"theater/spaces"
],
"editor": "select"
},
"location": {
"title": "Location",
"type": "string",
"description": "Location where you want to search",
"prefill": "United States",
"editor": "textfield"
},
"status": {
"title": "Status",
"type": "string",
"description": "Status of the project",
"default": "All",
"enum": ["All", "Live", "Successful"],
"editor": "select"
},
"pledged": {
"title": "Amount pledged",
"type": "string",
"description": "Amount pledged",
"default": "All",
"enum": ["All", "< $1,000 pledged", "$1,000 to $10,000 pledged", "$10,000 to $100,000 pledged", "$100,000 to $1,000,000 pledged", "> $1,000,000 pledged"],
"editor": "select"
},
"goal": {
"title": "Goal",
"type": "string",
"description": "Goal",
"default": "All",
"enum": ["All", "< $1,000 goal", "$1,000 to $10,000 goal", "$10,000 to $100,000 goal", "$100,000 to $1,000,000 goal", "> $1,000,000 goal"],
"editor": "select"
},
"raised": {
"title": "% Raised",
"type": "string",
"description": "% Raised",
"default": "All",
"enum": ["All", "< 75% raised", "75% to 100% raised", "> 100% raised"],
"editor": "select"
},
"sort": {
"title": "Sort",
"type": "string",
"description": "Allows you to change the ",
"default": "newest",
"prefill": "newest",
"enum": ["newest", "popularity", "end_date", "most_funded", "most_backed"],
"editor": "select"
},
"datasetName": {
"title": "Dataset name",
"type": "string",
"description": "Use this if you want the data to be written into named dataset, setting this will overwrite the data with each run",
"default": "",
"editor": "textfield",
"sectionCaption": "Advanced options"
},
"proxyConfig": {
"title": "Proxy configuration",
"type": "object",
"description": "Proxy group to use",
"default": {
"useApifyProxy": true
},
"prefill": {
"useApifyProxy": true
},
"editor": "proxy"
}
},
"required": [
"proxyConfig"
]
}