ftc_events_client 0.3.0 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/apispec.json ADDED
@@ -0,0 +1,4645 @@
1
+ {
2
+ "openapi": "3.0.1",
3
+ "info": {
4
+ "title": "FTC Events API",
5
+ "description": "FTC Events API is a service to return relevant information about the _FIRST_ Tech Challenge (FTC). Information is made available from events operating around the world\n\nInformation is currently made available after the conclusion of the tournament. The API will provide data as soon as it has synced, and we do not add any artificial delays.\n\n## Documentation Notes\n\n### Timezones\n\nAll times are listed in the local time to the event venue. HTTP-date values will show their timezone.\n\n### Query Parameters\n\nIf you specify a parameter, but no value for that parameter, it will be ignored. For example, if you request `URL?teamNumber=` the `teamNumber` parameter would be ignored.\n\nFor all APIs that accept a query string in addition to the base URI, the order of parameters do not matter, but the name shown in the documentation must match exactly, as does the associated value format as described in details.\n\nFor response codes that are not HTTP 200 (OK), the documentation will show a body message that represents a possible response value. While the \"title\" of the HTTP Status Code will match those shown in the response codes documentation section exactly, the body of the response will be a more detailed explanation of why that status code is being returned and may not always be exactly as shown in the examples.\n\n### Experimenting with the API\n\nThis documentation is rendered at both [api-docs](https://ftc-events.firstinspires.org/api-docs) and [try-it-out](https://ftc-events.firstinspires.org/try-it-out).\n\n[api-docs](https://ftc-events.firstinspires.org/api-docs) has a three panel, easy to read layout, while [try-it-out](https://ftc-events.firstinspires.org/try-it-out)\nhas a feature that allows you try out endpoints from within the page.\n\nAdditionally, the Open API Json is availabe at [Open API](https://ftc-events.firstinspires.org/swagger/v2.0/swagger.json). This can be imported into a tool\nsuch as [Postman](https://www.postman.com) for experimentation as well.\n\n\n### Last-Modified, FMS-OnlyModifiedSince, and If-Modified-Since Headers\nThe FTC Events API utilizes the `Last-Modified` and `If-Modified-Since` Headers to communicate with consumers regarding the age of the data they are requesting. With a couple of exceptions, all calls will return a `Last-Modified` Header set with the time at which the data at that endpoint was last modified. The Header will always be set in the HTTP-date format, as described in the HTTP Protocol. There are two exceptions: the `Last-Modified` Header is not set if the endpoint returns no results (such as a request for a schedule with no matches).\n\nConsumers should keep track of the `Last-Modified` Header, and return it on subsequent calls to the same endpoint as the If-Modified-Since. The server will recognize this request, and will only return a result if the data has been modified since the last request. If no changes have been made, an HTTP 304 will be returned. If data has been modified, ALL data on that call will be returned (for \"only modified\" data, see below).\n\nThe FTC Events API also allows a custom header used to filter the return data to a specific subset. This is done by specifying a `FMS-OnlyModifiedSince` header with each call. As with the `If-Modified-Since` header, consumers should keep track of the Last-Modified Header, and return it on subsequent calls to the same endpoint as the `FMS-OnlyModifiedSince` Header. The server will recognize this request, and will only return a result if the data has been modified since the last request, and, if returned, the data will only be those portions modified since the included date. If no changes, have been made, an HTTP 304 will be returned. Using this method, the server and consumer save processing time by only receiving modified data that is in need of update on the consumer side.\n\nIf the Headers are improperly passed (such as the wrong Day of Week for the matching date, or a date in the future), the endpoint will simply ignore the Header and return all results. If both headers are specified, the request will be denied.\n\n## Response Codes\n\nThe FTC Events API HTTP Status Codes correspond with the [common codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), but occasionally with different \"titles\". The \"title\" used by the API is shown next to each of the below possible response HTTP Status Codes. Throughout the documentation, Apiary may automatically show the common \"title\" in example returns (like \"Not Found\" for 404) but on the production server, the \"title\" will instead match those listed below.\n\n### HTTP 200 - \"OK\"\nThe request has succeeded. An entity corresponding to the requested resource is sent in the response. This will be returned as the HTTP Status Code for all request that succeed, even if the body is empty (such as an event that has no rankings, but with a valid season and event code were used)\n\n### HTTP 304 - \"Not Modified\"\nWhen utilizing a Header that allows filtered data returns, such as `If-Modified-Since`, this response indicates that no data meets the request.\n\n### HTTP 400 - \"Invalid Season Requested\"/\"Malformed Parameter Format In Request\"/\"Missing Parameter In Request\"/\"Invalid API Version Requested\":\nThe request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications. Specifically for this API, a 400 response indicates that the requested URI matches with a valid API, but one or more required parameter was malformed or invalid. Examples include an event code that is too short or team number that contains a letter.\n\n### HTTP 401 - \"Unauthorized\"\nAll requests against the API require authentication via a valid user token. Failing to provide one, or providing an invalid one, will warrant a 401 response. The client MAY repeat the request with a suitable Authorization header field.\n\n### HTTP 404 - \"Invalid Event Requested\"\nEven though the 404 code usually indicates any not found status, a 404 will only be issued in this API when an event cannot be found for the requested season and event code. If the request didn't match a valid API or there were malformed parameters, the response would not receive a 404 but rather a 400 or 501. If this HTTP code is received, the season was a valid season and the event code matched the acceptable style of an event code, but there were no records of an event matching the combination of that season and event code. For example, HTTP 404 would be issued when the event had a different code in the requested season (the codes can change year to year based on event location).\n\n### HTTP 500 - \"Internal Server Error\"\nThe server encountered an unexpected condition which prevented it from fulfilling the request. This is a code sent directly by the server, and has no special alternate definition specific to this API.\n\n### HTTP 501 - \"Request Did Not Match Any Current API Pattern\"\nThe server does not support the functionality required to fulfill the request. Specifically, the request pattern did not match any of the possible APIs, and thus processing was discontinued. This code is also issued when too many optional parameters were included in a single request and fulfilling it would make the result confusing or misleading. Each API will specify which parameters or combination of parameters can be used at the same time.\n\n### HTTP 503 - \"Service Unavailable\"\nThe server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay MAY be indicated in a `Retry-After` header. This code will not always appear, sometimes the server may outright refuse the connection instead. This is a code sent directly by the server, and has no special alternate definition specific to this API.\n\n## Authorization\nIn order to make calls against the FTC Events API, you must include an HTTP Header called `Authorization` with the value set as specified below. If a request is made without this header, processing stops and an HTTP 401 is issued. All `Authorization` headers follow the same format:\n\n```\nAuthorization: Basic 000000000000000000000000000000000000000000000000000000000000\n```\n\nWhere the Zeros are replaced by your Token. The Token can be formed by taking your username and your AuthorizationKey and adding a colon. For example, if your username is `sampleuser` and your AuthorizationKey is `7eaa6338-a097-4221-ac04-b6120fcc4d49` you would have this string:\n\n```\nsampleuser:7eaa6338-a097-4221-ac04-b6120fcc4d49\n```\n\nThis string must then be encoded using Base64 Encoded to form the Token, which will be the same length as the example above, but include letters and numbers. For our example, we would have:\n\n```\nc2FtcGxldXNlcjo3ZWFhNjMzOC1hMDk3LTQyMjEtYWMwNC1iNjEyMGZjYzRkNDk=\n```\n\nMost API client libraries can handle computing the authorization header using a username and password for you\n\nNOTICE: Publicly distributing an application, code snippet, etc, that has your username and token in it, encoded or not, WILL result in your token being blocked from the API. Each user should apply for their own token.\n\nIf you wish to acquire a token for your development, you may do so by requesting a token through our automated system on this website.\n",
6
+ "version": "v2.0"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "https://localhost:5001"
11
+ }
12
+ ],
13
+ "paths": {
14
+ "/v2.0/{season}/advancement/{eventCode}": {
15
+ "get": {
16
+ "tags": [
17
+ "Advancement"
18
+ ],
19
+ "summary": "Event Advancement",
20
+ "description": "The event advancement endpoint returns details about teams advancing from a particular event in a particular season.",
21
+ "parameters": [
22
+ {
23
+ "name": "season",
24
+ "in": "path",
25
+ "description": "Numeric year of the event from which the event advancement is requested. Must be 4 digits > 2022",
26
+ "required": true,
27
+ "schema": {
28
+ "type": "integer",
29
+ "format": "int32"
30
+ }
31
+ },
32
+ {
33
+ "name": "eventCode",
34
+ "in": "path",
35
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the advancement results are requested. Must be at least 3 characters.",
36
+ "required": true,
37
+ "schema": {
38
+ "type": "string"
39
+ }
40
+ },
41
+ {
42
+ "name": "excludeSkipped",
43
+ "in": "query",
44
+ "description": "`excludeSkipped=true` to exclude skipped advancement slots. Slots are skipped if no team meets the criteria, the team has already advanced, or the team was ineligible.",
45
+ "schema": {
46
+ "type": "boolean"
47
+ }
48
+ }
49
+ ],
50
+ "responses": {
51
+ "200": {
52
+ "description": "Success",
53
+ "content": {
54
+ "application/json": {
55
+ "schema": {
56
+ "$ref": "#/components/schemas/AdvancementModel"
57
+ }
58
+ }
59
+ }
60
+ },
61
+ "401": {
62
+ "description": "Unauthorized"
63
+ }
64
+ },
65
+ "security": [
66
+ {
67
+ "basic": [ ]
68
+ }
69
+ ]
70
+ }
71
+ },
72
+ "/v2.0/{season}/advancement/{eventCode}/source": {
73
+ "get": {
74
+ "tags": [
75
+ "Advancement"
76
+ ],
77
+ "summary": "Advancement Source",
78
+ "description": "The advancement source API returns details about where teams advanced to a specified event from.",
79
+ "parameters": [
80
+ {
81
+ "name": "season",
82
+ "in": "path",
83
+ "description": "Numeric year of the event from which the advancement is requested. Must be 4 digits >= 2022",
84
+ "required": true,
85
+ "schema": {
86
+ "type": "integer",
87
+ "format": "int32"
88
+ }
89
+ },
90
+ {
91
+ "name": "eventCode",
92
+ "in": "path",
93
+ "description": "Case insensitive alphanumeric `eventCode` of the event for which teams advanced to. Must be at least 3 characters.",
94
+ "required": true,
95
+ "schema": {
96
+ "type": "string"
97
+ }
98
+ }
99
+ ],
100
+ "responses": {
101
+ "200": {
102
+ "description": "Success",
103
+ "content": {
104
+ "application/json": {
105
+ "schema": {
106
+ "type": "array",
107
+ "items": {
108
+ "$ref": "#/components/schemas/AdvancementSourceModel"
109
+ }
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "401": {
115
+ "description": "Unauthorized"
116
+ }
117
+ },
118
+ "security": [
119
+ {
120
+ "basic": [ ]
121
+ }
122
+ ]
123
+ }
124
+ },
125
+ "/v2.0/{season}/leagues": {
126
+ "get": {
127
+ "tags": [
128
+ "Leagues"
129
+ ],
130
+ "summary": "League Listings",
131
+ "description": "The league listings API returns all FTC leagues in a particular season. You can specify a `regionCode` to filter to leagues within a particular region. To filter to a specific league, supply both a `regionCode` and a `leagueCode`. The returned objects have a `parentLeagueCode` field, which indicates the league is a child league if not null and provides the code of the parent league. The `regionCode` of the parent league will always match the child.",
132
+ "parameters": [
133
+ {
134
+ "name": "season",
135
+ "in": "path",
136
+ "description": "Numeric year from which the league listings are requested. Must be 4 digits",
137
+ "required": true,
138
+ "schema": {
139
+ "type": "integer",
140
+ "format": "int32"
141
+ }
142
+ },
143
+ {
144
+ "name": "regionCode",
145
+ "in": "query",
146
+ "description": "Case-sensitive alphanumeric `regionCode` of a region to filter for.",
147
+ "schema": {
148
+ "type": "string"
149
+ }
150
+ },
151
+ {
152
+ "name": "leagueCode",
153
+ "in": "query",
154
+ "description": "Case-sensitive alphanumeric `leagueCode` of the league within the specified region to query.",
155
+ "schema": {
156
+ "type": "string"
157
+ }
158
+ }
159
+ ],
160
+ "responses": {
161
+ "200": {
162
+ "description": "Success",
163
+ "content": {
164
+ "application/json": {
165
+ "schema": {
166
+ "$ref": "#/components/schemas/SeasonLeagueListingsModel_Version2"
167
+ }
168
+ }
169
+ }
170
+ },
171
+ "401": {
172
+ "description": "Unauthorized"
173
+ }
174
+ },
175
+ "security": [
176
+ {
177
+ "basic": [ ]
178
+ }
179
+ ]
180
+ }
181
+ },
182
+ "/v2.0/{season}/leagues/members/{regionCode}/{leagueCode}": {
183
+ "get": {
184
+ "tags": [
185
+ "Leagues"
186
+ ],
187
+ "summary": "League Membership",
188
+ "description": "The league membership API returns the list of team numbers for the teams that are members of a particular league. Leagues are specified by a `regionCode` in combination with a `leagueCode`.",
189
+ "parameters": [
190
+ {
191
+ "name": "season",
192
+ "in": "path",
193
+ "description": "Numeric year. Must be 4 digits",
194
+ "required": true,
195
+ "schema": {
196
+ "type": "integer",
197
+ "format": "int32"
198
+ }
199
+ },
200
+ {
201
+ "name": "regionCode",
202
+ "in": "path",
203
+ "description": "Case sensitive alphanumeric `regionCode` of the region the league belongs to.",
204
+ "required": true,
205
+ "schema": {
206
+ "type": "string"
207
+ }
208
+ },
209
+ {
210
+ "name": "leagueCode",
211
+ "in": "path",
212
+ "description": "Case sensitive alphanumeric `leagueCode` of the league.",
213
+ "required": true,
214
+ "schema": {
215
+ "type": "string"
216
+ }
217
+ }
218
+ ],
219
+ "responses": {
220
+ "200": {
221
+ "description": "Success",
222
+ "content": {
223
+ "application/json": {
224
+ "schema": {
225
+ "$ref": "#/components/schemas/LeagueMemberListModel"
226
+ }
227
+ }
228
+ }
229
+ },
230
+ "401": {
231
+ "description": "Unauthorized"
232
+ }
233
+ },
234
+ "security": [
235
+ {
236
+ "basic": [ ]
237
+ }
238
+ ]
239
+ }
240
+ },
241
+ "/v2.0/{season}/leagues/rankings/{regionCode}/{leagueCode}": {
242
+ "get": {
243
+ "tags": [
244
+ "Leagues"
245
+ ],
246
+ "summary": "League Rankings",
247
+ "description": "The league rankings API returns team ranking detail from a particular league in a particular season. League rankings are only the cumulative rankings from League Meets - they do not include performance at the League Tournament. To get League Tournament Rankings, use the Event Rankings endpoint.",
248
+ "parameters": [
249
+ {
250
+ "name": "season",
251
+ "in": "path",
252
+ "description": "Numeric year. Must be 4 digits",
253
+ "required": true,
254
+ "schema": {
255
+ "type": "integer",
256
+ "format": "int32"
257
+ }
258
+ },
259
+ {
260
+ "name": "regionCode",
261
+ "in": "path",
262
+ "description": "Case sensitive alphanumeric `regionCode` of the region the league belongs to.",
263
+ "required": true,
264
+ "schema": {
265
+ "type": "string"
266
+ }
267
+ },
268
+ {
269
+ "name": "leagueCode",
270
+ "in": "path",
271
+ "description": "Case sensitive alphanumeric `leagueCode` of the league.",
272
+ "required": true,
273
+ "schema": {
274
+ "type": "string"
275
+ }
276
+ }
277
+ ],
278
+ "responses": {
279
+ "200": {
280
+ "description": "Success",
281
+ "content": {
282
+ "application/json": {
283
+ "schema": {
284
+ "$ref": "#/components/schemas/EventRankingsModel"
285
+ }
286
+ }
287
+ }
288
+ },
289
+ "401": {
290
+ "description": "Unauthorized"
291
+ }
292
+ },
293
+ "security": [
294
+ {
295
+ "basic": [ ]
296
+ }
297
+ ]
298
+ }
299
+ },
300
+ "/v2.0": {
301
+ "get": {
302
+ "tags": [
303
+ "General"
304
+ ],
305
+ "summary": "API Index",
306
+ "description": "Root level call with no parameters.",
307
+ "responses": {
308
+ "200": {
309
+ "description": "Success",
310
+ "content": {
311
+ "application/json": {
312
+ "schema": {
313
+ "$ref": "#/components/schemas/ApiIndexModel"
314
+ }
315
+ }
316
+ }
317
+ }
318
+ }
319
+ }
320
+ },
321
+ "/v2.0/{season}": {
322
+ "get": {
323
+ "tags": [
324
+ "Season Data"
325
+ ],
326
+ "summary": "Season Summary",
327
+ "description": "The season summary API returns a high level glance of a particular FTC season.",
328
+ "parameters": [
329
+ {
330
+ "name": "season",
331
+ "in": "path",
332
+ "description": "Numeric year of the event from which the season summary is requested. Must be 4 digits.",
333
+ "required": true,
334
+ "schema": {
335
+ "type": "integer",
336
+ "format": "int32"
337
+ }
338
+ }
339
+ ],
340
+ "responses": {
341
+ "200": {
342
+ "description": "Success",
343
+ "content": {
344
+ "application/json": {
345
+ "schema": {
346
+ "$ref": "#/components/schemas/SeasonSummaryModel_Version2"
347
+ }
348
+ }
349
+ }
350
+ },
351
+ "401": {
352
+ "description": "Unauthorized"
353
+ }
354
+ },
355
+ "security": [
356
+ {
357
+ "basic": [ ]
358
+ }
359
+ ]
360
+ }
361
+ },
362
+ "/v2.0/{season}/events": {
363
+ "get": {
364
+ "tags": [
365
+ "Season Data"
366
+ ],
367
+ "summary": "Event Listings",
368
+ "description": "The event listings API returns all FTC official regional events in a particular season. You can specify an `eventCode` if you would only like data about one specific event. If you specify an `eventCode` you cannot specify any other optional parameters. Alternately, you can specify a `teamNumber` to retrieve only the listings of events being attended by the particular team. If you specify a `teamNumber` you cannot specify an `eventCode`.\n\nThe response for event listings contains a special field called divisionCode. For example, the FIRST Championship contains two Divisions. As an example of a response, the event listings for a Division will have a divisionCode that matches the FIRST Championship event code (as they are divisions of that event). This allows you to see the full structure of events, and how they relate to each other.",
369
+ "parameters": [
370
+ {
371
+ "name": "season",
372
+ "in": "path",
373
+ "description": "Numeric year from which the event listings are requested. Must be 4 digits",
374
+ "required": true,
375
+ "schema": {
376
+ "type": "integer",
377
+ "format": "int32"
378
+ }
379
+ },
380
+ {
381
+ "name": "eventCode",
382
+ "in": "query",
383
+ "description": "Case insensitive alphanumeric `eventCode` of the event about which details are requested.",
384
+ "schema": {
385
+ "type": "string",
386
+ "default": "0"
387
+ }
388
+ },
389
+ {
390
+ "name": "teamNumber",
391
+ "in": "query",
392
+ "description": "Numeric `teamNumber` of the team from which the attending event listings are requested.",
393
+ "schema": {
394
+ "type": "integer",
395
+ "format": "int32",
396
+ "default": 0
397
+ }
398
+ }
399
+ ],
400
+ "responses": {
401
+ "200": {
402
+ "description": "Success",
403
+ "content": {
404
+ "application/json": {
405
+ "schema": {
406
+ "$ref": "#/components/schemas/SeasonEventListingsModel_Version2"
407
+ }
408
+ }
409
+ }
410
+ },
411
+ "401": {
412
+ "description": "Unauthorized"
413
+ }
414
+ },
415
+ "security": [
416
+ {
417
+ "basic": [ ]
418
+ }
419
+ ]
420
+ }
421
+ },
422
+ "/v2.0/{season}/teams": {
423
+ "get": {
424
+ "tags": [
425
+ "Season Data"
426
+ ],
427
+ "summary": "Team Listings",
428
+ "description": "The team listings API returns all FTC official teams in a particular season. If specified, the `teamNumber` parameter will return only one result with the details of the requested `teamNumber`. Alternately, the `eventCode` parameter allows sorting of the team list to only those teams attending a particular event in the particular season. If you specify a teamNumber parameter, you cannot additionally specify an `eventCode` and/or `state` in the same request, or you will receive an HTTP 501. If you specify the `state` parameter, it should be the full legal name of the US state or international state/prov, such as New Hampshire or Ontario. Values on this endpoint are \"pass through\" values from the TIMS registration system. As such, if the team does not specify a value for a field, it may be presented in the API as null.",
429
+ "parameters": [
430
+ {
431
+ "name": "season",
432
+ "in": "path",
433
+ "description": "Numeric year from which the team listings are requested. Must be 4 digits.",
434
+ "required": true,
435
+ "schema": {
436
+ "type": "integer",
437
+ "format": "int32"
438
+ }
439
+ },
440
+ {
441
+ "name": "teamNumber",
442
+ "in": "query",
443
+ "description": "Numeric `teamNumber` of the team about which information is requested. Must be 1 to 5 digits.",
444
+ "schema": {
445
+ "type": "integer",
446
+ "format": "int32",
447
+ "default": 0
448
+ }
449
+ },
450
+ {
451
+ "name": "eventCode",
452
+ "in": "query",
453
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which details are requested.",
454
+ "schema": {
455
+ "type": "string",
456
+ "default": "0"
457
+ }
458
+ },
459
+ {
460
+ "name": "state",
461
+ "in": "query",
462
+ "description": "Full legal name of the US state or international state/prov",
463
+ "schema": {
464
+ "type": "string",
465
+ "default": ""
466
+ }
467
+ },
468
+ {
469
+ "name": "page",
470
+ "in": "query",
471
+ "description": "Numeric page of results to return.",
472
+ "schema": {
473
+ "type": "integer",
474
+ "format": "int32",
475
+ "default": 1
476
+ }
477
+ }
478
+ ],
479
+ "responses": {
480
+ "200": {
481
+ "description": "Success",
482
+ "content": {
483
+ "application/json": {
484
+ "schema": {
485
+ "$ref": "#/components/schemas/SeasonTeamListingsModel_Version2"
486
+ }
487
+ }
488
+ }
489
+ },
490
+ "401": {
491
+ "description": "Unauthorized"
492
+ }
493
+ },
494
+ "security": [
495
+ {
496
+ "basic": [ ]
497
+ }
498
+ ]
499
+ }
500
+ },
501
+ "/v2.0/{season}/schedule/{eventCode}/{tournamentLevel}/hybrid": {
502
+ "get": {
503
+ "tags": [
504
+ "Schedule"
505
+ ],
506
+ "summary": "Hybrid Schedule",
507
+ "description": "The schedule API returns the match schedule for the desired tournament level of a particular event in a particular season in the hybrid format. When a match has been played, the match result related details will be filled. When a match has not yet happened, match result related fields will be null. All parameters, except start and end, are required for the hybrid schedule.",
508
+ "parameters": [
509
+ {
510
+ "name": "season",
511
+ "in": "path",
512
+ "description": "Numeric year of the event from which the hybrid schedule is requested. Must be 4 digits",
513
+ "required": true,
514
+ "schema": {
515
+ "type": "integer",
516
+ "format": "int32"
517
+ }
518
+ },
519
+ {
520
+ "name": "eventCode",
521
+ "in": "path",
522
+ "description": "Case insensitive alphanumeric eventCode of the event from which the hybrid schedule is requested. Must be at least 3 characters.",
523
+ "required": true,
524
+ "schema": {
525
+ "type": "string"
526
+ }
527
+ },
528
+ {
529
+ "name": "tournamentLevel",
530
+ "in": "path",
531
+ "description": "Required tournamentLevel of desired score details.",
532
+ "required": true,
533
+ "schema": {
534
+ "enum": [
535
+ "qual",
536
+ "playoff"
537
+ ],
538
+ "type": "string"
539
+ }
540
+ },
541
+ {
542
+ "name": "start",
543
+ "in": "query",
544
+ "description": "`start` match number for subset of results to return (inclusive).",
545
+ "schema": {
546
+ "type": "integer",
547
+ "format": "int32",
548
+ "default": 0
549
+ }
550
+ },
551
+ {
552
+ "name": "end",
553
+ "in": "query",
554
+ "description": "`end` match number for subset of results to return (inclusive).",
555
+ "schema": {
556
+ "type": "integer",
557
+ "format": "int32",
558
+ "default": 999
559
+ }
560
+ }
561
+ ],
562
+ "responses": {
563
+ "200": {
564
+ "description": "Success",
565
+ "content": {
566
+ "application/json": {
567
+ "schema": {
568
+ "$ref": "#/components/schemas/EventScheduleHybridModel_Version2"
569
+ }
570
+ }
571
+ }
572
+ },
573
+ "401": {
574
+ "description": "Unauthorized"
575
+ }
576
+ },
577
+ "security": [
578
+ {
579
+ "basic": [ ]
580
+ }
581
+ ]
582
+ }
583
+ },
584
+ "/v2.0/{season}/schedule/{eventCode}": {
585
+ "get": {
586
+ "tags": [
587
+ "Schedule"
588
+ ],
589
+ "summary": "Event Schedule",
590
+ "description": "The schedule API returns the match schedule for the desired tournament level of a particular event in a particular season. You must also specify a `tournamentLevel` from which to return the results. Alternately, you can specify a `teamNumber` to filter the results to only those in which a particular team is participating. There is no validation that the `teamNumber` you request is actually competing at the event, if they are not, the response will be empty. You can also specify the parameters together, but cannot make a request without at least one of the two.",
591
+ "parameters": [
592
+ {
593
+ "name": "season",
594
+ "in": "path",
595
+ "description": "Numeric year of the event from which the schedule is requested. Must be 4 digits",
596
+ "required": true,
597
+ "schema": {
598
+ "type": "integer",
599
+ "format": "int32"
600
+ }
601
+ },
602
+ {
603
+ "name": "eventCode",
604
+ "in": "path",
605
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the schedule are requested. Must be at least 3 characters.",
606
+ "required": true,
607
+ "schema": {
608
+ "type": "string"
609
+ }
610
+ },
611
+ {
612
+ "name": "tournamentLevel",
613
+ "in": "query",
614
+ "description": "Required tournamentLevel of desired score details.",
615
+ "schema": {
616
+ "enum": [
617
+ "qual",
618
+ "playoff"
619
+ ],
620
+ "type": "string",
621
+ "default": "0"
622
+ }
623
+ },
624
+ {
625
+ "name": "teamNumber",
626
+ "in": "query",
627
+ "description": "`teamNumber` to search for within the schedule. Only returns matches in which the requested team participated.",
628
+ "schema": {
629
+ "type": "integer",
630
+ "format": "int32",
631
+ "default": 0
632
+ }
633
+ },
634
+ {
635
+ "name": "start",
636
+ "in": "query",
637
+ "description": "`start` match number for subset of results to return (inclusive).",
638
+ "schema": {
639
+ "type": "integer",
640
+ "format": "int32",
641
+ "default": 0
642
+ }
643
+ },
644
+ {
645
+ "name": "end",
646
+ "in": "query",
647
+ "description": "`end` match number for subset of results to return (inclusive).",
648
+ "schema": {
649
+ "type": "integer",
650
+ "format": "int32",
651
+ "default": 999
652
+ }
653
+ }
654
+ ],
655
+ "responses": {
656
+ "200": {
657
+ "description": "Success",
658
+ "content": {
659
+ "application/json": {
660
+ "schema": {
661
+ "$ref": "#/components/schemas/EventScheduleModel_Version2"
662
+ }
663
+ }
664
+ }
665
+ },
666
+ "401": {
667
+ "description": "Unauthorized"
668
+ }
669
+ },
670
+ "security": [
671
+ {
672
+ "basic": [ ]
673
+ }
674
+ ]
675
+ }
676
+ },
677
+ "/v2.0/{season}/rankings/{eventCode}": {
678
+ "get": {
679
+ "tags": [
680
+ "Rankings"
681
+ ],
682
+ "summary": "Event Rankings",
683
+ "description": "The rankings API returns team ranking detail from a particular event in a particular season. Optionally, the `top` parameter can be added to the query string to request a subset of the rankings based on the highest ranked teams at the time of the request. Alternately, you can specify the `teamNumber` parameter to retrieve the ranking on one specific team. You cannot specify both a `top` and `teamNumber` in the same call.",
684
+ "parameters": [
685
+ {
686
+ "name": "season",
687
+ "in": "path",
688
+ "description": "Numeric year of the event from which the rankings are requested. Must be 4 digits",
689
+ "required": true,
690
+ "schema": {
691
+ "type": "integer",
692
+ "format": "int32"
693
+ }
694
+ },
695
+ {
696
+ "name": "eventCode",
697
+ "in": "path",
698
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the rankings are requested. Must be at least 3 characters.",
699
+ "required": true,
700
+ "schema": {
701
+ "type": "string"
702
+ }
703
+ },
704
+ {
705
+ "name": "teamNumber",
706
+ "in": "query",
707
+ "description": "Team number of the team whose ranking is requested.",
708
+ "schema": {
709
+ "type": "integer",
710
+ "format": "int32",
711
+ "default": 0
712
+ }
713
+ },
714
+ {
715
+ "name": "top",
716
+ "in": "query",
717
+ "description": "number of requested `top` ranked teams to return in result.",
718
+ "schema": {
719
+ "type": "integer",
720
+ "format": "int32",
721
+ "default": 0
722
+ }
723
+ }
724
+ ],
725
+ "responses": {
726
+ "200": {
727
+ "description": "Success",
728
+ "content": {
729
+ "application/json": {
730
+ "schema": {
731
+ "$ref": "#/components/schemas/EventRankingsModel"
732
+ }
733
+ }
734
+ }
735
+ },
736
+ "401": {
737
+ "description": "Unauthorized"
738
+ }
739
+ },
740
+ "security": [
741
+ {
742
+ "basic": [ ]
743
+ }
744
+ ]
745
+ }
746
+ },
747
+ "/v2.0/{season}/alliances/{eventCode}": {
748
+ "get": {
749
+ "tags": [
750
+ "Alliance Selection"
751
+ ],
752
+ "summary": "Event Alliances",
753
+ "description": "The alliances API returns details about alliance selection at a particular event in a particular season.",
754
+ "parameters": [
755
+ {
756
+ "name": "season",
757
+ "in": "path",
758
+ "description": "Numeric year of the event from which the event alliances are requested. Must be 4 digits.",
759
+ "required": true,
760
+ "schema": {
761
+ "type": "integer",
762
+ "format": "int32"
763
+ }
764
+ },
765
+ {
766
+ "name": "eventCode",
767
+ "in": "path",
768
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the alliance selection results are requested. Must be at least 3 characters.",
769
+ "required": true,
770
+ "schema": {
771
+ "type": "string"
772
+ }
773
+ }
774
+ ],
775
+ "responses": {
776
+ "200": {
777
+ "description": "Success",
778
+ "content": {
779
+ "application/json": {
780
+ "schema": {
781
+ "$ref": "#/components/schemas/AllianceSelectionModel_Version2"
782
+ }
783
+ }
784
+ }
785
+ },
786
+ "401": {
787
+ "description": "Unauthorized"
788
+ }
789
+ },
790
+ "security": [
791
+ {
792
+ "basic": [ ]
793
+ }
794
+ ]
795
+ }
796
+ },
797
+ "/v2.0/{season}/alliances/{eventCode}/selection": {
798
+ "get": {
799
+ "tags": [
800
+ "Alliance Selection"
801
+ ],
802
+ "summary": "Alliance Selection Details",
803
+ "description": "This returns the in-order details of each step through the alliance selection process for a particular event.",
804
+ "parameters": [
805
+ {
806
+ "name": "season",
807
+ "in": "path",
808
+ "description": "Numeric year of the event from which the event alliances are requested. Must be 4 digits.",
809
+ "required": true,
810
+ "schema": {
811
+ "type": "integer",
812
+ "format": "int32"
813
+ }
814
+ },
815
+ {
816
+ "name": "eventCode",
817
+ "in": "path",
818
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the alliance selection results are requested. Must be at least 3 characters.",
819
+ "required": true,
820
+ "schema": {
821
+ "type": "string"
822
+ }
823
+ }
824
+ ],
825
+ "responses": {
826
+ "200": {
827
+ "description": "Success",
828
+ "content": {
829
+ "application/json": {
830
+ "schema": {
831
+ "$ref": "#/components/schemas/AllianceSelectionDetailModel"
832
+ }
833
+ }
834
+ }
835
+ },
836
+ "401": {
837
+ "description": "Unauthorized"
838
+ }
839
+ },
840
+ "security": [
841
+ {
842
+ "basic": [ ]
843
+ }
844
+ ]
845
+ }
846
+ },
847
+ "/v2.0/{season}/matches/{eventCode}": {
848
+ "get": {
849
+ "tags": [
850
+ "Match Results"
851
+ ],
852
+ "summary": "Event Match Results",
853
+ "description": "The match results API returns the match results for all matches of a particular event in a particular season. Match results are only available once a match has been played, retrieving info about future matches requires the event schedule API. You cannot receive data about a match that is in progress. You can, however, request the Hybrid Schedule if you would like data about upcoming and played matches at the same time. \n\nIf you specify the `matchNumber`, `start` and/or `end` optional parameters, you must also specify a `tournamentLevel`. If you specify the `teamNumber` parameter, you cannot specify a `matchNumber` parameter. If you specify the `matchNumber`, you cannot define a start or end. \n\nNote: If you specify `start`, and it is higher than the maximum match number at the event, you will not receive any match results in the response. The same is true in reverse for the `end` parameter.",
854
+ "parameters": [
855
+ {
856
+ "name": "season",
857
+ "in": "path",
858
+ "description": "Numeric year of the event from which the match results are requested. Must be 4 digits.",
859
+ "required": true,
860
+ "schema": {
861
+ "type": "integer",
862
+ "format": "int32"
863
+ }
864
+ },
865
+ {
866
+ "name": "eventCode",
867
+ "in": "path",
868
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the results are requested. Must be at least 3 characters.",
869
+ "required": true,
870
+ "schema": {
871
+ "type": "string"
872
+ }
873
+ },
874
+ {
875
+ "name": "tournamentLevel",
876
+ "in": "query",
877
+ "description": "Required tournamentLevel of desired score details.",
878
+ "schema": {
879
+ "enum": [
880
+ "qual",
881
+ "playoff"
882
+ ],
883
+ "type": "string",
884
+ "default": "0"
885
+ }
886
+ },
887
+ {
888
+ "name": "teamNumber",
889
+ "in": "query",
890
+ "description": "`teamNumber` to search for within the results. Only returns match results in which the requested team was a participant.",
891
+ "schema": {
892
+ "type": "integer",
893
+ "format": "int32"
894
+ }
895
+ },
896
+ {
897
+ "name": "matchNumber",
898
+ "in": "query",
899
+ "description": "specific single `matchNumber` of result.",
900
+ "schema": {
901
+ "type": "integer",
902
+ "format": "int32"
903
+ }
904
+ },
905
+ {
906
+ "name": "start",
907
+ "in": "query",
908
+ "description": "`start` match number for subset of results to return.",
909
+ "schema": {
910
+ "type": "integer",
911
+ "format": "int32",
912
+ "default": 0
913
+ }
914
+ },
915
+ {
916
+ "name": "end",
917
+ "in": "query",
918
+ "description": "`end` match number for subset of results to return (inclusive).",
919
+ "schema": {
920
+ "type": "integer",
921
+ "format": "int32",
922
+ "default": 999
923
+ }
924
+ }
925
+ ],
926
+ "responses": {
927
+ "200": {
928
+ "description": "Success",
929
+ "content": {
930
+ "application/json": {
931
+ "schema": {
932
+ "$ref": "#/components/schemas/EventMatchResultsModel_Version2"
933
+ }
934
+ }
935
+ }
936
+ },
937
+ "401": {
938
+ "description": "Unauthorized"
939
+ }
940
+ },
941
+ "security": [
942
+ {
943
+ "basic": [ ]
944
+ }
945
+ ]
946
+ }
947
+ },
948
+ "/v2.0/{season}/scores/{eventCode}/{tournamentLevel}": {
949
+ "get": {
950
+ "tags": [
951
+ "Match Results"
952
+ ],
953
+ "summary": "Score Details",
954
+ "description": "The score details API returns the score detail for all matches of a particular event in a particular season and a particular tournament level. Score details are only available once a match has been played, retrieving info about future matches requires the event schedule API. You cannot receive data about a match that is in progress.",
955
+ "parameters": [
956
+ {
957
+ "name": "season",
958
+ "in": "path",
959
+ "description": "Numeric year of the event from which the match results are requested. Must be 4 digits.",
960
+ "required": true,
961
+ "schema": {
962
+ "type": "integer",
963
+ "format": "int32"
964
+ }
965
+ },
966
+ {
967
+ "name": "eventCode",
968
+ "in": "path",
969
+ "description": "Case insensitive alphanumeric eventCode of the event from which the details are requested. Must be at least 3 characters.",
970
+ "required": true,
971
+ "schema": {
972
+ "type": "string"
973
+ }
974
+ },
975
+ {
976
+ "name": "tournamentLevel",
977
+ "in": "path",
978
+ "description": "Required tournamentLevel of desired score details.",
979
+ "required": true,
980
+ "schema": {
981
+ "enum": [
982
+ "qual",
983
+ "playoff"
984
+ ],
985
+ "type": "string"
986
+ }
987
+ },
988
+ {
989
+ "name": "teamNumber",
990
+ "in": "query",
991
+ "description": "`teamNumber` to search for within the results. Only returns details in which the requested team was a participant.",
992
+ "schema": {
993
+ "type": "integer",
994
+ "format": "int32"
995
+ }
996
+ },
997
+ {
998
+ "name": "matchNumber",
999
+ "in": "query",
1000
+ "description": "specific single `matchNumber` of result.",
1001
+ "schema": {
1002
+ "type": "integer",
1003
+ "format": "int32"
1004
+ }
1005
+ },
1006
+ {
1007
+ "name": "start",
1008
+ "in": "query",
1009
+ "description": "`start` match number for subset of results to return (inclusive).",
1010
+ "schema": {
1011
+ "type": "integer",
1012
+ "format": "int32",
1013
+ "default": 0
1014
+ }
1015
+ },
1016
+ {
1017
+ "name": "end",
1018
+ "in": "query",
1019
+ "description": "`end` match number for subset of results to return (inclusive).",
1020
+ "schema": {
1021
+ "type": "integer",
1022
+ "format": "int32",
1023
+ "default": 999
1024
+ }
1025
+ }
1026
+ ],
1027
+ "responses": {
1028
+ "200": {
1029
+ "description": "Success",
1030
+ "content": {
1031
+ "application/json": {
1032
+ "schema": {
1033
+ "$ref": "#/components/schemas/MatchScoresModel"
1034
+ }
1035
+ }
1036
+ }
1037
+ },
1038
+ "401": {
1039
+ "description": "Unauthorized"
1040
+ }
1041
+ },
1042
+ "security": [
1043
+ {
1044
+ "basic": [ ]
1045
+ }
1046
+ ]
1047
+ }
1048
+ },
1049
+ "/v2.0/{season}/awards/list": {
1050
+ "get": {
1051
+ "tags": [
1052
+ "Awards"
1053
+ ],
1054
+ "summary": "Award Listings",
1055
+ "description": "The award listings API returns a listing of the various awards that can be distributed in the requested season. This is especially useful in order to avoid having to use the name field of the event awards API to know which award was won. Instead the awardId field can be matched between the two APIs.",
1056
+ "parameters": [
1057
+ {
1058
+ "name": "season",
1059
+ "in": "path",
1060
+ "description": "Numeric year of the event from which the award listings are requested. Must be 4 digits",
1061
+ "required": true,
1062
+ "schema": {
1063
+ "type": "integer",
1064
+ "format": "int32"
1065
+ }
1066
+ }
1067
+ ],
1068
+ "responses": {
1069
+ "200": {
1070
+ "description": "Success",
1071
+ "content": {
1072
+ "application/json": {
1073
+ "schema": {
1074
+ "$ref": "#/components/schemas/SeasonAwardListingsModel"
1075
+ }
1076
+ }
1077
+ }
1078
+ },
1079
+ "401": {
1080
+ "description": "Unauthorized"
1081
+ }
1082
+ },
1083
+ "security": [
1084
+ {
1085
+ "basic": [ ]
1086
+ }
1087
+ ]
1088
+ }
1089
+ },
1090
+ "/v2.0/{season}/awards/{teamNumber}": {
1091
+ "get": {
1092
+ "tags": [
1093
+ "Awards"
1094
+ ],
1095
+ "summary": "Event Awards",
1096
+ "description": "The event awards API returns details about awards presented at a particular event in a particular season. Return values may contain either `teamNumber` or `person` values, and if the winner was a `person`, and that person is from a team, the `teamNumber` value *might* be set with their `teamNumber`. You must specify either an `eventCode` or a `teamNumber` or both. If you specify the `teamNumber` parameter, you will receive only awards where the team was listed as the winner, regardless of whether or not the `person` field is `null` or empty. If you specify only the `eventCode` field, you will receive all award listings for the requested event. If you specify both, you will receive all awards won by the `teamNumber` at the `eventCode`.",
1097
+ "parameters": [
1098
+ {
1099
+ "name": "season",
1100
+ "in": "path",
1101
+ "description": "Numeric year of the event from which the award listings are requested. Must be 4 digits",
1102
+ "required": true,
1103
+ "schema": {
1104
+ "type": "integer",
1105
+ "format": "int32"
1106
+ }
1107
+ },
1108
+ {
1109
+ "name": "eventCode",
1110
+ "in": "query",
1111
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the awards are requested.",
1112
+ "schema": {
1113
+ "type": "string",
1114
+ "default": ""
1115
+ }
1116
+ },
1117
+ {
1118
+ "name": "teamNumber",
1119
+ "in": "path",
1120
+ "description": "`teamNumber` to search for within the results.",
1121
+ "required": true,
1122
+ "schema": {
1123
+ "type": "integer",
1124
+ "format": "int32",
1125
+ "default": 0
1126
+ }
1127
+ }
1128
+ ],
1129
+ "responses": {
1130
+ "200": {
1131
+ "description": "Success",
1132
+ "content": {
1133
+ "application/json": {
1134
+ "schema": {
1135
+ "$ref": "#/components/schemas/AwardsModel"
1136
+ }
1137
+ }
1138
+ }
1139
+ },
1140
+ "401": {
1141
+ "description": "Unauthorized"
1142
+ }
1143
+ },
1144
+ "security": [
1145
+ {
1146
+ "basic": [ ]
1147
+ }
1148
+ ]
1149
+ }
1150
+ },
1151
+ "/v2.0/{season}/awards/{eventCode}/{teamNumber}": {
1152
+ "get": {
1153
+ "tags": [
1154
+ "Awards"
1155
+ ],
1156
+ "summary": "Event Awards",
1157
+ "description": "The event awards API returns details about awards presented at a particular event in a particular season. Return values may contain either `teamNumber` or `person` values, and if the winner was a `person`, and that person is from a team, the `teamNumber` value *might* be set with their `teamNumber`. You must specify either an `eventCode` or a `teamNumber` or both. If you specify the `teamNumber` parameter, you will receive only awards where the team was listed as the winner, regardless of whether or not the `person` field is `null` or empty. If you specify only the `eventCode` field, you will receive all award listings for the requested event. If you specify both, you will receive all awards won by the `teamNumber` at the `eventCode`.",
1158
+ "parameters": [
1159
+ {
1160
+ "name": "season",
1161
+ "in": "path",
1162
+ "description": "Numeric year of the event from which the award listings are requested. Must be 4 digits",
1163
+ "required": true,
1164
+ "schema": {
1165
+ "type": "integer",
1166
+ "format": "int32"
1167
+ }
1168
+ },
1169
+ {
1170
+ "name": "eventCode",
1171
+ "in": "path",
1172
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the awards are requested.",
1173
+ "required": true,
1174
+ "schema": {
1175
+ "type": "string",
1176
+ "default": ""
1177
+ }
1178
+ },
1179
+ {
1180
+ "name": "teamNumber",
1181
+ "in": "path",
1182
+ "description": "`teamNumber` to search for within the results.",
1183
+ "required": true,
1184
+ "schema": {
1185
+ "type": "integer",
1186
+ "format": "int32",
1187
+ "default": 0
1188
+ }
1189
+ }
1190
+ ],
1191
+ "responses": {
1192
+ "200": {
1193
+ "description": "Success",
1194
+ "content": {
1195
+ "application/json": {
1196
+ "schema": {
1197
+ "$ref": "#/components/schemas/AwardsModel"
1198
+ }
1199
+ }
1200
+ }
1201
+ },
1202
+ "401": {
1203
+ "description": "Unauthorized"
1204
+ }
1205
+ },
1206
+ "security": [
1207
+ {
1208
+ "basic": [ ]
1209
+ }
1210
+ ]
1211
+ }
1212
+ },
1213
+ "/v2.0/{season}/awards/{eventCode}": {
1214
+ "get": {
1215
+ "tags": [
1216
+ "Awards"
1217
+ ],
1218
+ "summary": "Event Awards",
1219
+ "description": "The event awards API returns details about awards presented at a particular event in a particular season. Return values may contain either `teamNumber` or `person` values, and if the winner was a `person`, and that person is from a team, the `teamNumber` value *might* be set with their `teamNumber`. You must specify either an `eventCode` or a `teamNumber` or both. If you specify the `teamNumber` parameter, you will receive only awards where the team was listed as the winner, regardless of whether or not the `person` field is `null` or empty. If you specify only the `eventCode` field, you will receive all award listings for the requested event. If you specify both, you will receive all awards won by the `teamNumber` at the `eventCode`.",
1220
+ "parameters": [
1221
+ {
1222
+ "name": "season",
1223
+ "in": "path",
1224
+ "description": "Numeric year of the event from which the award listings are requested. Must be 4 digits",
1225
+ "required": true,
1226
+ "schema": {
1227
+ "type": "integer",
1228
+ "format": "int32"
1229
+ }
1230
+ },
1231
+ {
1232
+ "name": "eventCode",
1233
+ "in": "path",
1234
+ "description": "Case insensitive alphanumeric `eventCode` of the event from which the awards are requested.",
1235
+ "required": true,
1236
+ "schema": {
1237
+ "type": "string",
1238
+ "default": ""
1239
+ }
1240
+ },
1241
+ {
1242
+ "name": "teamNumber",
1243
+ "in": "query",
1244
+ "description": "`teamNumber` to search for within the results.",
1245
+ "schema": {
1246
+ "type": "integer",
1247
+ "format": "int32",
1248
+ "default": 0
1249
+ }
1250
+ }
1251
+ ],
1252
+ "responses": {
1253
+ "200": {
1254
+ "description": "Success",
1255
+ "content": {
1256
+ "application/json": {
1257
+ "schema": {
1258
+ "$ref": "#/components/schemas/AwardsModel"
1259
+ }
1260
+ }
1261
+ }
1262
+ },
1263
+ "401": {
1264
+ "description": "Unauthorized"
1265
+ }
1266
+ },
1267
+ "security": [
1268
+ {
1269
+ "basic": [ ]
1270
+ }
1271
+ ]
1272
+ }
1273
+ }
1274
+ },
1275
+ "components": {
1276
+ "schemas": {
1277
+ "AdvancementModel": {
1278
+ "title": "Advancement",
1279
+ "type": "object",
1280
+ "properties": {
1281
+ "advancesTo": {
1282
+ "type": "string",
1283
+ "description": "The event code of the event this event advanced to.",
1284
+ "nullable": true
1285
+ },
1286
+ "slots": {
1287
+ "type": "integer",
1288
+ "description": "The number of teams that advanced.",
1289
+ "format": "int32"
1290
+ },
1291
+ "advancement": {
1292
+ "type": "array",
1293
+ "items": {
1294
+ "$ref": "#/components/schemas/AdvancementSlot"
1295
+ },
1296
+ "description": "The ordered list of advancement criteria and teams that met them. Null if the event is unpublished.",
1297
+ "nullable": true
1298
+ }
1299
+ },
1300
+ "additionalProperties": false
1301
+ },
1302
+ "AdvancementSlot": {
1303
+ "title": "Advancement Order",
1304
+ "type": "object",
1305
+ "properties": {
1306
+ "team": {
1307
+ "type": "integer",
1308
+ "description": "The team number of the team earning this advancement slot. Null if no team meets the criteria.",
1309
+ "format": "int32",
1310
+ "nullable": true
1311
+ },
1312
+ "teamId": {
1313
+ "type": "integer",
1314
+ "format": "int32",
1315
+ "nullable": true
1316
+ },
1317
+ "teamProfileId": {
1318
+ "type": "integer",
1319
+ "format": "int32",
1320
+ "nullable": true
1321
+ },
1322
+ "displayTeam": {
1323
+ "type": "string",
1324
+ "description": "The display-friendly string representation of the number of the team earning this advancement slot. Null if no team meets the criteria.",
1325
+ "nullable": true
1326
+ },
1327
+ "slot": {
1328
+ "type": "integer",
1329
+ "description": "The number of the advancement criteria as shown in GM1 section 6.2.",
1330
+ "format": "int32"
1331
+ },
1332
+ "criteria": {
1333
+ "type": "string",
1334
+ "description": "String describing the advancement criteria as shown in GM1 section 6.2.",
1335
+ "nullable": true
1336
+ },
1337
+ "status": {
1338
+ "$ref": "#/components/schemas/ApiAdvancementStatus"
1339
+ }
1340
+ },
1341
+ "additionalProperties": false
1342
+ },
1343
+ "AdvancementSourceModel": {
1344
+ "title": "Advanced",
1345
+ "type": "object",
1346
+ "properties": {
1347
+ "advancedFrom": {
1348
+ "type": "string",
1349
+ "description": "The event code of the event this team advanced from. Null if unknown.",
1350
+ "nullable": true
1351
+ },
1352
+ "advancedFromRegion": {
1353
+ "type": "string",
1354
+ "description": "The region code of the region this team advanced from. Null if target event is a region-level event.",
1355
+ "nullable": true
1356
+ },
1357
+ "slots": {
1358
+ "type": "integer",
1359
+ "description": "The number of teams that advanced from the source event.",
1360
+ "format": "int32"
1361
+ },
1362
+ "advancement": {
1363
+ "type": "array",
1364
+ "items": {
1365
+ "$ref": "#/components/schemas/AdvancementSlot"
1366
+ },
1367
+ "description": "The ordered list of advancement criteria and teams that met them. Null if the event is unpublished.",
1368
+ "nullable": true
1369
+ }
1370
+ },
1371
+ "additionalProperties": false
1372
+ },
1373
+ "AllianceModel_Version2": {
1374
+ "title": "Alliance",
1375
+ "type": "object",
1376
+ "properties": {
1377
+ "number": {
1378
+ "type": "integer",
1379
+ "format": "int32"
1380
+ },
1381
+ "name": {
1382
+ "type": "string",
1383
+ "nullable": true
1384
+ },
1385
+ "captain": {
1386
+ "type": "integer",
1387
+ "format": "int32",
1388
+ "nullable": true
1389
+ },
1390
+ "captainDisplay": {
1391
+ "type": "string",
1392
+ "nullable": true
1393
+ },
1394
+ "round1": {
1395
+ "type": "integer",
1396
+ "format": "int32",
1397
+ "nullable": true
1398
+ },
1399
+ "round1Display": {
1400
+ "type": "string",
1401
+ "nullable": true
1402
+ },
1403
+ "round2": {
1404
+ "type": "integer",
1405
+ "format": "int32",
1406
+ "nullable": true
1407
+ },
1408
+ "round2Display": {
1409
+ "type": "string",
1410
+ "nullable": true
1411
+ },
1412
+ "round3": {
1413
+ "type": "integer",
1414
+ "format": "int32",
1415
+ "nullable": true
1416
+ },
1417
+ "backup": {
1418
+ "type": "integer",
1419
+ "format": "int32",
1420
+ "nullable": true
1421
+ },
1422
+ "backupReplaced": {
1423
+ "type": "integer",
1424
+ "format": "int32",
1425
+ "nullable": true
1426
+ }
1427
+ },
1428
+ "additionalProperties": false
1429
+ },
1430
+ "AllianceScore_2020": {
1431
+ "title": "Ultimate Goal Single Team Breakdown",
1432
+ "type": "object",
1433
+ "properties": {
1434
+ "adjust": {
1435
+ "type": "integer",
1436
+ "format": "int32"
1437
+ },
1438
+ "dcPoints": {
1439
+ "type": "integer",
1440
+ "format": "int32"
1441
+ },
1442
+ "autoPoints": {
1443
+ "type": "integer",
1444
+ "format": "int32"
1445
+ },
1446
+ "dcTowerLow": {
1447
+ "type": "integer",
1448
+ "format": "int32"
1449
+ },
1450
+ "dcTowerMid": {
1451
+ "type": "integer",
1452
+ "format": "int32"
1453
+ },
1454
+ "dcTowerHigh": {
1455
+ "type": "integer",
1456
+ "format": "int32"
1457
+ },
1458
+ "navigated1": {
1459
+ "type": "boolean"
1460
+ },
1461
+ "navigated2": {
1462
+ "type": "boolean"
1463
+ },
1464
+ "wobbleDelivered1": {
1465
+ "type": "boolean"
1466
+ },
1467
+ "wobbleDelivered2": {
1468
+ "type": "boolean"
1469
+ },
1470
+ "autoTowerLow": {
1471
+ "type": "integer",
1472
+ "format": "int32"
1473
+ },
1474
+ "autoTowerMid": {
1475
+ "type": "integer",
1476
+ "format": "int32"
1477
+ },
1478
+ "autoTowerHigh": {
1479
+ "type": "integer",
1480
+ "format": "int32"
1481
+ },
1482
+ "autoTowerPoints": {
1483
+ "type": "integer",
1484
+ "format": "int32"
1485
+ },
1486
+ "autoPowerShotLeft": {
1487
+ "type": "boolean"
1488
+ },
1489
+ "autoPowerShotCenter": {
1490
+ "type": "boolean"
1491
+ },
1492
+ "autoPowerShotRight": {
1493
+ "type": "boolean"
1494
+ },
1495
+ "autoPowerShotPoints": {
1496
+ "type": "integer",
1497
+ "format": "int32"
1498
+ },
1499
+ "wobbleRings1": {
1500
+ "type": "integer",
1501
+ "format": "int32"
1502
+ },
1503
+ "wobbleRings2": {
1504
+ "type": "integer",
1505
+ "format": "int32"
1506
+ },
1507
+ "wobbleEnd1": {
1508
+ "type": "integer",
1509
+ "format": "int32"
1510
+ },
1511
+ "wobbleEnd2": {
1512
+ "type": "integer",
1513
+ "format": "int32"
1514
+ },
1515
+ "wobbleEndPoints": {
1516
+ "type": "integer",
1517
+ "format": "int32"
1518
+ },
1519
+ "wobbleRingPoints": {
1520
+ "type": "integer",
1521
+ "format": "int32"
1522
+ },
1523
+ "autoWobblePoints": {
1524
+ "type": "integer",
1525
+ "format": "int32"
1526
+ },
1527
+ "endPowerShotLeft": {
1528
+ "type": "boolean"
1529
+ },
1530
+ "endPowerShotCenter": {
1531
+ "type": "boolean"
1532
+ },
1533
+ "endPowerShotRight": {
1534
+ "type": "boolean"
1535
+ },
1536
+ "endPowerShotPoints": {
1537
+ "type": "integer",
1538
+ "format": "int32"
1539
+ },
1540
+ "penaltyPoints": {
1541
+ "type": "integer",
1542
+ "format": "int32"
1543
+ },
1544
+ "majorPenalties": {
1545
+ "type": "integer",
1546
+ "format": "int32"
1547
+ },
1548
+ "minorPenalties": {
1549
+ "type": "integer",
1550
+ "format": "int32"
1551
+ },
1552
+ "navigationPoints": {
1553
+ "type": "integer",
1554
+ "format": "int32"
1555
+ },
1556
+ "endgamePoints": {
1557
+ "type": "integer",
1558
+ "format": "int32"
1559
+ },
1560
+ "totalPoints": {
1561
+ "type": "integer",
1562
+ "format": "int32"
1563
+ }
1564
+ },
1565
+ "additionalProperties": false
1566
+ },
1567
+ "AllianceSelectionDetailModel": {
1568
+ "title": "Alliance Selection Details",
1569
+ "type": "object",
1570
+ "properties": {
1571
+ "selections": {
1572
+ "type": "array",
1573
+ "items": {
1574
+ "$ref": "#/components/schemas/SelectionModel"
1575
+ },
1576
+ "nullable": true
1577
+ },
1578
+ "count": {
1579
+ "type": "integer",
1580
+ "format": "int32"
1581
+ }
1582
+ },
1583
+ "additionalProperties": false
1584
+ },
1585
+ "AllianceSelectionModel_Version2": {
1586
+ "title": "Alliance Selection",
1587
+ "type": "object",
1588
+ "properties": {
1589
+ "alliances": {
1590
+ "type": "array",
1591
+ "items": {
1592
+ "$ref": "#/components/schemas/AllianceModel_Version2"
1593
+ },
1594
+ "nullable": true
1595
+ },
1596
+ "count": {
1597
+ "type": "integer",
1598
+ "format": "int32"
1599
+ }
1600
+ },
1601
+ "additionalProperties": false
1602
+ },
1603
+ "ApiAdvancementStatus": {
1604
+ "enum": [
1605
+ "NULL",
1606
+ "FIRST",
1607
+ "ALREADY_ADVANCING",
1608
+ "ADVANCING_ABOVE",
1609
+ "INELIGIBLE"
1610
+ ],
1611
+ "type": "string",
1612
+ "description": "The advancement status describes how this team's appearance in this slot corresponds to the overall event advancement list. A value of \"FIRST\" represents the first time they appear and thus the criteria for which they would advance given enough available slots. \"ALREADY_ADVANCED\" means the team had already advanced to the target event prior to the start of this event. \"ADVANCING_ABOVE\" means this team has already met a higher-priority advancement criteria at this event.\"INELIGIBLE\" means this team was not eligible to advance from this event."
1613
+ },
1614
+ "ApiIndexModel": {
1615
+ "title": "API Information",
1616
+ "type": "object",
1617
+ "properties": {
1618
+ "name": {
1619
+ "type": "string",
1620
+ "description": "api name",
1621
+ "nullable": true
1622
+ },
1623
+ "apiVersion": {
1624
+ "type": "string",
1625
+ "description": "api version",
1626
+ "nullable": true
1627
+ },
1628
+ "serviceMainifestName": {
1629
+ "type": "string",
1630
+ "nullable": true
1631
+ },
1632
+ "serviceMainifestVersion": {
1633
+ "type": "string",
1634
+ "nullable": true
1635
+ },
1636
+ "codePackageName": {
1637
+ "type": "string",
1638
+ "nullable": true
1639
+ },
1640
+ "codePackageVersion": {
1641
+ "type": "string",
1642
+ "nullable": true
1643
+ },
1644
+ "status": {
1645
+ "type": "string",
1646
+ "nullable": true
1647
+ },
1648
+ "currentSeason": {
1649
+ "type": "integer",
1650
+ "description": "current season in the eyes of FTC",
1651
+ "format": "int32",
1652
+ "example": 2020
1653
+ },
1654
+ "maxSeason": {
1655
+ "type": "integer",
1656
+ "description": "max season that can be retrieved from the API/webpages",
1657
+ "format": "int32",
1658
+ "example": 2020
1659
+ }
1660
+ },
1661
+ "additionalProperties": false
1662
+ },
1663
+ "AutoNavigatedStatus": {
1664
+ "enum": [
1665
+ "NONE",
1666
+ "IN_STORAGE",
1667
+ "COMPLETELY_IN_STORAGE",
1668
+ "IN_WAREHOUSE",
1669
+ "COMPLETELY_IN_WAREHOUSE"
1670
+ ],
1671
+ "type": "string"
1672
+ },
1673
+ "AutoNavigation": {
1674
+ "enum": [
1675
+ "NONE",
1676
+ "SUBSTATION_TERMINAL",
1677
+ "SIGNAL_ZONE"
1678
+ ],
1679
+ "type": "string"
1680
+ },
1681
+ "AwardAssignmentModel": {
1682
+ "title": "Award Assignment",
1683
+ "type": "object",
1684
+ "properties": {
1685
+ "awardId": {
1686
+ "type": "integer",
1687
+ "format": "int32"
1688
+ },
1689
+ "teamId": {
1690
+ "type": "integer",
1691
+ "format": "int32",
1692
+ "nullable": true
1693
+ },
1694
+ "teamProfileId": {
1695
+ "type": "integer",
1696
+ "format": "int32",
1697
+ "nullable": true
1698
+ },
1699
+ "eventId": {
1700
+ "type": "integer",
1701
+ "format": "int32",
1702
+ "nullable": true
1703
+ },
1704
+ "eventDivisionId": {
1705
+ "type": "integer",
1706
+ "format": "int32",
1707
+ "nullable": true
1708
+ },
1709
+ "eventCode": {
1710
+ "type": "string",
1711
+ "nullable": true
1712
+ },
1713
+ "name": {
1714
+ "type": "string",
1715
+ "nullable": true
1716
+ },
1717
+ "series": {
1718
+ "type": "integer",
1719
+ "format": "int32"
1720
+ },
1721
+ "teamNumber": {
1722
+ "type": "integer",
1723
+ "format": "int32",
1724
+ "nullable": true
1725
+ },
1726
+ "schoolName": {
1727
+ "type": "string",
1728
+ "nullable": true
1729
+ },
1730
+ "fullTeamName": {
1731
+ "type": "string",
1732
+ "nullable": true
1733
+ },
1734
+ "person": {
1735
+ "type": "string",
1736
+ "nullable": true
1737
+ }
1738
+ },
1739
+ "additionalProperties": false
1740
+ },
1741
+ "AwardsModel": {
1742
+ "title": "Award Assignment List",
1743
+ "type": "object",
1744
+ "properties": {
1745
+ "awards": {
1746
+ "type": "array",
1747
+ "items": {
1748
+ "$ref": "#/components/schemas/AwardAssignmentModel"
1749
+ },
1750
+ "nullable": true
1751
+ }
1752
+ },
1753
+ "additionalProperties": false
1754
+ },
1755
+ "BarcodeElement": {
1756
+ "enum": [
1757
+ "DUCK",
1758
+ "TEAM_SHIPPING_ELEMENT"
1759
+ ],
1760
+ "type": "string"
1761
+ },
1762
+ "Coordinate": {
1763
+ "type": "object",
1764
+ "properties": {
1765
+ "x": {
1766
+ "type": "number",
1767
+ "format": "double"
1768
+ },
1769
+ "y": {
1770
+ "type": "number",
1771
+ "format": "double"
1772
+ },
1773
+ "z": {
1774
+ "type": "number",
1775
+ "format": "double"
1776
+ },
1777
+ "m": {
1778
+ "type": "number",
1779
+ "format": "double"
1780
+ },
1781
+ "coordinateValue": {
1782
+ "$ref": "#/components/schemas/Coordinate"
1783
+ },
1784
+ "isValid": {
1785
+ "type": "boolean",
1786
+ "readOnly": true
1787
+ }
1788
+ },
1789
+ "additionalProperties": false
1790
+ },
1791
+ "CoordinateEqualityComparer": {
1792
+ "type": "object",
1793
+ "additionalProperties": false
1794
+ },
1795
+ "CoordinateSequence": {
1796
+ "type": "object",
1797
+ "properties": {
1798
+ "dimension": {
1799
+ "type": "integer",
1800
+ "format": "int32",
1801
+ "readOnly": true
1802
+ },
1803
+ "measures": {
1804
+ "type": "integer",
1805
+ "format": "int32",
1806
+ "readOnly": true
1807
+ },
1808
+ "spatial": {
1809
+ "type": "integer",
1810
+ "format": "int32",
1811
+ "readOnly": true
1812
+ },
1813
+ "ordinates": {
1814
+ "$ref": "#/components/schemas/Ordinates"
1815
+ },
1816
+ "hasZ": {
1817
+ "type": "boolean",
1818
+ "readOnly": true
1819
+ },
1820
+ "hasM": {
1821
+ "type": "boolean",
1822
+ "readOnly": true
1823
+ },
1824
+ "zOrdinateIndex": {
1825
+ "type": "integer",
1826
+ "format": "int32",
1827
+ "readOnly": true
1828
+ },
1829
+ "mOrdinateIndex": {
1830
+ "type": "integer",
1831
+ "format": "int32",
1832
+ "readOnly": true
1833
+ },
1834
+ "first": {
1835
+ "$ref": "#/components/schemas/Coordinate"
1836
+ },
1837
+ "last": {
1838
+ "$ref": "#/components/schemas/Coordinate"
1839
+ },
1840
+ "count": {
1841
+ "type": "integer",
1842
+ "format": "int32",
1843
+ "readOnly": true
1844
+ }
1845
+ },
1846
+ "additionalProperties": false
1847
+ },
1848
+ "CoordinateSequenceFactory": {
1849
+ "type": "object",
1850
+ "properties": {
1851
+ "ordinates": {
1852
+ "$ref": "#/components/schemas/Ordinates"
1853
+ }
1854
+ },
1855
+ "additionalProperties": false
1856
+ },
1857
+ "Dimension": {
1858
+ "enum": [
1859
+ "Point",
1860
+ "Curve",
1861
+ "Surface",
1862
+ "Collapse",
1863
+ "Dontcare",
1864
+ "True",
1865
+ "False"
1866
+ ],
1867
+ "type": "string"
1868
+ },
1869
+ "EndGameLocation": {
1870
+ "enum": [
1871
+ "NONE",
1872
+ "BACKSTAGE",
1873
+ "RIGGING"
1874
+ ],
1875
+ "type": "string"
1876
+ },
1877
+ "EndgameParkedStatus": {
1878
+ "enum": [
1879
+ "NONE",
1880
+ "IN_WAREHOUSE",
1881
+ "COMPLETELY_IN_WAREHOUSE"
1882
+ ],
1883
+ "type": "string"
1884
+ },
1885
+ "Envelope": {
1886
+ "type": "object",
1887
+ "properties": {
1888
+ "isNull": {
1889
+ "type": "boolean",
1890
+ "readOnly": true
1891
+ },
1892
+ "width": {
1893
+ "type": "number",
1894
+ "format": "double",
1895
+ "readOnly": true
1896
+ },
1897
+ "height": {
1898
+ "type": "number",
1899
+ "format": "double",
1900
+ "readOnly": true
1901
+ },
1902
+ "diameter": {
1903
+ "type": "number",
1904
+ "format": "double",
1905
+ "readOnly": true
1906
+ },
1907
+ "minX": {
1908
+ "type": "number",
1909
+ "format": "double",
1910
+ "readOnly": true
1911
+ },
1912
+ "maxX": {
1913
+ "type": "number",
1914
+ "format": "double",
1915
+ "readOnly": true
1916
+ },
1917
+ "minY": {
1918
+ "type": "number",
1919
+ "format": "double",
1920
+ "readOnly": true
1921
+ },
1922
+ "maxY": {
1923
+ "type": "number",
1924
+ "format": "double",
1925
+ "readOnly": true
1926
+ },
1927
+ "area": {
1928
+ "type": "number",
1929
+ "format": "double",
1930
+ "readOnly": true
1931
+ },
1932
+ "minExtent": {
1933
+ "type": "number",
1934
+ "format": "double",
1935
+ "readOnly": true
1936
+ },
1937
+ "maxExtent": {
1938
+ "type": "number",
1939
+ "format": "double",
1940
+ "readOnly": true
1941
+ },
1942
+ "centre": {
1943
+ "$ref": "#/components/schemas/Coordinate"
1944
+ }
1945
+ },
1946
+ "additionalProperties": false
1947
+ },
1948
+ "EventMatchResultsModel_Version2": {
1949
+ "title": "Match Result List",
1950
+ "type": "object",
1951
+ "properties": {
1952
+ "matches": {
1953
+ "type": "array",
1954
+ "items": {
1955
+ "$ref": "#/components/schemas/MatchResultModel_Version2"
1956
+ },
1957
+ "nullable": true
1958
+ }
1959
+ },
1960
+ "additionalProperties": false
1961
+ },
1962
+ "EventRankingsModel": {
1963
+ "title": "Event Ranking List",
1964
+ "type": "object",
1965
+ "properties": {
1966
+ "rankings": {
1967
+ "type": "array",
1968
+ "items": {
1969
+ "$ref": "#/components/schemas/TeamRankingModel"
1970
+ },
1971
+ "nullable": true
1972
+ }
1973
+ },
1974
+ "additionalProperties": false
1975
+ },
1976
+ "EventScheduleHybridModel_Version2": {
1977
+ "title": "Hybrid Schedule",
1978
+ "type": "object",
1979
+ "properties": {
1980
+ "schedule": {
1981
+ "type": "array",
1982
+ "items": {
1983
+ "$ref": "#/components/schemas/ScheduleHybridModel_Version2"
1984
+ },
1985
+ "nullable": true
1986
+ }
1987
+ },
1988
+ "additionalProperties": false
1989
+ },
1990
+ "EventScheduleModel_Version2": {
1991
+ "title": "Scheduled Match List",
1992
+ "type": "object",
1993
+ "properties": {
1994
+ "schedule": {
1995
+ "type": "array",
1996
+ "items": {
1997
+ "$ref": "#/components/schemas/ScheduledMatchModel_Version2"
1998
+ },
1999
+ "nullable": true
2000
+ }
2001
+ },
2002
+ "additionalProperties": false
2003
+ },
2004
+ "FieldSide": {
2005
+ "enum": [
2006
+ "SCORING_SIDE",
2007
+ "AUDIENCE_SIDE"
2008
+ ],
2009
+ "type": "string"
2010
+ },
2011
+ "FTCEventLevel": {
2012
+ "enum": [
2013
+ "OTHER",
2014
+ "QUALIFICATION",
2015
+ "SEMIFINAL",
2016
+ "FINAL",
2017
+ "PLAYOFF"
2018
+ ],
2019
+ "type": "string"
2020
+ },
2021
+ "Geometry": {
2022
+ "type": "object",
2023
+ "properties": {
2024
+ "factory": {
2025
+ "$ref": "#/components/schemas/GeometryFactory"
2026
+ },
2027
+ "userData": {
2028
+ "nullable": true
2029
+ },
2030
+ "srid": {
2031
+ "type": "integer",
2032
+ "format": "int32"
2033
+ },
2034
+ "geometryType": {
2035
+ "type": "string",
2036
+ "nullable": true,
2037
+ "readOnly": true
2038
+ },
2039
+ "ogcGeometryType": {
2040
+ "$ref": "#/components/schemas/OgcGeometryType"
2041
+ },
2042
+ "precisionModel": {
2043
+ "$ref": "#/components/schemas/PrecisionModel"
2044
+ },
2045
+ "coordinate": {
2046
+ "$ref": "#/components/schemas/Coordinate"
2047
+ },
2048
+ "coordinates": {
2049
+ "type": "array",
2050
+ "items": {
2051
+ "$ref": "#/components/schemas/Coordinate"
2052
+ },
2053
+ "nullable": true,
2054
+ "readOnly": true
2055
+ },
2056
+ "numPoints": {
2057
+ "type": "integer",
2058
+ "format": "int32",
2059
+ "readOnly": true
2060
+ },
2061
+ "numGeometries": {
2062
+ "type": "integer",
2063
+ "format": "int32",
2064
+ "readOnly": true
2065
+ },
2066
+ "isSimple": {
2067
+ "type": "boolean",
2068
+ "readOnly": true
2069
+ },
2070
+ "isValid": {
2071
+ "type": "boolean",
2072
+ "readOnly": true
2073
+ },
2074
+ "isEmpty": {
2075
+ "type": "boolean",
2076
+ "readOnly": true
2077
+ },
2078
+ "area": {
2079
+ "type": "number",
2080
+ "format": "double",
2081
+ "readOnly": true
2082
+ },
2083
+ "length": {
2084
+ "type": "number",
2085
+ "format": "double",
2086
+ "readOnly": true
2087
+ },
2088
+ "centroid": {
2089
+ "$ref": "#/components/schemas/Point"
2090
+ },
2091
+ "interiorPoint": {
2092
+ "$ref": "#/components/schemas/Point"
2093
+ },
2094
+ "pointOnSurface": {
2095
+ "$ref": "#/components/schemas/Point"
2096
+ },
2097
+ "dimension": {
2098
+ "$ref": "#/components/schemas/Dimension"
2099
+ },
2100
+ "boundary": {
2101
+ "$ref": "#/components/schemas/Geometry"
2102
+ },
2103
+ "boundaryDimension": {
2104
+ "$ref": "#/components/schemas/Dimension"
2105
+ },
2106
+ "envelope": {
2107
+ "$ref": "#/components/schemas/Geometry"
2108
+ },
2109
+ "envelopeInternal": {
2110
+ "$ref": "#/components/schemas/Envelope"
2111
+ },
2112
+ "isRectangle": {
2113
+ "type": "boolean",
2114
+ "readOnly": true
2115
+ }
2116
+ },
2117
+ "additionalProperties": false
2118
+ },
2119
+ "GeometryFactory": {
2120
+ "type": "object",
2121
+ "properties": {
2122
+ "precisionModel": {
2123
+ "$ref": "#/components/schemas/PrecisionModel"
2124
+ },
2125
+ "coordinateSequenceFactory": {
2126
+ "$ref": "#/components/schemas/CoordinateSequenceFactory"
2127
+ },
2128
+ "srid": {
2129
+ "type": "integer",
2130
+ "format": "int32",
2131
+ "readOnly": true
2132
+ },
2133
+ "geometryServices": {
2134
+ "$ref": "#/components/schemas/NtsGeometryServices"
2135
+ }
2136
+ },
2137
+ "additionalProperties": false
2138
+ },
2139
+ "GeometryOverlay": {
2140
+ "type": "object",
2141
+ "additionalProperties": false
2142
+ },
2143
+ "JunctionElement": {
2144
+ "enum": [
2145
+ "MY_CONE",
2146
+ "OTHER_CONE",
2147
+ "MY_R1_BEACON",
2148
+ "MY_R2_BEACON",
2149
+ "OTHER_R1_BEACON",
2150
+ "OTHER_R2_BEACON"
2151
+ ],
2152
+ "type": "string"
2153
+ },
2154
+ "LeagueMemberListModel": {
2155
+ "title": "League Members",
2156
+ "type": "object",
2157
+ "properties": {
2158
+ "members": {
2159
+ "type": "array",
2160
+ "items": {
2161
+ "type": "integer",
2162
+ "format": "int32"
2163
+ },
2164
+ "nullable": true
2165
+ }
2166
+ },
2167
+ "additionalProperties": false
2168
+ },
2169
+ "MatchResultModel_Version2": {
2170
+ "title": "Match Result",
2171
+ "type": "object",
2172
+ "properties": {
2173
+ "actualStartTime": {
2174
+ "type": "string",
2175
+ "format": "date-time",
2176
+ "nullable": true
2177
+ },
2178
+ "description": {
2179
+ "type": "string",
2180
+ "nullable": true
2181
+ },
2182
+ "tournamentLevel": {
2183
+ "type": "string",
2184
+ "nullable": true
2185
+ },
2186
+ "series": {
2187
+ "type": "integer",
2188
+ "format": "int32"
2189
+ },
2190
+ "matchNumber": {
2191
+ "type": "integer",
2192
+ "format": "int32"
2193
+ },
2194
+ "scoreRedFinal": {
2195
+ "type": "integer",
2196
+ "format": "int32"
2197
+ },
2198
+ "scoreRedFoul": {
2199
+ "type": "integer",
2200
+ "format": "int32"
2201
+ },
2202
+ "scoreRedAuto": {
2203
+ "type": "integer",
2204
+ "format": "int32"
2205
+ },
2206
+ "scoreBlueFinal": {
2207
+ "type": "integer",
2208
+ "format": "int32"
2209
+ },
2210
+ "scoreBlueFoul": {
2211
+ "type": "integer",
2212
+ "format": "int32"
2213
+ },
2214
+ "scoreBlueAuto": {
2215
+ "type": "integer",
2216
+ "format": "int32"
2217
+ },
2218
+ "postResultTime": {
2219
+ "type": "string",
2220
+ "format": "date-time",
2221
+ "nullable": true
2222
+ },
2223
+ "teams": {
2224
+ "type": "array",
2225
+ "items": {
2226
+ "$ref": "#/components/schemas/MatchResultTeamModel_Version2"
2227
+ },
2228
+ "nullable": true
2229
+ },
2230
+ "modifiedOn": {
2231
+ "type": "string",
2232
+ "format": "date-time",
2233
+ "nullable": true
2234
+ }
2235
+ },
2236
+ "additionalProperties": false
2237
+ },
2238
+ "MatchResultTeamModel_Version2": {
2239
+ "title": "Match Result Team",
2240
+ "type": "object",
2241
+ "properties": {
2242
+ "teamNumber": {
2243
+ "type": "integer",
2244
+ "format": "int32"
2245
+ },
2246
+ "station": {
2247
+ "type": "string",
2248
+ "nullable": true
2249
+ },
2250
+ "dq": {
2251
+ "type": "boolean"
2252
+ },
2253
+ "onField": {
2254
+ "type": "boolean"
2255
+ }
2256
+ },
2257
+ "additionalProperties": false
2258
+ },
2259
+ "MatchScoresModel": {
2260
+ "title": "Match Score List",
2261
+ "type": "object",
2262
+ "properties": {
2263
+ "matchScores": {
2264
+ "type": "array",
2265
+ "items": {
2266
+ "oneOf": [
2267
+ {
2268
+ "$ref": "#/components/schemas/ScoreDetailModel_2019"
2269
+ },
2270
+ {
2271
+ "$ref": "#/components/schemas/ScoreDetailModel_2020"
2272
+ },
2273
+ {
2274
+ "$ref": "#/components/schemas/ScoreDetailModelSinglePlayer_2020"
2275
+ },
2276
+ {
2277
+ "$ref": "#/components/schemas/ScoreDetailModel_2021"
2278
+ },
2279
+ {
2280
+ "$ref": "#/components/schemas/ScoreDetailModelSinglePlayer_2021"
2281
+ },
2282
+ {
2283
+ "$ref": "#/components/schemas/ScoreDetailModel_2022"
2284
+ },
2285
+ {
2286
+ "$ref": "#/components/schemas/ScoreDetailModelSinglePlayer_2022"
2287
+ },
2288
+ {
2289
+ "$ref": "#/components/schemas/ScoreDetailModel_2023"
2290
+ },
2291
+ {
2292
+ "$ref": "#/components/schemas/ScoreDetailModelSinglePlayer_2023"
2293
+ }
2294
+ ]
2295
+ },
2296
+ "nullable": true
2297
+ }
2298
+ },
2299
+ "additionalProperties": false
2300
+ },
2301
+ "NtsGeometryServices": {
2302
+ "type": "object",
2303
+ "properties": {
2304
+ "geometryOverlay": {
2305
+ "$ref": "#/components/schemas/GeometryOverlay"
2306
+ },
2307
+ "coordinateEqualityComparer": {
2308
+ "$ref": "#/components/schemas/CoordinateEqualityComparer"
2309
+ },
2310
+ "defaultSRID": {
2311
+ "type": "integer",
2312
+ "format": "int32",
2313
+ "readOnly": true
2314
+ },
2315
+ "defaultCoordinateSequenceFactory": {
2316
+ "$ref": "#/components/schemas/CoordinateSequenceFactory"
2317
+ },
2318
+ "defaultPrecisionModel": {
2319
+ "$ref": "#/components/schemas/PrecisionModel"
2320
+ }
2321
+ },
2322
+ "additionalProperties": false
2323
+ },
2324
+ "OgcGeometryType": {
2325
+ "enum": [
2326
+ "Point",
2327
+ "LineString",
2328
+ "Polygon",
2329
+ "MultiPoint",
2330
+ "MultiLineString",
2331
+ "MultiPolygon",
2332
+ "GeometryCollection",
2333
+ "CircularString",
2334
+ "CompoundCurve",
2335
+ "CurvePolygon",
2336
+ "MultiCurve",
2337
+ "MultiSurface",
2338
+ "Curve",
2339
+ "Surface",
2340
+ "PolyhedralSurface",
2341
+ "TIN"
2342
+ ],
2343
+ "type": "string"
2344
+ },
2345
+ "Ordinates": {
2346
+ "enum": [
2347
+ "None",
2348
+ "X",
2349
+ "Y",
2350
+ "XY",
2351
+ "Z",
2352
+ "XYZ",
2353
+ "Spatial4",
2354
+ "Spatial5",
2355
+ "Spatial6",
2356
+ "Spatial7",
2357
+ "Spatial8",
2358
+ "Spatial9",
2359
+ "Spatial10",
2360
+ "Spatial11",
2361
+ "Spatial12",
2362
+ "Spatial13",
2363
+ "Spatial14",
2364
+ "Spatial15",
2365
+ "Spatial16",
2366
+ "AllSpatialOrdinates",
2367
+ "M",
2368
+ "XYM",
2369
+ "XYZM",
2370
+ "Measure2",
2371
+ "Measure3",
2372
+ "Measure4",
2373
+ "Measure5",
2374
+ "Measure6",
2375
+ "Measure7",
2376
+ "Measure8",
2377
+ "Measure9",
2378
+ "Measure10",
2379
+ "Measure11",
2380
+ "Measure12",
2381
+ "Measure13",
2382
+ "Measure14",
2383
+ "Measure15",
2384
+ "Measure16",
2385
+ "AllMeasureOrdinates",
2386
+ "AllOrdinates"
2387
+ ],
2388
+ "type": "string"
2389
+ },
2390
+ "Point": {
2391
+ "type": "object",
2392
+ "properties": {
2393
+ "factory": {
2394
+ "$ref": "#/components/schemas/GeometryFactory"
2395
+ },
2396
+ "userData": {
2397
+ "nullable": true
2398
+ },
2399
+ "srid": {
2400
+ "type": "integer",
2401
+ "format": "int32"
2402
+ },
2403
+ "precisionModel": {
2404
+ "$ref": "#/components/schemas/PrecisionModel"
2405
+ },
2406
+ "numGeometries": {
2407
+ "type": "integer",
2408
+ "format": "int32",
2409
+ "readOnly": true
2410
+ },
2411
+ "isSimple": {
2412
+ "type": "boolean",
2413
+ "readOnly": true
2414
+ },
2415
+ "isValid": {
2416
+ "type": "boolean",
2417
+ "readOnly": true
2418
+ },
2419
+ "area": {
2420
+ "type": "number",
2421
+ "format": "double",
2422
+ "readOnly": true
2423
+ },
2424
+ "length": {
2425
+ "type": "number",
2426
+ "format": "double",
2427
+ "readOnly": true
2428
+ },
2429
+ "centroid": {
2430
+ "$ref": "#/components/schemas/Point"
2431
+ },
2432
+ "interiorPoint": {
2433
+ "$ref": "#/components/schemas/Point"
2434
+ },
2435
+ "pointOnSurface": {
2436
+ "$ref": "#/components/schemas/Point"
2437
+ },
2438
+ "envelope": {
2439
+ "$ref": "#/components/schemas/Geometry"
2440
+ },
2441
+ "envelopeInternal": {
2442
+ "$ref": "#/components/schemas/Envelope"
2443
+ },
2444
+ "isRectangle": {
2445
+ "type": "boolean",
2446
+ "readOnly": true
2447
+ },
2448
+ "coordinateSequence": {
2449
+ "$ref": "#/components/schemas/CoordinateSequence"
2450
+ },
2451
+ "coordinates": {
2452
+ "type": "array",
2453
+ "items": {
2454
+ "$ref": "#/components/schemas/Coordinate"
2455
+ },
2456
+ "nullable": true,
2457
+ "readOnly": true
2458
+ },
2459
+ "numPoints": {
2460
+ "type": "integer",
2461
+ "format": "int32",
2462
+ "readOnly": true
2463
+ },
2464
+ "isEmpty": {
2465
+ "type": "boolean",
2466
+ "readOnly": true
2467
+ },
2468
+ "dimension": {
2469
+ "$ref": "#/components/schemas/Dimension"
2470
+ },
2471
+ "boundaryDimension": {
2472
+ "$ref": "#/components/schemas/Dimension"
2473
+ },
2474
+ "x": {
2475
+ "type": "number",
2476
+ "format": "double"
2477
+ },
2478
+ "y": {
2479
+ "type": "number",
2480
+ "format": "double"
2481
+ },
2482
+ "coordinate": {
2483
+ "$ref": "#/components/schemas/Coordinate"
2484
+ },
2485
+ "geometryType": {
2486
+ "type": "string",
2487
+ "nullable": true,
2488
+ "readOnly": true
2489
+ },
2490
+ "ogcGeometryType": {
2491
+ "$ref": "#/components/schemas/OgcGeometryType"
2492
+ },
2493
+ "boundary": {
2494
+ "$ref": "#/components/schemas/Geometry"
2495
+ },
2496
+ "z": {
2497
+ "type": "number",
2498
+ "format": "double"
2499
+ },
2500
+ "m": {
2501
+ "type": "number",
2502
+ "format": "double"
2503
+ }
2504
+ },
2505
+ "additionalProperties": false
2506
+ },
2507
+ "PrecisionModel": {
2508
+ "type": "object",
2509
+ "properties": {
2510
+ "isFloating": {
2511
+ "type": "boolean",
2512
+ "readOnly": true
2513
+ },
2514
+ "maximumSignificantDigits": {
2515
+ "type": "integer",
2516
+ "format": "int32",
2517
+ "readOnly": true
2518
+ },
2519
+ "scale": {
2520
+ "type": "number",
2521
+ "format": "double"
2522
+ },
2523
+ "gridSize": {
2524
+ "type": "number",
2525
+ "format": "double",
2526
+ "readOnly": true
2527
+ },
2528
+ "precisionModelType": {
2529
+ "$ref": "#/components/schemas/PrecisionModels"
2530
+ }
2531
+ },
2532
+ "additionalProperties": false
2533
+ },
2534
+ "PrecisionModels": {
2535
+ "enum": [
2536
+ "Floating",
2537
+ "FloatingSingle",
2538
+ "Fixed"
2539
+ ],
2540
+ "type": "string"
2541
+ },
2542
+ "ScheduledMatchModel_Version2": {
2543
+ "title": "Scheduled Match",
2544
+ "type": "object",
2545
+ "properties": {
2546
+ "description": {
2547
+ "type": "string",
2548
+ "nullable": true
2549
+ },
2550
+ "field": {
2551
+ "type": "string",
2552
+ "nullable": true
2553
+ },
2554
+ "tournamentLevel": {
2555
+ "type": "string",
2556
+ "nullable": true
2557
+ },
2558
+ "startTime": {
2559
+ "type": "string",
2560
+ "format": "date-time",
2561
+ "nullable": true
2562
+ },
2563
+ "series": {
2564
+ "type": "integer",
2565
+ "format": "int32"
2566
+ },
2567
+ "matchNumber": {
2568
+ "type": "integer",
2569
+ "format": "int32"
2570
+ },
2571
+ "teams": {
2572
+ "type": "array",
2573
+ "items": {
2574
+ "$ref": "#/components/schemas/ScheduledMatchTeamModel_Version2"
2575
+ },
2576
+ "nullable": true
2577
+ },
2578
+ "modifiedOn": {
2579
+ "type": "string",
2580
+ "format": "date-time",
2581
+ "nullable": true
2582
+ }
2583
+ },
2584
+ "additionalProperties": false
2585
+ },
2586
+ "ScheduledMatchTeamModel_Version2": {
2587
+ "title": "Scheduled Match Team",
2588
+ "type": "object",
2589
+ "properties": {
2590
+ "teamNumber": {
2591
+ "type": "integer",
2592
+ "format": "int32",
2593
+ "nullable": true
2594
+ },
2595
+ "displayTeamNumber": {
2596
+ "type": "string",
2597
+ "nullable": true
2598
+ },
2599
+ "station": {
2600
+ "type": "string",
2601
+ "nullable": true
2602
+ },
2603
+ "team": {
2604
+ "type": "string",
2605
+ "nullable": true
2606
+ },
2607
+ "teamName": {
2608
+ "type": "string",
2609
+ "nullable": true
2610
+ },
2611
+ "surrogate": {
2612
+ "type": "boolean"
2613
+ },
2614
+ "noShow": {
2615
+ "type": "boolean"
2616
+ }
2617
+ },
2618
+ "additionalProperties": false
2619
+ },
2620
+ "ScheduleHybridModel_Version2": {
2621
+ "title": "Hybrid Schedule Match",
2622
+ "type": "object",
2623
+ "properties": {
2624
+ "description": {
2625
+ "type": "string",
2626
+ "nullable": true
2627
+ },
2628
+ "tournamentLevel": {
2629
+ "type": "string",
2630
+ "nullable": true
2631
+ },
2632
+ "series": {
2633
+ "type": "integer",
2634
+ "format": "int32"
2635
+ },
2636
+ "matchNumber": {
2637
+ "type": "integer",
2638
+ "format": "int32"
2639
+ },
2640
+ "startTime": {
2641
+ "type": "string",
2642
+ "format": "date-time",
2643
+ "nullable": true
2644
+ },
2645
+ "actualStartTime": {
2646
+ "type": "string",
2647
+ "format": "date-time",
2648
+ "nullable": true
2649
+ },
2650
+ "postResultTime": {
2651
+ "type": "string",
2652
+ "format": "date-time",
2653
+ "nullable": true
2654
+ },
2655
+ "scoreRedFinal": {
2656
+ "type": "integer",
2657
+ "format": "int32",
2658
+ "nullable": true
2659
+ },
2660
+ "scoreRedFoul": {
2661
+ "type": "integer",
2662
+ "format": "int32",
2663
+ "nullable": true
2664
+ },
2665
+ "scoreRedAuto": {
2666
+ "type": "integer",
2667
+ "format": "int32",
2668
+ "nullable": true
2669
+ },
2670
+ "scoreBlueFinal": {
2671
+ "type": "integer",
2672
+ "format": "int32",
2673
+ "nullable": true
2674
+ },
2675
+ "scoreBlueFoul": {
2676
+ "type": "integer",
2677
+ "format": "int32",
2678
+ "nullable": true
2679
+ },
2680
+ "scoreBlueAuto": {
2681
+ "type": "integer",
2682
+ "format": "int32",
2683
+ "nullable": true
2684
+ },
2685
+ "scoreBlueDriveControlled": {
2686
+ "type": "integer",
2687
+ "format": "int32",
2688
+ "nullable": true
2689
+ },
2690
+ "scoreBlueEndgame": {
2691
+ "type": "integer",
2692
+ "format": "int32",
2693
+ "nullable": true
2694
+ },
2695
+ "redWins": {
2696
+ "type": "boolean",
2697
+ "nullable": true
2698
+ },
2699
+ "blueWins": {
2700
+ "type": "boolean",
2701
+ "nullable": true
2702
+ },
2703
+ "teams": {
2704
+ "type": "array",
2705
+ "items": {
2706
+ "$ref": "#/components/schemas/ScheduleHybridModelTeam_Version2"
2707
+ },
2708
+ "nullable": true
2709
+ }
2710
+ },
2711
+ "additionalProperties": false
2712
+ },
2713
+ "ScheduleHybridModelTeam_Version2": {
2714
+ "title": "Hybrid Schedule Team",
2715
+ "type": "object",
2716
+ "properties": {
2717
+ "teamNumber": {
2718
+ "type": "integer",
2719
+ "format": "int32",
2720
+ "nullable": true
2721
+ },
2722
+ "displayTeamNumber": {
2723
+ "type": "string",
2724
+ "nullable": true
2725
+ },
2726
+ "station": {
2727
+ "type": "string",
2728
+ "nullable": true
2729
+ },
2730
+ "surrogate": {
2731
+ "type": "boolean"
2732
+ },
2733
+ "noShow": {
2734
+ "type": "boolean"
2735
+ },
2736
+ "dq": {
2737
+ "type": "boolean",
2738
+ "nullable": true
2739
+ },
2740
+ "onField": {
2741
+ "type": "boolean",
2742
+ "nullable": true
2743
+ },
2744
+ "teamName": {
2745
+ "type": "string",
2746
+ "nullable": true
2747
+ }
2748
+ },
2749
+ "additionalProperties": false
2750
+ },
2751
+ "ScoreDetailAllianceModel_2020": {
2752
+ "title": "Ultimate Goal Alliance Score Breakdown",
2753
+ "type": "object",
2754
+ "properties": {
2755
+ "adjust": {
2756
+ "type": "integer",
2757
+ "format": "int32"
2758
+ },
2759
+ "dcPoints": {
2760
+ "type": "integer",
2761
+ "format": "int32"
2762
+ },
2763
+ "autoPoints": {
2764
+ "type": "integer",
2765
+ "format": "int32"
2766
+ },
2767
+ "dcTowerLow": {
2768
+ "type": "integer",
2769
+ "format": "int32"
2770
+ },
2771
+ "dcTowerMid": {
2772
+ "type": "integer",
2773
+ "format": "int32"
2774
+ },
2775
+ "dcTowerHigh": {
2776
+ "type": "integer",
2777
+ "format": "int32"
2778
+ },
2779
+ "navigated1": {
2780
+ "type": "boolean"
2781
+ },
2782
+ "navigated2": {
2783
+ "type": "boolean"
2784
+ },
2785
+ "wobbleDelivered1": {
2786
+ "type": "boolean"
2787
+ },
2788
+ "wobbleDelivered2": {
2789
+ "type": "boolean"
2790
+ },
2791
+ "autoTowerLow": {
2792
+ "type": "integer",
2793
+ "format": "int32"
2794
+ },
2795
+ "autoTowerMid": {
2796
+ "type": "integer",
2797
+ "format": "int32"
2798
+ },
2799
+ "autoTowerHigh": {
2800
+ "type": "integer",
2801
+ "format": "int32"
2802
+ },
2803
+ "autoTowerPoints": {
2804
+ "type": "integer",
2805
+ "format": "int32"
2806
+ },
2807
+ "autoPowerShotLeft": {
2808
+ "type": "boolean"
2809
+ },
2810
+ "autoPowerShotCenter": {
2811
+ "type": "boolean"
2812
+ },
2813
+ "autoPowerShotRight": {
2814
+ "type": "boolean"
2815
+ },
2816
+ "autoPowerShotPoints": {
2817
+ "type": "integer",
2818
+ "format": "int32"
2819
+ },
2820
+ "wobbleRings1": {
2821
+ "type": "integer",
2822
+ "format": "int32"
2823
+ },
2824
+ "wobbleRings2": {
2825
+ "type": "integer",
2826
+ "format": "int32"
2827
+ },
2828
+ "wobbleEnd1": {
2829
+ "type": "integer",
2830
+ "format": "int32"
2831
+ },
2832
+ "wobbleEnd2": {
2833
+ "type": "integer",
2834
+ "format": "int32"
2835
+ },
2836
+ "wobbleEndPoints": {
2837
+ "type": "integer",
2838
+ "format": "int32"
2839
+ },
2840
+ "wobbleRingPoints": {
2841
+ "type": "integer",
2842
+ "format": "int32"
2843
+ },
2844
+ "autoWobblePoints": {
2845
+ "type": "integer",
2846
+ "format": "int32"
2847
+ },
2848
+ "endPowerShotLeft": {
2849
+ "type": "boolean"
2850
+ },
2851
+ "endPowerShotCenter": {
2852
+ "type": "boolean"
2853
+ },
2854
+ "endPowerShotRight": {
2855
+ "type": "boolean"
2856
+ },
2857
+ "endPowerShotPoints": {
2858
+ "type": "integer",
2859
+ "format": "int32"
2860
+ },
2861
+ "penaltyPoints": {
2862
+ "type": "integer",
2863
+ "format": "int32"
2864
+ },
2865
+ "majorPenalties": {
2866
+ "type": "integer",
2867
+ "format": "int32"
2868
+ },
2869
+ "minorPenalties": {
2870
+ "type": "integer",
2871
+ "format": "int32"
2872
+ },
2873
+ "navigationPoints": {
2874
+ "type": "integer",
2875
+ "format": "int32"
2876
+ },
2877
+ "endgamePoints": {
2878
+ "type": "integer",
2879
+ "format": "int32"
2880
+ },
2881
+ "totalPoints": {
2882
+ "type": "integer",
2883
+ "format": "int32"
2884
+ },
2885
+ "alliance": {
2886
+ "type": "string",
2887
+ "nullable": true
2888
+ },
2889
+ "team": {
2890
+ "type": "integer",
2891
+ "format": "int32"
2892
+ }
2893
+ },
2894
+ "additionalProperties": false
2895
+ },
2896
+ "ScoreDetailAllianceModel_2021": {
2897
+ "title": "Freight Frenzy Alliance Score Breakdown",
2898
+ "type": "object",
2899
+ "properties": {
2900
+ "alliance": {
2901
+ "type": "string",
2902
+ "nullable": true
2903
+ },
2904
+ "barcodeElement1": {
2905
+ "$ref": "#/components/schemas/BarcodeElement"
2906
+ },
2907
+ "barcodeElement2": {
2908
+ "$ref": "#/components/schemas/BarcodeElement"
2909
+ },
2910
+ "carousel": {
2911
+ "type": "boolean"
2912
+ },
2913
+ "autoNavigated1": {
2914
+ "$ref": "#/components/schemas/AutoNavigatedStatus"
2915
+ },
2916
+ "autoNavigated2": {
2917
+ "$ref": "#/components/schemas/AutoNavigatedStatus"
2918
+ },
2919
+ "autoBonus1": {
2920
+ "type": "boolean"
2921
+ },
2922
+ "autoBonus2": {
2923
+ "type": "boolean"
2924
+ },
2925
+ "autoStorageFreight": {
2926
+ "type": "integer",
2927
+ "format": "int32"
2928
+ },
2929
+ "autoFreight1": {
2930
+ "type": "integer",
2931
+ "format": "int32"
2932
+ },
2933
+ "autoFreight2": {
2934
+ "type": "integer",
2935
+ "format": "int32"
2936
+ },
2937
+ "autoFreight3": {
2938
+ "type": "integer",
2939
+ "format": "int32"
2940
+ },
2941
+ "driverControlledStorageFreight": {
2942
+ "type": "integer",
2943
+ "format": "int32"
2944
+ },
2945
+ "driverControlledFreight1": {
2946
+ "type": "integer",
2947
+ "format": "int32"
2948
+ },
2949
+ "driverControlledFreight2": {
2950
+ "type": "integer",
2951
+ "format": "int32"
2952
+ },
2953
+ "driverControlledFreight3": {
2954
+ "type": "integer",
2955
+ "format": "int32"
2956
+ },
2957
+ "sharedFreight": {
2958
+ "type": "integer",
2959
+ "format": "int32"
2960
+ },
2961
+ "endgameDelivered": {
2962
+ "type": "integer",
2963
+ "format": "int32"
2964
+ },
2965
+ "allianceBalanced": {
2966
+ "type": "boolean"
2967
+ },
2968
+ "sharedUnbalanced": {
2969
+ "type": "boolean"
2970
+ },
2971
+ "endgameParked1": {
2972
+ "$ref": "#/components/schemas/EndgameParkedStatus"
2973
+ },
2974
+ "endgameParked2": {
2975
+ "$ref": "#/components/schemas/EndgameParkedStatus"
2976
+ },
2977
+ "capped": {
2978
+ "type": "integer",
2979
+ "format": "int32"
2980
+ },
2981
+ "minorPenalties": {
2982
+ "type": "integer",
2983
+ "format": "int32"
2984
+ },
2985
+ "majorPenalties": {
2986
+ "type": "integer",
2987
+ "format": "int32"
2988
+ },
2989
+ "carouselPoints": {
2990
+ "type": "integer",
2991
+ "format": "int32"
2992
+ },
2993
+ "autoNavigationPoints": {
2994
+ "type": "integer",
2995
+ "format": "int32"
2996
+ },
2997
+ "autoFreightPoints": {
2998
+ "type": "integer",
2999
+ "format": "int32"
3000
+ },
3001
+ "autoBonusPoints": {
3002
+ "type": "integer",
3003
+ "format": "int32"
3004
+ },
3005
+ "driverControlledAllianceHubPoints": {
3006
+ "type": "integer",
3007
+ "format": "int32"
3008
+ },
3009
+ "driverControlledSharedHubPoints": {
3010
+ "type": "integer",
3011
+ "format": "int32"
3012
+ },
3013
+ "driverControlledStoragePoints": {
3014
+ "type": "integer",
3015
+ "format": "int32"
3016
+ },
3017
+ "endgameDeliveryPoints": {
3018
+ "type": "integer",
3019
+ "format": "int32"
3020
+ },
3021
+ "allianceBalancedPoints": {
3022
+ "type": "integer",
3023
+ "format": "int32"
3024
+ },
3025
+ "sharedUnbalancedPoints": {
3026
+ "type": "integer",
3027
+ "format": "int32"
3028
+ },
3029
+ "endgameParkingPoints": {
3030
+ "type": "integer",
3031
+ "format": "int32"
3032
+ },
3033
+ "cappingPoints": {
3034
+ "type": "integer",
3035
+ "format": "int32"
3036
+ },
3037
+ "autoPoints": {
3038
+ "type": "integer",
3039
+ "format": "int32"
3040
+ },
3041
+ "driverControlledPoints": {
3042
+ "type": "integer",
3043
+ "format": "int32"
3044
+ },
3045
+ "endgamePoints": {
3046
+ "type": "integer",
3047
+ "format": "int32"
3048
+ },
3049
+ "penaltyPoints": {
3050
+ "type": "integer",
3051
+ "format": "int32"
3052
+ },
3053
+ "totalPoints": {
3054
+ "type": "integer",
3055
+ "format": "int32"
3056
+ }
3057
+ },
3058
+ "additionalProperties": false
3059
+ },
3060
+ "ScoreDetailAllianceModel_2022": {
3061
+ "title": "Power Play Alliance Score Breakdown",
3062
+ "type": "object",
3063
+ "properties": {
3064
+ "sideOfField": {
3065
+ "$ref": "#/components/schemas/FieldSide"
3066
+ },
3067
+ "initSignalSleeve1": {
3068
+ "type": "boolean"
3069
+ },
3070
+ "initSignalSleeve2": {
3071
+ "type": "boolean"
3072
+ },
3073
+ "robot1Auto": {
3074
+ "$ref": "#/components/schemas/AutoNavigation"
3075
+ },
3076
+ "robot2Auto": {
3077
+ "$ref": "#/components/schemas/AutoNavigation"
3078
+ },
3079
+ "autoTerminal": {
3080
+ "type": "integer",
3081
+ "format": "int32"
3082
+ },
3083
+ "autoJunctions": {
3084
+ "type": "array",
3085
+ "items": {
3086
+ "type": "array",
3087
+ "items": {
3088
+ "type": "array",
3089
+ "items": {
3090
+ "$ref": "#/components/schemas/JunctionElement"
3091
+ }
3092
+ }
3093
+ },
3094
+ "description": "Two dimensional array of lists of items scored on junctions in autonomous. [0,0] is the upper-left corner of the field as viewed from the audience side of the field (V5). The array is indexed by row, then column. (e.g [0,4] is in the upper right corner of the field (Z5).) Each junction is stored bottom up (index 0 is the bottom-most element on the field). MY_* elements belong to the alliance whose score object the element appears in, OTHER_* elements belong to the opposing alliance. (e.g in a set of scores for the red alliance, MY_CONE is a red cone and OTHER_CONE is a blue cone.) For a complete example, if red.autoJunctions[4][0][1] is OTHER_CONE, there is a blue cone in the bottom left cornerof the field (V1) on top of one other cone.",
3095
+ "nullable": true
3096
+ },
3097
+ "dcJunctions": {
3098
+ "type": "array",
3099
+ "items": {
3100
+ "type": "array",
3101
+ "items": {
3102
+ "type": "array",
3103
+ "items": {
3104
+ "$ref": "#/components/schemas/JunctionElement"
3105
+ }
3106
+ }
3107
+ },
3108
+ "description": "Two dimensional array of lists of items scored on junctions in driver-controlled. [0,0] is the upper-left corner of the field as viewed from the audience side of the field (V5). The array is indexed by crow, then column. (e.g [0,4] is in the upper right corner of the field (Z5).) Each junction is stored bottom up (index 0 is the bottom-most element on the field). MY_* elements belong to the alliance whose score object the element appears in, OTHER_* elements belong to the opposing alliance. (e.g in a set of scores for the red alliance, MY_CONE is a red cone and OTHER_CONE is a blue cone.) *_R1_BEACON means the beacon scored by robot 1 on the corresponding alliance. For a complete example, if red.dcJunctions[4][0][1] is OTHER_CONE, there is a blue cone in the bottom left cornerof the field (V1) on top of one other cone.",
3109
+ "nullable": true
3110
+ },
3111
+ "dcTerminalNear": {
3112
+ "type": "integer",
3113
+ "description": "Number of Scored cones in the alliance-colored terminal on the side of the field closest to the alliance station.",
3114
+ "format": "int32"
3115
+ },
3116
+ "dcTerminalFar": {
3117
+ "type": "integer",
3118
+ "description": "Number of Scored cones in the alliance-colored terminal on the side of the field opposite the alliance station.",
3119
+ "format": "int32"
3120
+ },
3121
+ "egNavigated1": {
3122
+ "type": "boolean"
3123
+ },
3124
+ "egNavigated2": {
3125
+ "type": "boolean"
3126
+ },
3127
+ "minorPenalties": {
3128
+ "type": "integer",
3129
+ "format": "int32"
3130
+ },
3131
+ "majorPenalties": {
3132
+ "type": "integer",
3133
+ "format": "int32"
3134
+ },
3135
+ "autoNavigationPoints": {
3136
+ "type": "integer",
3137
+ "format": "int32"
3138
+ },
3139
+ "signalBonusPoints": {
3140
+ "type": "integer",
3141
+ "format": "int32"
3142
+ },
3143
+ "autoJunctionConePoints": {
3144
+ "type": "integer",
3145
+ "format": "int32"
3146
+ },
3147
+ "autoTerminalConePoints": {
3148
+ "type": "integer",
3149
+ "format": "int32"
3150
+ },
3151
+ "dcJunctionConePoints": {
3152
+ "type": "integer",
3153
+ "format": "int32"
3154
+ },
3155
+ "dcTerminalConePoints": {
3156
+ "type": "integer",
3157
+ "format": "int32"
3158
+ },
3159
+ "ownershipPoints": {
3160
+ "type": "integer",
3161
+ "format": "int32"
3162
+ },
3163
+ "circuitPoints": {
3164
+ "type": "integer",
3165
+ "format": "int32"
3166
+ },
3167
+ "egNavigationPoints": {
3168
+ "type": "integer",
3169
+ "format": "int32"
3170
+ },
3171
+ "autoPoints": {
3172
+ "type": "integer",
3173
+ "format": "int32"
3174
+ },
3175
+ "dcPoints": {
3176
+ "type": "integer",
3177
+ "format": "int32"
3178
+ },
3179
+ "endgamePoints": {
3180
+ "type": "integer",
3181
+ "format": "int32"
3182
+ },
3183
+ "penaltyPointsCommitted": {
3184
+ "type": "integer",
3185
+ "format": "int32"
3186
+ },
3187
+ "prePenaltyTotal": {
3188
+ "type": "integer",
3189
+ "format": "int32"
3190
+ },
3191
+ "autoJunctionCones": {
3192
+ "type": "array",
3193
+ "items": {
3194
+ "type": "integer",
3195
+ "format": "int32"
3196
+ },
3197
+ "description": "Array of 4 cone counts scored by this alliance on ground, low, medium, and high junctions respectively, scored in autonomous. E.g. red.autoJunctionCones[2] is the total number of cones scored by red on medium-height junctions.",
3198
+ "nullable": true
3199
+ },
3200
+ "dcJunctionCones": {
3201
+ "type": "array",
3202
+ "items": {
3203
+ "type": "integer",
3204
+ "format": "int32"
3205
+ },
3206
+ "description": "Array of 4 cone counts scored by this alliance on ground, low, medium, and high junctions respectively, scored in driver-controlled. E.g. red.dcJunctionCones[2] is the total number of cones scored by red on medium-height junctions.",
3207
+ "nullable": true
3208
+ },
3209
+ "beacons": {
3210
+ "type": "integer",
3211
+ "format": "int32"
3212
+ },
3213
+ "ownedJunctions": {
3214
+ "type": "integer",
3215
+ "format": "int32"
3216
+ },
3217
+ "circuit": {
3218
+ "type": "boolean"
3219
+ },
3220
+ "totalPoints": {
3221
+ "type": "integer",
3222
+ "format": "int32"
3223
+ },
3224
+ "alliance": {
3225
+ "type": "string",
3226
+ "nullable": true
3227
+ },
3228
+ "team": {
3229
+ "type": "integer",
3230
+ "format": "int32"
3231
+ }
3232
+ },
3233
+ "additionalProperties": false
3234
+ },
3235
+ "ScoreDetailAllianceModel_2023": {
3236
+ "title": "CenterStage Alliance Score Breakdown",
3237
+ "type": "object",
3238
+ "properties": {
3239
+ "initTeamProp1": {
3240
+ "type": "boolean"
3241
+ },
3242
+ "initTeamProp2": {
3243
+ "type": "boolean"
3244
+ },
3245
+ "robot1Auto": {
3246
+ "type": "boolean"
3247
+ },
3248
+ "robot2Auto": {
3249
+ "type": "boolean"
3250
+ },
3251
+ "spikeMarkPixel1": {
3252
+ "type": "boolean"
3253
+ },
3254
+ "spikeMarkPixel2": {
3255
+ "type": "boolean"
3256
+ },
3257
+ "targetBackdropPixel1": {
3258
+ "type": "boolean"
3259
+ },
3260
+ "targetBackdropPixel2": {
3261
+ "type": "boolean"
3262
+ },
3263
+ "autoBackdrop": {
3264
+ "type": "integer",
3265
+ "format": "int32"
3266
+ },
3267
+ "autoBackstage": {
3268
+ "type": "integer",
3269
+ "format": "int32"
3270
+ },
3271
+ "dcBackdrop": {
3272
+ "type": "integer",
3273
+ "format": "int32"
3274
+ },
3275
+ "dcBackstage": {
3276
+ "type": "integer",
3277
+ "format": "int32"
3278
+ },
3279
+ "mosaics": {
3280
+ "type": "integer",
3281
+ "format": "int32"
3282
+ },
3283
+ "maxSetLine": {
3284
+ "type": "integer",
3285
+ "format": "int32"
3286
+ },
3287
+ "egRobot1": {
3288
+ "$ref": "#/components/schemas/EndGameLocation"
3289
+ },
3290
+ "egRobot2": {
3291
+ "$ref": "#/components/schemas/EndGameLocation"
3292
+ },
3293
+ "drone1": {
3294
+ "type": "integer",
3295
+ "format": "int32"
3296
+ },
3297
+ "drone2": {
3298
+ "type": "integer",
3299
+ "format": "int32"
3300
+ },
3301
+ "minorPenalties": {
3302
+ "type": "integer",
3303
+ "format": "int32"
3304
+ },
3305
+ "majorPenalties": {
3306
+ "type": "integer",
3307
+ "format": "int32"
3308
+ },
3309
+ "autoNavigatingPoints": {
3310
+ "type": "integer",
3311
+ "format": "int32"
3312
+ },
3313
+ "autoRandomizationPoints": {
3314
+ "type": "integer",
3315
+ "format": "int32"
3316
+ },
3317
+ "autoBackstagePoints": {
3318
+ "type": "integer",
3319
+ "format": "int32"
3320
+ },
3321
+ "autoBackdropPoints": {
3322
+ "type": "integer",
3323
+ "format": "int32"
3324
+ },
3325
+ "dcBackdropPoints": {
3326
+ "type": "integer",
3327
+ "format": "int32"
3328
+ },
3329
+ "dcBackstagePoints": {
3330
+ "type": "integer",
3331
+ "format": "int32"
3332
+ },
3333
+ "mosaicPoints": {
3334
+ "type": "integer",
3335
+ "format": "int32"
3336
+ },
3337
+ "setBonusPoints": {
3338
+ "type": "integer",
3339
+ "format": "int32"
3340
+ },
3341
+ "egLocationPoints": {
3342
+ "type": "integer",
3343
+ "format": "int32"
3344
+ },
3345
+ "egDronePoints": {
3346
+ "type": "integer",
3347
+ "format": "int32"
3348
+ },
3349
+ "autoPoints": {
3350
+ "type": "integer",
3351
+ "format": "int32"
3352
+ },
3353
+ "dcPoints": {
3354
+ "type": "integer",
3355
+ "format": "int32"
3356
+ },
3357
+ "endgamePoints": {
3358
+ "type": "integer",
3359
+ "format": "int32"
3360
+ },
3361
+ "penaltyPointsCommitted": {
3362
+ "type": "integer",
3363
+ "format": "int32"
3364
+ },
3365
+ "prePenaltyTotal": {
3366
+ "type": "integer",
3367
+ "format": "int32"
3368
+ },
3369
+ "totalPoints": {
3370
+ "type": "integer",
3371
+ "format": "int32"
3372
+ },
3373
+ "alliance": {
3374
+ "type": "string",
3375
+ "nullable": true
3376
+ },
3377
+ "team": {
3378
+ "type": "integer",
3379
+ "format": "int32"
3380
+ }
3381
+ },
3382
+ "additionalProperties": false
3383
+ },
3384
+ "ScoreDetailModel_2019": {
3385
+ "title": "SkyStone Score Details",
3386
+ "type": "object",
3387
+ "properties": {
3388
+ "matchLevel": {
3389
+ "$ref": "#/components/schemas/FTCEventLevel"
3390
+ },
3391
+ "matchSeries": {
3392
+ "type": "integer",
3393
+ "format": "int32"
3394
+ },
3395
+ "matchNumber": {
3396
+ "type": "integer",
3397
+ "format": "int32"
3398
+ },
3399
+ "alliances": {
3400
+ "type": "array",
3401
+ "items": {
3402
+ "$ref": "#/components/schemas/ScoreDetailModelAlliance_2019"
3403
+ },
3404
+ "nullable": true
3405
+ }
3406
+ },
3407
+ "additionalProperties": false
3408
+ },
3409
+ "ScoreDetailModel_2020": {
3410
+ "title": "Ultimate Goal Alliance Score Details",
3411
+ "type": "object",
3412
+ "properties": {
3413
+ "matchLevel": {
3414
+ "$ref": "#/components/schemas/FTCEventLevel"
3415
+ },
3416
+ "matchSeries": {
3417
+ "type": "integer",
3418
+ "format": "int32"
3419
+ },
3420
+ "matchNumber": {
3421
+ "type": "integer",
3422
+ "format": "int32"
3423
+ },
3424
+ "alliances": {
3425
+ "type": "array",
3426
+ "items": {
3427
+ "$ref": "#/components/schemas/ScoreDetailAllianceModel_2020"
3428
+ },
3429
+ "nullable": true
3430
+ }
3431
+ },
3432
+ "additionalProperties": false
3433
+ },
3434
+ "ScoreDetailModel_2021": {
3435
+ "title": "Freight Frenzy Alliance Score Details",
3436
+ "type": "object",
3437
+ "properties": {
3438
+ "matchLevel": {
3439
+ "$ref": "#/components/schemas/FTCEventLevel"
3440
+ },
3441
+ "matchSeries": {
3442
+ "type": "integer",
3443
+ "format": "int32"
3444
+ },
3445
+ "matchNumber": {
3446
+ "type": "integer",
3447
+ "format": "int32"
3448
+ },
3449
+ "randomization": {
3450
+ "type": "integer",
3451
+ "format": "int32"
3452
+ },
3453
+ "alliances": {
3454
+ "type": "array",
3455
+ "items": {
3456
+ "$ref": "#/components/schemas/ScoreDetailAllianceModel_2021"
3457
+ },
3458
+ "nullable": true
3459
+ }
3460
+ },
3461
+ "additionalProperties": false
3462
+ },
3463
+ "ScoreDetailModel_2022": {
3464
+ "title": "Power Play Alliance Score Details",
3465
+ "type": "object",
3466
+ "properties": {
3467
+ "matchLevel": {
3468
+ "$ref": "#/components/schemas/FTCEventLevel"
3469
+ },
3470
+ "matchSeries": {
3471
+ "type": "integer",
3472
+ "format": "int32"
3473
+ },
3474
+ "matchNumber": {
3475
+ "type": "integer",
3476
+ "format": "int32"
3477
+ },
3478
+ "randomization": {
3479
+ "type": "integer",
3480
+ "format": "int32"
3481
+ },
3482
+ "alliances": {
3483
+ "type": "array",
3484
+ "items": {
3485
+ "$ref": "#/components/schemas/ScoreDetailAllianceModel_2022"
3486
+ },
3487
+ "nullable": true
3488
+ }
3489
+ },
3490
+ "additionalProperties": false
3491
+ },
3492
+ "ScoreDetailModel_2023": {
3493
+ "title": "CenterStage Alliance Score Details",
3494
+ "type": "object",
3495
+ "properties": {
3496
+ "matchLevel": {
3497
+ "$ref": "#/components/schemas/FTCEventLevel"
3498
+ },
3499
+ "matchSeries": {
3500
+ "type": "integer",
3501
+ "format": "int32"
3502
+ },
3503
+ "matchNumber": {
3504
+ "type": "integer",
3505
+ "format": "int32"
3506
+ },
3507
+ "randomization": {
3508
+ "type": "integer",
3509
+ "format": "int32"
3510
+ },
3511
+ "alliances": {
3512
+ "type": "array",
3513
+ "items": {
3514
+ "$ref": "#/components/schemas/ScoreDetailAllianceModel_2023"
3515
+ },
3516
+ "nullable": true
3517
+ }
3518
+ },
3519
+ "additionalProperties": false
3520
+ },
3521
+ "ScoreDetailModelAlliance_2019": {
3522
+ "title": "SkyStone Alliance Score Details",
3523
+ "type": "object",
3524
+ "properties": {
3525
+ "alliance": {
3526
+ "type": "string",
3527
+ "nullable": true
3528
+ },
3529
+ "robot1Navigated": {
3530
+ "type": "boolean"
3531
+ },
3532
+ "robot1Parked": {
3533
+ "type": "boolean"
3534
+ },
3535
+ "robot1CapstoneLevel": {
3536
+ "type": "integer",
3537
+ "format": "int32"
3538
+ },
3539
+ "robot2Navigated": {
3540
+ "type": "boolean"
3541
+ },
3542
+ "robot2Parked": {
3543
+ "type": "boolean"
3544
+ },
3545
+ "robot2CapstoneLevel": {
3546
+ "type": "integer",
3547
+ "format": "int32"
3548
+ },
3549
+ "autoStones": {
3550
+ "type": "array",
3551
+ "items": {
3552
+ "$ref": "#/components/schemas/Stone"
3553
+ },
3554
+ "nullable": true
3555
+ },
3556
+ "autoDelivered": {
3557
+ "type": "integer",
3558
+ "format": "int32"
3559
+ },
3560
+ "autoReturned": {
3561
+ "type": "integer",
3562
+ "format": "int32"
3563
+ },
3564
+ "firstReturnedIsSkystone": {
3565
+ "type": "boolean"
3566
+ },
3567
+ "autoPlaced": {
3568
+ "type": "integer",
3569
+ "format": "int32"
3570
+ },
3571
+ "foundationRepositioned": {
3572
+ "type": "boolean"
3573
+ },
3574
+ "foundationMoved": {
3575
+ "type": "boolean"
3576
+ },
3577
+ "driverControlledDelivered": {
3578
+ "type": "integer",
3579
+ "format": "int32"
3580
+ },
3581
+ "driverControlledReturned": {
3582
+ "type": "integer",
3583
+ "format": "int32"
3584
+ },
3585
+ "driverControlledPlaced": {
3586
+ "type": "integer",
3587
+ "format": "int32"
3588
+ },
3589
+ "tallestSkyscraper": {
3590
+ "type": "integer",
3591
+ "format": "int32"
3592
+ },
3593
+ "autoDeliveryPoints": {
3594
+ "type": "integer",
3595
+ "format": "int32"
3596
+ },
3597
+ "autoPlacedPoints": {
3598
+ "type": "integer",
3599
+ "format": "int32"
3600
+ },
3601
+ "autonomousPoints": {
3602
+ "type": "integer",
3603
+ "format": "int32"
3604
+ },
3605
+ "repositionedPoints": {
3606
+ "type": "integer",
3607
+ "format": "int32"
3608
+ },
3609
+ "navigationPoints": {
3610
+ "type": "integer",
3611
+ "format": "int32"
3612
+ },
3613
+ "driverControlledDeliveryPoints": {
3614
+ "type": "integer",
3615
+ "format": "int32"
3616
+ },
3617
+ "driverControlledPlacedPoints": {
3618
+ "type": "integer",
3619
+ "format": "int32"
3620
+ },
3621
+ "skyscraperBonusPoints": {
3622
+ "type": "integer",
3623
+ "format": "int32"
3624
+ },
3625
+ "capstonePoints": {
3626
+ "type": "integer",
3627
+ "format": "int32"
3628
+ },
3629
+ "driverControlledPoints": {
3630
+ "type": "integer",
3631
+ "format": "int32"
3632
+ },
3633
+ "parkingPoints": {
3634
+ "type": "integer",
3635
+ "format": "int32"
3636
+ },
3637
+ "endGamePoints": {
3638
+ "type": "integer",
3639
+ "format": "int32"
3640
+ },
3641
+ "minorPenalties": {
3642
+ "type": "integer",
3643
+ "format": "int32"
3644
+ },
3645
+ "majorPenalties": {
3646
+ "type": "integer",
3647
+ "format": "int32"
3648
+ },
3649
+ "penaltyPoints": {
3650
+ "type": "integer",
3651
+ "format": "int32"
3652
+ },
3653
+ "totalPoints": {
3654
+ "type": "integer",
3655
+ "format": "int32"
3656
+ }
3657
+ },
3658
+ "additionalProperties": false
3659
+ },
3660
+ "ScoreDetailModelSinglePlayer_2020": {
3661
+ "title": "Ultimate Goal Single Team Score Details",
3662
+ "type": "object",
3663
+ "properties": {
3664
+ "matchLevel": {
3665
+ "$ref": "#/components/schemas/FTCEventLevel"
3666
+ },
3667
+ "matchNumber": {
3668
+ "type": "integer",
3669
+ "format": "int32"
3670
+ },
3671
+ "teamNumber": {
3672
+ "type": "integer",
3673
+ "format": "int32"
3674
+ },
3675
+ "scores": {
3676
+ "$ref": "#/components/schemas/AllianceScore_2020"
3677
+ }
3678
+ },
3679
+ "additionalProperties": false
3680
+ },
3681
+ "ScoreDetailModelSinglePlayer_2021": {
3682
+ "title": "Freight Frenzy Single Team Score Details",
3683
+ "type": "object",
3684
+ "properties": {
3685
+ "matchLevel": {
3686
+ "$ref": "#/components/schemas/FTCEventLevel"
3687
+ },
3688
+ "matchNumber": {
3689
+ "type": "integer",
3690
+ "format": "int32"
3691
+ },
3692
+ "randomization": {
3693
+ "type": "integer",
3694
+ "format": "int32"
3695
+ },
3696
+ "teamNumber": {
3697
+ "type": "integer",
3698
+ "format": "int32"
3699
+ },
3700
+ "scores": {
3701
+ "$ref": "#/components/schemas/ScoreDetailSinglePlayer_2021"
3702
+ }
3703
+ },
3704
+ "additionalProperties": false
3705
+ },
3706
+ "ScoreDetailModelSinglePlayer_2022": {
3707
+ "title": "Power Play Single Team Score Details",
3708
+ "type": "object",
3709
+ "properties": {
3710
+ "matchLevel": {
3711
+ "$ref": "#/components/schemas/FTCEventLevel"
3712
+ },
3713
+ "matchNumber": {
3714
+ "type": "integer",
3715
+ "format": "int32"
3716
+ },
3717
+ "randomization": {
3718
+ "type": "integer",
3719
+ "format": "int32"
3720
+ },
3721
+ "teamNumber": {
3722
+ "type": "integer",
3723
+ "format": "int32"
3724
+ },
3725
+ "scores": {
3726
+ "$ref": "#/components/schemas/ScoreDetailSinglePlayer_2022"
3727
+ }
3728
+ },
3729
+ "additionalProperties": false
3730
+ },
3731
+ "ScoreDetailModelSinglePlayer_2023": {
3732
+ "title": "CensterStage Single Team Score Details",
3733
+ "type": "object",
3734
+ "properties": {
3735
+ "matchLevel": {
3736
+ "$ref": "#/components/schemas/FTCEventLevel"
3737
+ },
3738
+ "matchNumber": {
3739
+ "type": "integer",
3740
+ "format": "int32"
3741
+ },
3742
+ "randomization": {
3743
+ "type": "integer",
3744
+ "format": "int32"
3745
+ },
3746
+ "teamNumber": {
3747
+ "type": "integer",
3748
+ "format": "int32"
3749
+ },
3750
+ "scores": {
3751
+ "$ref": "#/components/schemas/ScoreDetailSinglePlayer_2023"
3752
+ }
3753
+ },
3754
+ "additionalProperties": false
3755
+ },
3756
+ "ScoreDetailSinglePlayer_2021": {
3757
+ "title": "Freight Frenzy Remote Score Breakdown",
3758
+ "type": "object",
3759
+ "properties": {
3760
+ "barcodeElement": {
3761
+ "$ref": "#/components/schemas/BarcodeElement"
3762
+ },
3763
+ "carousel": {
3764
+ "type": "boolean"
3765
+ },
3766
+ "autoNavigated": {
3767
+ "$ref": "#/components/schemas/AutoNavigatedStatus"
3768
+ },
3769
+ "autoBonus": {
3770
+ "type": "boolean"
3771
+ },
3772
+ "autoStorageFreight": {
3773
+ "type": "integer",
3774
+ "format": "int32"
3775
+ },
3776
+ "autoFreight1": {
3777
+ "type": "integer",
3778
+ "format": "int32"
3779
+ },
3780
+ "autoFreight2": {
3781
+ "type": "integer",
3782
+ "format": "int32"
3783
+ },
3784
+ "autoFreight3": {
3785
+ "type": "integer",
3786
+ "format": "int32"
3787
+ },
3788
+ "driverControlledStorageFreight": {
3789
+ "type": "integer",
3790
+ "format": "int32"
3791
+ },
3792
+ "driverControlledFreight1": {
3793
+ "type": "integer",
3794
+ "format": "int32"
3795
+ },
3796
+ "driverControlledFreight2": {
3797
+ "type": "integer",
3798
+ "format": "int32"
3799
+ },
3800
+ "driverControlledFreight3": {
3801
+ "type": "integer",
3802
+ "format": "int32"
3803
+ },
3804
+ "endgameDelivered": {
3805
+ "type": "integer",
3806
+ "format": "int32"
3807
+ },
3808
+ "allianceBalanced": {
3809
+ "type": "boolean"
3810
+ },
3811
+ "endgameParked": {
3812
+ "$ref": "#/components/schemas/EndgameParkedStatus"
3813
+ },
3814
+ "capped": {
3815
+ "type": "integer",
3816
+ "format": "int32"
3817
+ },
3818
+ "minorPenalties": {
3819
+ "type": "integer",
3820
+ "format": "int32"
3821
+ },
3822
+ "majorPenalties": {
3823
+ "type": "integer",
3824
+ "format": "int32"
3825
+ },
3826
+ "carouselPoints": {
3827
+ "type": "integer",
3828
+ "format": "int32"
3829
+ },
3830
+ "autoNavigationPoints": {
3831
+ "type": "integer",
3832
+ "format": "int32"
3833
+ },
3834
+ "autoFreightPoints": {
3835
+ "type": "integer",
3836
+ "format": "int32"
3837
+ },
3838
+ "autoBonusPoints": {
3839
+ "type": "integer",
3840
+ "format": "int32"
3841
+ },
3842
+ "driverControlledAllianceHubPoints": {
3843
+ "type": "integer",
3844
+ "format": "int32"
3845
+ },
3846
+ "driverControlledStoragePoints": {
3847
+ "type": "integer",
3848
+ "format": "int32"
3849
+ },
3850
+ "endgameDeliveryPoints": {
3851
+ "type": "integer",
3852
+ "format": "int32"
3853
+ },
3854
+ "allianceBalancedPoints": {
3855
+ "type": "integer",
3856
+ "format": "int32"
3857
+ },
3858
+ "endgameParkingPoints": {
3859
+ "type": "integer",
3860
+ "format": "int32"
3861
+ },
3862
+ "cappingPoints": {
3863
+ "type": "integer",
3864
+ "format": "int32"
3865
+ },
3866
+ "autoPoints": {
3867
+ "type": "integer",
3868
+ "format": "int32"
3869
+ },
3870
+ "driverControlledPoints": {
3871
+ "type": "integer",
3872
+ "format": "int32"
3873
+ },
3874
+ "endgamePoints": {
3875
+ "type": "integer",
3876
+ "format": "int32"
3877
+ },
3878
+ "penaltyPoints": {
3879
+ "type": "integer",
3880
+ "format": "int32"
3881
+ },
3882
+ "totalPoints": {
3883
+ "type": "integer",
3884
+ "format": "int32"
3885
+ }
3886
+ },
3887
+ "additionalProperties": false
3888
+ },
3889
+ "ScoreDetailSinglePlayer_2022": {
3890
+ "title": "Power Play Remote Score Breakdown",
3891
+ "type": "object",
3892
+ "properties": {
3893
+ "initSignalSleeve": {
3894
+ "type": "boolean"
3895
+ },
3896
+ "robotAuto": {
3897
+ "$ref": "#/components/schemas/AutoNavigation"
3898
+ },
3899
+ "autoTerminal": {
3900
+ "type": "integer",
3901
+ "format": "int32"
3902
+ },
3903
+ "autoJunctions": {
3904
+ "type": "array",
3905
+ "items": {
3906
+ "type": "array",
3907
+ "items": {
3908
+ "type": "array",
3909
+ "items": {
3910
+ "$ref": "#/components/schemas/JunctionElement"
3911
+ }
3912
+ }
3913
+ },
3914
+ "description": "Two dimensional array of lists of items scored on junctions in autonomous. [0,0] is the upper-left corner of the field as viewed from the audience side of the field. The array is indexed by row, then column. (e.g [0,2] is in the upper right corner of the field.) Each junction is stored bottom up (index 0 is the bottom-most element on the field).",
3915
+ "nullable": true
3916
+ },
3917
+ "dcJunctions": {
3918
+ "type": "array",
3919
+ "items": {
3920
+ "type": "array",
3921
+ "items": {
3922
+ "type": "array",
3923
+ "items": {
3924
+ "$ref": "#/components/schemas/JunctionElement"
3925
+ }
3926
+ }
3927
+ },
3928
+ "description": "Two dimensional array of lists of items scored on junctions in driver-controlled. [0,0] is the upper-left corner of the field as viewed from the audience side of the field. The array is indexed by crow, then column. (e.g [0,2] is in the upper right corner of the field.) Each junction is stored bottom up (index 0 is the bottom-most element on the field).",
3929
+ "nullable": true
3930
+ },
3931
+ "dcTerminal": {
3932
+ "type": "integer",
3933
+ "format": "int32"
3934
+ },
3935
+ "egNavigated": {
3936
+ "type": "boolean"
3937
+ },
3938
+ "minorPenalties": {
3939
+ "type": "integer",
3940
+ "format": "int32"
3941
+ },
3942
+ "majorPenalties": {
3943
+ "type": "integer",
3944
+ "format": "int32"
3945
+ },
3946
+ "autoNavigationPoints": {
3947
+ "type": "integer",
3948
+ "format": "int32"
3949
+ },
3950
+ "signalBonusPoints": {
3951
+ "type": "integer",
3952
+ "format": "int32"
3953
+ },
3954
+ "autoJunctionConePoints": {
3955
+ "type": "integer",
3956
+ "format": "int32"
3957
+ },
3958
+ "autoTerminalConePoints": {
3959
+ "type": "integer",
3960
+ "format": "int32"
3961
+ },
3962
+ "dcJunctionConePoints": {
3963
+ "type": "integer",
3964
+ "format": "int32"
3965
+ },
3966
+ "dcTerminalConePoints": {
3967
+ "type": "integer",
3968
+ "format": "int32"
3969
+ },
3970
+ "ownershipPoints": {
3971
+ "type": "integer",
3972
+ "format": "int32"
3973
+ },
3974
+ "circuitPoints": {
3975
+ "type": "integer",
3976
+ "format": "int32"
3977
+ },
3978
+ "egNavigationPoints": {
3979
+ "type": "integer",
3980
+ "format": "int32"
3981
+ },
3982
+ "autoPoints": {
3983
+ "type": "integer",
3984
+ "format": "int32"
3985
+ },
3986
+ "dcPoints": {
3987
+ "type": "integer",
3988
+ "format": "int32"
3989
+ },
3990
+ "endgamePoints": {
3991
+ "type": "integer",
3992
+ "format": "int32"
3993
+ },
3994
+ "penaltyPointsCommitted": {
3995
+ "type": "integer",
3996
+ "format": "int32"
3997
+ },
3998
+ "prePenaltyTotal": {
3999
+ "type": "integer",
4000
+ "format": "int32"
4001
+ },
4002
+ "autoJunctionCones": {
4003
+ "type": "array",
4004
+ "items": {
4005
+ "type": "integer",
4006
+ "format": "int32"
4007
+ },
4008
+ "description": "Array of 4 cone counts scored by this team on ground, low, medium, and high junctions respectively, scored in autonomous. E.g. red.autoJunctionCones[2] is the total number of cones scored by red on medium-height junctions.",
4009
+ "nullable": true
4010
+ },
4011
+ "dcJunctionCones": {
4012
+ "type": "array",
4013
+ "items": {
4014
+ "type": "integer",
4015
+ "format": "int32"
4016
+ },
4017
+ "description": "Array of 4 cone counts scored by this team on ground, low, medium, and high junctions respectively, scored in driver-controlled. E.g. red.dcJunctionCones[2] is the total number of cones scored by red on medium-height junctions.",
4018
+ "nullable": true
4019
+ },
4020
+ "beacons": {
4021
+ "type": "integer",
4022
+ "format": "int32"
4023
+ },
4024
+ "ownedJunctions": {
4025
+ "type": "integer",
4026
+ "format": "int32"
4027
+ },
4028
+ "circuit": {
4029
+ "type": "boolean"
4030
+ },
4031
+ "totalPoints": {
4032
+ "type": "integer",
4033
+ "format": "int32"
4034
+ }
4035
+ },
4036
+ "additionalProperties": false
4037
+ },
4038
+ "ScoreDetailSinglePlayer_2023": {
4039
+ "title": "CenterStage Remote Score Breakdown",
4040
+ "type": "object",
4041
+ "properties": {
4042
+ "initTeamProp": {
4043
+ "type": "boolean"
4044
+ },
4045
+ "robotAuto": {
4046
+ "type": "boolean"
4047
+ },
4048
+ "spikeMarkPixel": {
4049
+ "type": "boolean"
4050
+ },
4051
+ "targetBackdropPixel": {
4052
+ "type": "boolean"
4053
+ },
4054
+ "autoBackdrop": {
4055
+ "type": "integer",
4056
+ "format": "int32"
4057
+ },
4058
+ "autoBackstage": {
4059
+ "type": "integer",
4060
+ "format": "int32"
4061
+ },
4062
+ "dcBackdrop": {
4063
+ "type": "integer",
4064
+ "format": "int32"
4065
+ },
4066
+ "dcBackstage": {
4067
+ "type": "integer",
4068
+ "format": "int32"
4069
+ },
4070
+ "mosaics": {
4071
+ "type": "integer",
4072
+ "format": "int32"
4073
+ },
4074
+ "maxSetLine": {
4075
+ "type": "integer",
4076
+ "format": "int32"
4077
+ },
4078
+ "egRobot": {
4079
+ "$ref": "#/components/schemas/EndGameLocation"
4080
+ },
4081
+ "drone": {
4082
+ "type": "integer",
4083
+ "format": "int32"
4084
+ },
4085
+ "minorPenalties": {
4086
+ "type": "integer",
4087
+ "format": "int32"
4088
+ },
4089
+ "majorPenalties": {
4090
+ "type": "integer",
4091
+ "format": "int32"
4092
+ },
4093
+ "autoNavigatingPoints": {
4094
+ "type": "integer",
4095
+ "format": "int32"
4096
+ },
4097
+ "autoRandomizationPoints": {
4098
+ "type": "integer",
4099
+ "format": "int32"
4100
+ },
4101
+ "autoBackstagePoints": {
4102
+ "type": "integer",
4103
+ "format": "int32"
4104
+ },
4105
+ "autoBackdropPoints": {
4106
+ "type": "integer",
4107
+ "format": "int32"
4108
+ },
4109
+ "dcBackdropPoints": {
4110
+ "type": "integer",
4111
+ "format": "int32"
4112
+ },
4113
+ "dcBackstagePoints": {
4114
+ "type": "integer",
4115
+ "format": "int32"
4116
+ },
4117
+ "mosaicPoints": {
4118
+ "type": "integer",
4119
+ "format": "int32"
4120
+ },
4121
+ "setBonusPoints": {
4122
+ "type": "integer",
4123
+ "format": "int32"
4124
+ },
4125
+ "egLocationPoints": {
4126
+ "type": "integer",
4127
+ "format": "int32"
4128
+ },
4129
+ "egDronePoints": {
4130
+ "type": "integer",
4131
+ "format": "int32"
4132
+ },
4133
+ "autoPoints": {
4134
+ "type": "integer",
4135
+ "format": "int32"
4136
+ },
4137
+ "dcPoints": {
4138
+ "type": "integer",
4139
+ "format": "int32"
4140
+ },
4141
+ "endgamePoints": {
4142
+ "type": "integer",
4143
+ "format": "int32"
4144
+ },
4145
+ "penaltyPointsCommitted": {
4146
+ "type": "integer",
4147
+ "format": "int32"
4148
+ },
4149
+ "prePenaltyTotal": {
4150
+ "type": "integer",
4151
+ "format": "int32"
4152
+ },
4153
+ "totalPoints": {
4154
+ "type": "integer",
4155
+ "format": "int32"
4156
+ }
4157
+ },
4158
+ "additionalProperties": false
4159
+ },
4160
+ "SeasonAwardListingsModel": {
4161
+ "title": "Award List",
4162
+ "type": "object",
4163
+ "properties": {
4164
+ "awards": {
4165
+ "type": "array",
4166
+ "items": {
4167
+ "$ref": "#/components/schemas/SeasonAwardsModel"
4168
+ },
4169
+ "nullable": true
4170
+ }
4171
+ },
4172
+ "additionalProperties": false
4173
+ },
4174
+ "SeasonAwardsModel": {
4175
+ "title": "Award",
4176
+ "type": "object",
4177
+ "properties": {
4178
+ "awardId": {
4179
+ "type": "integer",
4180
+ "format": "int32"
4181
+ },
4182
+ "name": {
4183
+ "type": "string",
4184
+ "nullable": true
4185
+ },
4186
+ "description": {
4187
+ "type": "string",
4188
+ "nullable": true
4189
+ },
4190
+ "forPerson": {
4191
+ "type": "boolean"
4192
+ }
4193
+ },
4194
+ "additionalProperties": false
4195
+ },
4196
+ "SeasonEventListingsModel_Version2": {
4197
+ "title": "Event List",
4198
+ "type": "object",
4199
+ "properties": {
4200
+ "events": {
4201
+ "type": "array",
4202
+ "items": {
4203
+ "$ref": "#/components/schemas/SeasonEventModel_Version2"
4204
+ },
4205
+ "nullable": true
4206
+ },
4207
+ "eventCount": {
4208
+ "type": "integer",
4209
+ "format": "int32"
4210
+ }
4211
+ },
4212
+ "additionalProperties": false
4213
+ },
4214
+ "SeasonEventModel_Version2": {
4215
+ "title": "Event",
4216
+ "type": "object",
4217
+ "properties": {
4218
+ "eventId": {
4219
+ "type": "string",
4220
+ "format": "uuid"
4221
+ },
4222
+ "code": {
4223
+ "type": "string",
4224
+ "nullable": true
4225
+ },
4226
+ "divisionCode": {
4227
+ "type": "string",
4228
+ "nullable": true
4229
+ },
4230
+ "name": {
4231
+ "type": "string",
4232
+ "nullable": true
4233
+ },
4234
+ "remote": {
4235
+ "type": "boolean"
4236
+ },
4237
+ "hybrid": {
4238
+ "type": "boolean"
4239
+ },
4240
+ "fieldCount": {
4241
+ "type": "integer",
4242
+ "format": "int32"
4243
+ },
4244
+ "published": {
4245
+ "type": "boolean"
4246
+ },
4247
+ "type": {
4248
+ "type": "string",
4249
+ "nullable": true
4250
+ },
4251
+ "typeName": {
4252
+ "type": "string",
4253
+ "nullable": true
4254
+ },
4255
+ "regionCode": {
4256
+ "type": "string",
4257
+ "nullable": true
4258
+ },
4259
+ "leagueCode": {
4260
+ "type": "string",
4261
+ "nullable": true
4262
+ },
4263
+ "districtCode": {
4264
+ "type": "string",
4265
+ "nullable": true
4266
+ },
4267
+ "venue": {
4268
+ "type": "string",
4269
+ "nullable": true
4270
+ },
4271
+ "address": {
4272
+ "type": "string",
4273
+ "nullable": true
4274
+ },
4275
+ "city": {
4276
+ "type": "string",
4277
+ "nullable": true
4278
+ },
4279
+ "stateprov": {
4280
+ "type": "string",
4281
+ "nullable": true
4282
+ },
4283
+ "country": {
4284
+ "type": "string",
4285
+ "nullable": true
4286
+ },
4287
+ "website": {
4288
+ "type": "string",
4289
+ "nullable": true
4290
+ },
4291
+ "liveStreamUrl": {
4292
+ "type": "string",
4293
+ "nullable": true
4294
+ },
4295
+ "coordinates": {
4296
+ "$ref": "#/components/schemas/Point"
4297
+ },
4298
+ "webcasts": {
4299
+ "type": "array",
4300
+ "items": {
4301
+ "type": "string"
4302
+ },
4303
+ "nullable": true
4304
+ },
4305
+ "timezone": {
4306
+ "type": "string",
4307
+ "nullable": true
4308
+ },
4309
+ "dateStart": {
4310
+ "type": "string",
4311
+ "format": "date-time"
4312
+ },
4313
+ "dateEnd": {
4314
+ "type": "string",
4315
+ "format": "date-time"
4316
+ }
4317
+ },
4318
+ "additionalProperties": false
4319
+ },
4320
+ "SeasonLeagueListingsModel_Version2": {
4321
+ "title": "League List",
4322
+ "type": "object",
4323
+ "properties": {
4324
+ "leagues": {
4325
+ "type": "array",
4326
+ "items": {
4327
+ "$ref": "#/components/schemas/SeasonLeagueModel_Version2"
4328
+ },
4329
+ "nullable": true
4330
+ },
4331
+ "leagueCount": {
4332
+ "type": "integer",
4333
+ "format": "int32"
4334
+ }
4335
+ },
4336
+ "additionalProperties": false
4337
+ },
4338
+ "SeasonLeagueModel_Version2": {
4339
+ "title": "League",
4340
+ "type": "object",
4341
+ "properties": {
4342
+ "region": {
4343
+ "type": "string",
4344
+ "nullable": true
4345
+ },
4346
+ "code": {
4347
+ "type": "string",
4348
+ "nullable": true
4349
+ },
4350
+ "name": {
4351
+ "type": "string",
4352
+ "nullable": true
4353
+ },
4354
+ "remote": {
4355
+ "type": "boolean",
4356
+ "nullable": true
4357
+ },
4358
+ "parentLeagueCode": {
4359
+ "type": "string",
4360
+ "nullable": true
4361
+ },
4362
+ "parentLeagueName": {
4363
+ "type": "string",
4364
+ "nullable": true
4365
+ },
4366
+ "location": {
4367
+ "type": "string",
4368
+ "nullable": true
4369
+ }
4370
+ },
4371
+ "additionalProperties": false
4372
+ },
4373
+ "SeasonSummaryModel_Version2": {
4374
+ "title": "Season Summary",
4375
+ "type": "object",
4376
+ "properties": {
4377
+ "eventCount": {
4378
+ "type": "integer",
4379
+ "format": "int32"
4380
+ },
4381
+ "gameName": {
4382
+ "type": "string",
4383
+ "nullable": true
4384
+ },
4385
+ "kickoff": {
4386
+ "type": "string",
4387
+ "format": "date-time",
4388
+ "nullable": true
4389
+ },
4390
+ "rookieStart": {
4391
+ "type": "integer",
4392
+ "format": "int32"
4393
+ },
4394
+ "teamCount": {
4395
+ "type": "integer",
4396
+ "format": "int32"
4397
+ },
4398
+ "frcChampionships": {
4399
+ "type": "array",
4400
+ "items": {
4401
+ "$ref": "#/components/schemas/SeasonSummaryModelChampionship"
4402
+ },
4403
+ "nullable": true
4404
+ }
4405
+ },
4406
+ "additionalProperties": false
4407
+ },
4408
+ "SeasonSummaryModelChampionship": {
4409
+ "title": "Summary Championship Description",
4410
+ "type": "object",
4411
+ "properties": {
4412
+ "name": {
4413
+ "type": "string",
4414
+ "nullable": true
4415
+ },
4416
+ "startDate": {
4417
+ "type": "string",
4418
+ "format": "date-time",
4419
+ "nullable": true
4420
+ },
4421
+ "location": {
4422
+ "type": "string",
4423
+ "nullable": true
4424
+ }
4425
+ },
4426
+ "additionalProperties": false
4427
+ },
4428
+ "SeasonTeamListingsModel_Version2": {
4429
+ "title": "Team List",
4430
+ "type": "object",
4431
+ "properties": {
4432
+ "teams": {
4433
+ "type": "array",
4434
+ "items": {
4435
+ "$ref": "#/components/schemas/SeasonTeamModel_Version2"
4436
+ },
4437
+ "nullable": true
4438
+ },
4439
+ "teamCountTotal": {
4440
+ "type": "integer",
4441
+ "format": "int32"
4442
+ },
4443
+ "teamCountPage": {
4444
+ "type": "integer",
4445
+ "format": "int32"
4446
+ },
4447
+ "pageCurrent": {
4448
+ "type": "integer",
4449
+ "format": "int32"
4450
+ },
4451
+ "pageTotal": {
4452
+ "type": "integer",
4453
+ "format": "int32"
4454
+ }
4455
+ },
4456
+ "additionalProperties": false
4457
+ },
4458
+ "SeasonTeamModel_Version2": {
4459
+ "title": "Team",
4460
+ "type": "object",
4461
+ "properties": {
4462
+ "teamNumber": {
4463
+ "type": "integer",
4464
+ "format": "int32"
4465
+ },
4466
+ "displayTeamNumber": {
4467
+ "type": "string",
4468
+ "nullable": true
4469
+ },
4470
+ "nameFull": {
4471
+ "type": "string",
4472
+ "nullable": true
4473
+ },
4474
+ "nameShort": {
4475
+ "type": "string",
4476
+ "nullable": true
4477
+ },
4478
+ "schoolName": {
4479
+ "type": "string",
4480
+ "nullable": true
4481
+ },
4482
+ "city": {
4483
+ "type": "string",
4484
+ "nullable": true
4485
+ },
4486
+ "stateProv": {
4487
+ "type": "string",
4488
+ "nullable": true
4489
+ },
4490
+ "country": {
4491
+ "type": "string",
4492
+ "nullable": true
4493
+ },
4494
+ "website": {
4495
+ "type": "string",
4496
+ "nullable": true
4497
+ },
4498
+ "rookieYear": {
4499
+ "type": "integer",
4500
+ "format": "int32",
4501
+ "nullable": true
4502
+ },
4503
+ "robotName": {
4504
+ "type": "string",
4505
+ "nullable": true
4506
+ },
4507
+ "districtCode": {
4508
+ "type": "string",
4509
+ "nullable": true
4510
+ },
4511
+ "homeCMP": {
4512
+ "type": "string",
4513
+ "nullable": true
4514
+ },
4515
+ "homeRegion": {
4516
+ "type": "string",
4517
+ "nullable": true
4518
+ },
4519
+ "displayLocation": {
4520
+ "type": "string",
4521
+ "nullable": true,
4522
+ "readOnly": true
4523
+ }
4524
+ },
4525
+ "additionalProperties": false
4526
+ },
4527
+ "SelectionModel": {
4528
+ "title": "Selection",
4529
+ "type": "object",
4530
+ "properties": {
4531
+ "index": {
4532
+ "type": "integer",
4533
+ "format": "int32"
4534
+ },
4535
+ "team": {
4536
+ "type": "integer",
4537
+ "format": "int32"
4538
+ },
4539
+ "result": {
4540
+ "$ref": "#/components/schemas/SelectionResult"
4541
+ }
4542
+ },
4543
+ "additionalProperties": false
4544
+ },
4545
+ "SelectionResult": {
4546
+ "enum": [
4547
+ "ACCEPT",
4548
+ "DECLINE",
4549
+ "CAPTAIN"
4550
+ ],
4551
+ "type": "string"
4552
+ },
4553
+ "Stone": {
4554
+ "enum": [
4555
+ "NONE",
4556
+ "STONE",
4557
+ "SKYSTONE"
4558
+ ],
4559
+ "type": "string"
4560
+ },
4561
+ "TeamRankingModel": {
4562
+ "title": "Team Ranking",
4563
+ "type": "object",
4564
+ "properties": {
4565
+ "rank": {
4566
+ "type": "integer",
4567
+ "format": "int32"
4568
+ },
4569
+ "teamNumber": {
4570
+ "type": "integer",
4571
+ "format": "int32"
4572
+ },
4573
+ "displayTeamNumber": {
4574
+ "type": "string",
4575
+ "nullable": true
4576
+ },
4577
+ "teamName": {
4578
+ "type": "string",
4579
+ "nullable": true
4580
+ },
4581
+ "sortOrder1": {
4582
+ "type": "number",
4583
+ "format": "double"
4584
+ },
4585
+ "sortOrder2": {
4586
+ "type": "number",
4587
+ "format": "double"
4588
+ },
4589
+ "sortOrder3": {
4590
+ "type": "number",
4591
+ "format": "double"
4592
+ },
4593
+ "sortOrder4": {
4594
+ "type": "number",
4595
+ "format": "double"
4596
+ },
4597
+ "sortOrder5": {
4598
+ "type": "number",
4599
+ "format": "double"
4600
+ },
4601
+ "sortOrder6": {
4602
+ "type": "number",
4603
+ "format": "double"
4604
+ },
4605
+ "wins": {
4606
+ "type": "integer",
4607
+ "format": "int32"
4608
+ },
4609
+ "losses": {
4610
+ "type": "integer",
4611
+ "format": "int32"
4612
+ },
4613
+ "ties": {
4614
+ "type": "integer",
4615
+ "format": "int32"
4616
+ },
4617
+ "qualAverage": {
4618
+ "type": "number",
4619
+ "format": "double"
4620
+ },
4621
+ "dq": {
4622
+ "type": "integer",
4623
+ "format": "int32"
4624
+ },
4625
+ "matchesPlayed": {
4626
+ "type": "integer",
4627
+ "format": "int32"
4628
+ },
4629
+ "matchesCounted": {
4630
+ "type": "integer",
4631
+ "format": "int32"
4632
+ }
4633
+ },
4634
+ "additionalProperties": false
4635
+ }
4636
+ },
4637
+ "securitySchemes": {
4638
+ "basic": {
4639
+ "type": "http",
4640
+ "description": "To register for the api, register at https://ftc-events.firstinspires.org/services/API/register",
4641
+ "scheme": "basic"
4642
+ }
4643
+ }
4644
+ }
4645
+ }