forked from koala73/worldmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResearchService.openapi.yaml
More file actions
534 lines (534 loc) · 21.2 KB
/
ResearchService.openapi.yaml
File metadata and controls
534 lines (534 loc) · 21.2 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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
openapi: 3.1.0
info:
title: ResearchService API
version: 1.0.0
paths:
/api/research/v1/list-arxiv-papers:
get:
tags:
- ResearchService
summary: ListArxivPapers
description: ListArxivPapers retrieves recent papers from arXiv.
operationId: ListArxivPapers
parameters:
- name: page_size
in: query
description: Maximum items per page (1-100).
required: false
schema:
type: integer
format: int32
- name: cursor
in: query
description: Cursor for next page.
required: false
schema:
type: string
- name: category
in: query
description: arXiv category filter (e.g., "cs.AI"). Empty returns all tracked categories.
required: false
schema:
type: string
- name: query
in: query
description: Search query for paper titles and abstracts.
required: false
schema:
type: string
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/ListArxivPapersResponse'
"400":
description: Validation error
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/research/v1/list-trending-repos:
get:
tags:
- ResearchService
summary: ListTrendingRepos
description: ListTrendingRepos retrieves trending repositories from GitHub.
operationId: ListTrendingRepos
parameters:
- name: page_size
in: query
description: Maximum items per page (1-100).
required: false
schema:
type: integer
format: int32
- name: cursor
in: query
description: Cursor for next page.
required: false
schema:
type: string
- name: language
in: query
description: Programming language filter (e.g., "python", "typescript").
required: false
schema:
type: string
- name: period
in: query
description: Trending period (e.g., "daily", "weekly"). Defaults to "daily".
required: false
schema:
type: string
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/ListTrendingReposResponse'
"400":
description: Validation error
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/research/v1/list-hackernews-items:
get:
tags:
- ResearchService
summary: ListHackernewsItems
description: ListHackernewsItems retrieves top stories from Hacker News.
operationId: ListHackernewsItems
parameters:
- name: page_size
in: query
description: Maximum items per page (1-100).
required: false
schema:
type: integer
format: int32
- name: cursor
in: query
description: Cursor for next page.
required: false
schema:
type: string
- name: feed_type
in: query
description: 'Feed type: "top", "new", "best", "ask", "show". Defaults to "top".'
required: false
schema:
type: string
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/ListHackernewsItemsResponse'
"400":
description: Validation error
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/research/v1/list-tech-events:
get:
tags:
- ResearchService
summary: ListTechEvents
description: ListTechEvents retrieves tech events from Techmeme ICS, dev.events RSS, and curated sources.
operationId: ListTechEvents
parameters:
- name: type
in: query
description: 'Event type filter: "all", "conferences", "earnings", "ipo", "other". Empty = all.'
required: false
schema:
type: string
- name: mappable
in: query
description: Only events with non-virtual coordinates.
required: false
schema:
type: boolean
- name: limit
in: query
description: Max events to return (0 = unlimited).
required: false
schema:
type: integer
format: int32
- name: days
in: query
description: Events within N days from now (0 = unlimited).
required: false
schema:
type: integer
format: int32
responses:
"200":
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/ListTechEventsResponse'
"400":
description: Validation error
content:
application/json:
schema:
$ref: '#/components/schemas/ValidationError'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
Error:
type: object
properties:
message:
type: string
description: Error message (e.g., 'user not found', 'database connection failed')
description: Error is returned when a handler encounters an error. It contains a simple error message that the developer can customize.
FieldViolation:
type: object
properties:
field:
type: string
description: The field path that failed validation (e.g., 'user.email' for nested fields). For header validation, this will be the header name (e.g., 'X-API-Key')
description:
type: string
description: Human-readable description of the validation violation (e.g., 'must be a valid email address', 'required field missing')
required:
- field
- description
description: FieldViolation describes a single validation error for a specific field.
ValidationError:
type: object
properties:
violations:
type: array
items:
$ref: '#/components/schemas/FieldViolation'
description: List of validation violations
required:
- violations
description: ValidationError is returned when request validation fails. It contains a list of field violations describing what went wrong.
ListArxivPapersRequest:
type: object
properties:
pageSize:
type: integer
format: int32
description: Maximum items per page (1-100).
cursor:
type: string
description: Cursor for next page.
category:
type: string
description: arXiv category filter (e.g., "cs.AI"). Empty returns all tracked categories.
query:
type: string
description: Search query for paper titles and abstracts.
description: ListArxivPapersRequest specifies filters for retrieving arXiv papers.
ListArxivPapersResponse:
type: object
properties:
papers:
type: array
items:
$ref: '#/components/schemas/ArxivPaper'
pagination:
$ref: '#/components/schemas/PaginationResponse'
description: ListArxivPapersResponse contains arXiv papers matching the request.
ArxivPaper:
type: object
properties:
id:
type: string
minLength: 1
description: arXiv paper ID (e.g., "2401.12345").
title:
type: string
minLength: 1
description: Paper title.
summary:
type: string
description: Paper abstract (may be truncated).
authors:
type: array
items:
type: string
description: Author names.
categories:
type: array
items:
type: string
description: arXiv categories (e.g., "cs.AI", "cs.LG").
publishedAt:
type: integer
format: int64
description: 'Publication time, as Unix epoch milliseconds.. Warning: Values > 2^53 may lose precision in JavaScript'
url:
type: string
description: URL to the paper.
required:
- id
- title
description: ArxivPaper represents a research paper from arXiv.
PaginationResponse:
type: object
properties:
nextCursor:
type: string
description: Cursor for fetching the next page. Empty string indicates no more pages.
totalCount:
type: integer
format: int32
description: Total count of items matching the query, if known. Zero if the total is unknown.
description: PaginationResponse contains pagination metadata returned alongside list results.
ListTrendingReposRequest:
type: object
properties:
pageSize:
type: integer
format: int32
description: Maximum items per page (1-100).
cursor:
type: string
description: Cursor for next page.
language:
type: string
description: Programming language filter (e.g., "python", "typescript").
period:
type: string
description: Trending period (e.g., "daily", "weekly"). Defaults to "daily".
description: ListTrendingReposRequest specifies filters for retrieving trending GitHub repos.
ListTrendingReposResponse:
type: object
properties:
repos:
type: array
items:
$ref: '#/components/schemas/GithubRepo'
pagination:
$ref: '#/components/schemas/PaginationResponse'
description: ListTrendingReposResponse contains trending GitHub repositories.
GithubRepo:
type: object
properties:
fullName:
type: string
minLength: 1
description: Repository full name (e.g., "owner/repo").
description:
type: string
description: Repository description.
language:
type: string
description: Primary programming language.
stars:
type: integer
minimum: 0
format: int32
description: Total star count.
starsToday:
type: integer
format: int32
description: Stars gained in the trending period.
forks:
type: integer
format: int32
description: Number of open forks.
url:
type: string
description: Repository URL.
required:
- fullName
description: GithubRepo represents a trending repository from GitHub.
ListHackernewsItemsRequest:
type: object
properties:
pageSize:
type: integer
format: int32
description: Maximum items per page (1-100).
cursor:
type: string
description: Cursor for next page.
feedType:
type: string
description: 'Feed type: "top", "new", "best", "ask", "show". Defaults to "top".'
description: ListHackernewsItemsRequest specifies filters for retrieving Hacker News items.
ListHackernewsItemsResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/HackernewsItem'
pagination:
$ref: '#/components/schemas/PaginationResponse'
description: ListHackernewsItemsResponse contains Hacker News items.
HackernewsItem:
type: object
properties:
id:
type: integer
format: int32
description: HN item ID.
title:
type: string
minLength: 1
description: Item title.
url:
type: string
description: URL (empty for Ask HN / Show HN text posts).
score:
type: integer
minimum: 0
format: int32
description: Upvote score.
commentCount:
type: integer
format: int32
description: Number of comments.
by:
type: string
description: Author username.
submittedAt:
type: integer
format: int64
description: 'Submission time, as Unix epoch milliseconds.. Warning: Values > 2^53 may lose precision in JavaScript'
required:
- title
description: HackernewsItem represents an item from Hacker News.
ListTechEventsRequest:
type: object
properties:
type:
type: string
description: 'Event type filter: "all", "conferences", "earnings", "ipo", "other". Empty = all.'
mappable:
type: boolean
description: Only events with non-virtual coordinates.
limit:
type: integer
maximum: 500
minimum: 0
format: int32
description: Max events to return (0 = unlimited).
days:
type: integer
minimum: 0
format: int32
description: Events within N days from now (0 = unlimited).
description: ListTechEventsRequest specifies filters for retrieving tech events.
ListTechEventsResponse:
type: object
properties:
success:
type: boolean
description: Whether the request succeeded.
count:
type: integer
format: int32
description: Total event count in response.
conferenceCount:
type: integer
format: int32
description: Number of conference-type events.
mappableCount:
type: integer
format: int32
description: Number of mappable (non-virtual with coords) events.
lastUpdated:
type: string
description: ISO 8601 timestamp of last update.
events:
type: array
items:
$ref: '#/components/schemas/TechEvent'
error:
type: string
description: Error message if success is false.
description: ListTechEventsResponse contains tech events matching the request.
TechEvent:
type: object
properties:
id:
type: string
description: Unique event identifier.
title:
type: string
description: Event title.
type:
type: string
description: 'Event type: "conference", "earnings", "ipo", "other".'
location:
type: string
description: Location description.
coords:
$ref: '#/components/schemas/TechEventCoords'
startDate:
type: string
description: Start date (YYYY-MM-DD).
endDate:
type: string
description: End date (YYYY-MM-DD).
url:
type: string
description: Event URL.
source:
type: string
description: 'Source: "techmeme", "dev.events", "curated".'
description:
type: string
description: Event description.
description: TechEvent represents a single tech event (conference, earnings, IPO, etc.).
TechEventCoords:
type: object
properties:
lat:
type: number
format: double
description: Latitude.
lng:
type: number
format: double
description: Longitude.
country:
type: string
description: Country name or code.
original:
type: string
description: Original location string before normalization.
virtual:
type: boolean
description: Whether this is a virtual/online event.
description: TechEventCoords contains geocoded location data for a tech event.