-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.yaml
More file actions
executable file
·608 lines (603 loc) · 15.3 KB
/
api.yaml
File metadata and controls
executable file
·608 lines (603 loc) · 15.3 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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
openapi: 3.0.3
info:
title: Devil Scout API
description: >
This is the complete API documentation for Devil Scout, an all-in-one FIRST Robotics Competition scouting platform created and maintained by Team 1559.
We maintain a mobile frontend designed to communicate with the Devil Scout servers; however, we accept that some teams may have their own tastes and preferences, from superficial UI design to complicated graphs. Since we could never hope to simultaneously accomodate everybody's wishes, we expose this API so anyone can take advantage of the platform in their own way.
All requests to this API are authenticated by Google Identity Platform. This allows us to offer multiple login methods to suit any user's needs, including 2FA if desired (though that's probably a bit much).
version: 2.0.0
contact:
name: Victor Robotics
url: https://scouting.victorrobotics.org
email: victorrobotics@gmail.com
termsOfService: https://scouting.victorrobotics.org/terms
x-api-id: 26327030-47b9-4027-b372-1faa25228e2e
x-audience: external-public
servers:
- url: https://apiv2.scouting.victorrobotics.org
tags:
- name: Events
description: >
These endpoints return information about events, such as attending teams
or match schedules.
All data is sourced directly from FIRST's FRC Events API.
- name: Scouting
description: >
These endpoints relate to collecting scouting data, including the
questions asked and the submission interface.
- name: Analysis
description: >
These endpoints return the various forms of analysis generated from both
scouting submissions and metadata from the FRC Events API.
paths:
/seasons:
get:
summary: Seasons
description: >
Lists the competition seasons supported by this API.
Seasons prior to 2024 (Crescendo) will not be included.
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Season"
"401":
$ref: "#/components/responses/Unauthorized"
/seasons/{year}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/Season"
/events/{year}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: teamNumber
in: query
schema:
$ref: "#/components/schemas/teamNumber"
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Event"
/events/{year}/{eventCode}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/Event"
/events/{year}/{eventCode}/matches:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Match"
/events/{year}/{eventCode}/teams:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Team"
"304":
$ref: "#/components/responses/NotModified"
"401":
$ref: "#/components/responses/Unauthorized"
post:
responses:
"200":
description: description
/teams:
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Team"
/teams/{teamNumber}:
get:
tags: [ Events ]
responses:
"200":
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/Team"
/questions/{year}/pit:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
get:
tags: [ Scouting ]
responses:
"200":
description: description
/questions/{year}/drive-team:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
get:
tags: [ Scouting ]
responses:
"200":
description: description
/questions/{year}/match:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
get:
tags: [ Scouting ]
responses:
"200":
description: description
/submissions/{year}/{eventCode}/match/{tournamentLevel}/{matchNumber}/{teamNumber}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
- name: tournamentLevel
in: path
required: true
schema:
type: string
- name: matchNumber
in: path
required: true
schema:
$ref: "#/components/schemas/matchNumber"
- name: teamNumber
in: path
required: true
schema:
$ref: "#/components/schemas/teamNumber"
post:
tags: [ Scouting ]
requestBody:
description: description
content:
application/json:
schema:
type: object
responses:
"201":
description: description
/submissions/{year}/{eventCode}/pit/{teamNumber}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
- name: teamNumber
in: path
required: true
schema:
$ref: "#/components/schemas/teamNumber"
post:
tags: [ Scouting ]
requestBody:
description: description
content:
application/json:
schema:
type: object
responses:
"201":
description: description
/submissions/{year}/{eventCode}/drive-team/{tournamentLevel}/{matchNumber}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
- name: tournamentLevel
in: path
required: true
schema:
type: string
- name: matchNumber
in: path
required: true
schema:
$ref: "#/components/schemas/matchNumber"
post:
tags: [ Scouting ]
requestBody:
description: description
content:
application/json:
schema:
type: object
responses:
"201":
description: description
/analysis/{year}/{eventCode}/teams:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
get:
tags: [ Analysis ]
responses:
"200":
description: description
/analysis/{year}/{eventCode}/teams/{teamNumber}:
parameters:
- name: year
in: path
required: true
schema:
$ref: "#/components/schemas/year"
- name: eventCode
in: path
required: true
schema:
$ref: "#/components/schemas/eventCode"
- name: teamNumber
in: path
required: true
schema:
$ref: "#/components/schemas/teamNumber"
get:
tags: [ Analysis ]
responses:
"200":
description: description
components:
responses:
NotModified:
description: >
The requested resource has not been modified since previously fetched,
and the cached value should be used.
BadRequest:
description: >
One or more inputs (such as path/query parameters or request body)
were malformed and prevented the server from parsing the request.
content:
application/json:
schema:
$ref: "#/components/schemas/ApiError"
example:
status: Bad Request
message: Request contains malformed body/parameter
Unauthorized:
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/ApiError"
example:
status: Unauthorized
message: Request is missing authorization credentials
Forbidden:
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/ApiError"
example:
status: 403
message: Forbidden
NotFound:
description: description
content:
application/json:
schema:
$ref: "#/components/schemas/ApiError"
example:
status: 404
message: Not Found
schemas:
ApiError:
type: object
properties:
message:
type: string
description: A human-readable error message
status:
type: string
description: An HTTP error response name
required:
- message
- status
Season:
type: object
properties:
year:
$ref: "#/components/schemas/year"
name:
type: string
teamCount:
type: integer
minimum: 0
required:
- year
- name
- teamCount
example:
year: 2024
name: Crescendo
teamCount: 8000
Event:
type: object
properties:
name:
type: string
year:
$ref: "#/components/schemas/year"
code:
$ref: "#/components/schemas/eventCode"
location:
type: string
address:
type: string
city:
type: string
province:
type: string
country:
type: string
startDate:
type: string
format: date
endDate:
type: string
format: date
website:
type: string
format: uri
webcasts:
type: array
items:
type: string
format: uri
required:
- name
- year
- code
- location
- address
- city
- province
- country
- startDate
- endDate
example:
name: Greater Pittsburgh Regional
year: 2024
code: PACA
location: David L. Lawrence Convention Center
address: 1000 Fort Duquesne Blvd
city: Pittsburgh
province: PA
country: USA
startDate: 2024-02-28
endDate: 2024-03-02
website: https://www.firstwcpa.org/
webcasts:
- https://twitch.tv/firstinspires9
Match:
type: object
properties:
name:
type: string
year:
type: integer
eventCode:
$ref: "#/components/schemas/eventCode"
level:
$ref: "#/components/schemas/tournamentLevel"
number:
$ref: "#/components/schemas/matchNumber"
time:
$ref: "#/components/schemas/localdatetime"
redAlliance:
type: array
items:
$ref: "#/components/schemas/teamNumber"
blueAlliance:
type: array
items:
$ref: "#/components/schemas/teamNumber"
redScore:
$ref: "#/components/schemas/matchScore"
blueScore:
$ref: "#/components/schemas/matchScore"
video:
type: string
format: uri
required:
- name
- year
- eventCode
- level
- number
- time
- redAlliance
- blueAlliance
example:
name: Qualification 1
key: 2024PACA_qual1
time: 2024-03-01T09:03:16
redAlliance:
- 1126
- 9475
- 2172
blueAlliance:
- 8393
- 695
- 3201
redScore: 26
blueScore: 28
Team:
type: object
properties:
number:
$ref: "#/components/schemas/teamNumber"
name:
type: string
website:
type: string
format: uri
city:
type: string
province:
type: string
country:
type: string
rookieYear:
type: integer
minimum: 1992
maximum: 2024
example:
number: 1559
name: Devil Tech
website: https://victorrobotics.org
city: Victor
province: NY
country: USA
rookieYear: 2005
tournamentLevel:
type: string
enum:
- practice
- qualification
- playoff
matchNumber:
type: integer
minimum: 1
matchScore:
type: integer
minimum: 0
teamNumber:
type: integer
minimum: 0
maximum: 99999
example: 1559
eventCode:
type: string
pattern: ^20\d{2}[A-Za-z\d]+$
example: PACA
localdatetime:
type: string
description: Local date and time in the event's timezone
pattern: ^(\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-2]\d|3[0-1])T([0-1][0-9]|2[0-3]):([0-5]\d):([0-5]\d)$
year:
type: integer
minimum: 2023
maximum: 2024
example: 2024