-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathV1API.apib
713 lines (575 loc) · 31.8 KB
/
V1API.apib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
FORMAT: 1A
HOST: https://airports.api.hscc.bdpa.org/v1
# BDPA Airports API
Based on [simple REST
principles](https://searchapparchitecture.techtarget.com/definition/RESTful-API),
the BDPA Airports API returns JSON data responses to requests. This is the API
used by teams and their apps for the 2020 BDPA National High School Computer
Competition. It holds all of the airline and flight data teams' apps must
interact with. The API is live and will ideally remain online indefinitely.
The base address of BDPA Airports API is https://airports.api.hscc.bdpa.org/X
where `X` is the version of the API you want to use. There is currently only one
version, so `X = v1`. Each version of the API provides a set of endpoints with
their own unique path and requirements.
[The source code behind the API is available on
GitHub](https://github.com/nhscc/airports.api.hscc.bdpa.org). If you have any
troubles, please open an issue there.
## Requesting a Key
To access the majority of this API's endpoints requires a key. If your team
wants a key, or needs to replace a lost or stolen key, please contact NHSCC
staff through Slack or [open an issue on
GitHub](https://github.com/nhscc/airports.api.hscc.bdpa.org).
When you get your key, include it in your requests' header as `key:
your-special-api-key-here` and you will be immediately authenticated into the
system.
## Rules of API Access
1. Do not bombard the API with requests or you risk permanent IP/subnet ban.
**Limit your apps to no more than 10 requests per second per API key**. If
your app ends up sending too many requests over some time period, you'll get
a `HTTP 429` response along with a monotonically increasing soft ban
(starting at 15 minutes). Similarly, the size of requests is strictly
limited, so you must limit the amount of data you're sending. When you send a
request that is too large (>100KB), it will fail with a `HTTP 413` response.
2. **Do not reveal your API key to anyone** not on your own team. It is how the
API identifies your team. Do not upload it to GitHub or leave it lying around
in your source code. Save it to a file and `.gitignore` it or save it to an
environment variable.
3. Since the API is live, you might be able to see or interact
with content posted by other teams. If this is the case, please do not post
anything inappropriate.
4. If you have a relevant feature request or you encounter any vulnerabilities,
errors, or other issues, don't hesitate to contact NHSCC staff via Slack or
[open an issue on
GitHub](https://github.com/nhscc/airports.api.hscc.bdpa.org). For significant
enough finds, bonus points may be awarded. On the other hand, abusing any
vulnerability or bug may result in disqualification.
5. **The API was built to randomly return errors every so often**. That means
your app must be prepared to deal with `HTTP 555` and other bad responses.
However, if you're consistently getting `HTTP 5xx` errors back to back, then
something is wrong. Please report this if it happens.
6. All responses are raw JSON. All request payloads must be sent as raw JSON.
`JSON.stringify()` and `JSON.parse()` or whatever language equivalent is
available to you is your friend!
## Request Methods
This API is based on [simple REST
principles](https://searchapparchitecture.techtarget.com/definition/RESTful-API).
Resources are accessed via standard HTTPS requests in UTF-8 format to an API
endpoint. This API understands the following HTTP request methods:
| METHOD | MEANING |
|----- |----- |
| GET | Return data about something |
| POST | Create something new |
| PUT | Modify something |
| DELETE | Delete something |
## Globally Unique Flight IDs
To retrieve data about one or more flights, you must know that flight's
`flight_id`. These IDs are globally unique within the API. That is: no two
flights will ever have the same ID in any instance. Use this fact to your
advantage.
## Rate Limits
As said earlier, do not bombard the API with requests. If you do, the API will
soft ban you for fifteen minutes the first time before accepting requests from
your API key or IP address again. Each following time this happens within a
certain period, your ban time will quadruple.
So **limit your apps to no more than 10 requests per second per API key**. You
know you've been soft banned if you receive an `HTTP 429` response. Check the
JSON response for the `retryAfter` key, which holds a number representing how
long your API key and/or IP are banned from making further requests (in
milliseconds).
## Pagination
Endpoints that might return a lot of data are paginated (via [range
queries](https://en.wikipedia.org/wiki/Range_query_(database))). Such endpoints
optionally accept an `after` parameter, which is a `flight_id` that determines
which item is returned first (the first item will be the first `flight_id` that
comes *after* the `after` `flight_id`). Hence, `after`s are special strings and
not numbers. Omitting the `after` parameter returns the first 100 flights in the
system in ascending order.
For example, given the following dataset and an API with a default result size
(or "page" size) of 3:
```JavaScript
[
{ item_id: 0xabc123, name: 'Item 1 name' },
{ item_id: 0xabc124, name: 'Item 2 name' },
{ item_id: 0xabc125, name: 'Item 3 name' },
{ item_id: 0xabc126, name: 'Item 4 name' },
{ item_id: 0xabc127, name: 'Item 5 name' },
]
```
Suppose we issued the following requests to an API:
`/api?after=0xabc123`: responds with an array of 3 items: *0xabc124* through *0xabc126*
`/api?after=0xabcXYZ`: responds with an array of 0 items since `item_id` *0xabcXYZ* doesn't exist
`/api?after=0xabc124`: responds with an array of 3 items: *0xabc125* through *0xabc127*
`/api?after=0xabc127`: responds with an array of 0 items since there is nothing after *0xabc127*
`/api?after=0xabc125`: responds with an array of 2 items: *0xabc126* and *0xabc127*
## Status Codes
This API will issue responses with one of the following status codes:
| STATUS | MEANING |
|----- |----- |
| 200 | Your request completed successfully. |
| 400 | Your request was malformed or otherwise bad. Check the requirements. |
| 401 | Session is not authenticated. Put your API key in the header! |
| 403 | Session is not authorized. You tried to do something you can't do. |
| 404 | The resource (or endpoint) was not found. Check your syntax. |
| 405 | Bad method. The endpoint does not support your request's method. |
| 413 | Your request was too large and was dropped. Max body size is 100KB. |
| 429 | You've been rate limited. Try your request again after a few minutes. |
| 5xx | Something happened on the server that is outside your control. |
## Response Schema
All responses issued by the API will follow one of the two following schemas.
### Success Schema
When a request you've issued succeeds, the response will look like the
following:
```json
{
"success": "true",
// any other data you requested
}
```
Note that all time data is represented as the number of milliseconds elapsed
since January 1, 1970 00:00:00 UTC, or the same thing that is returned by
JavaScript's `Date.now()` method.
### Error Schema
When a request you've issued fails, along with the non-200 status code, the
response will look like the following:
```json
{
"error": "an error message describing what went wrong",
// any other relevant data (like retryAfter)
}
```
## CORS: Cross-Origin Resource Sharing
The API has full support for Cross Origin Resource Sharing (CORS) for AJAX requests.
## Tips for Debugging
- Are you using the right method?
- Use this documentation (click "see example," then click "Try console") or use [Postman](https://www.postman.com/) to play with the API.
- Expect a raw JSON response body that you must parse manually, not raw text or something else.
- Are you sending properly formatted JSON payloads in your request body when necessary?
- Try outputting to stdout, use `console.log`, or output to some log file when API requests are made and responses received.
- All time data is represented as [the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now).
- Are you sending the correct headers? You need to specify the `key: your-special-api-key-here` header for all requests and the `'content-type': 'application/json'` header when making POST and PUT requests.
- Are you [encoding your URI components](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) properly, especially when you're trying to send the API [JSON objects](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON) via [GET request](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods)?
## Metadata Endpoints [/info]
These endpoints deal with summary metadata about the system.
### /airlines Endpoint [GET /info/airlines]
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ airlines (array[Airline]) - An array of the airlines currently active in the system.
+ Body
{
"airlines": [
{
"name": "Delta",
"codePrefix": "D"
},
{
"name": "American",
"codePrefix": "A"
},
{
"name": "United",
"codePrefix": "U"
},
{
"name": "Southwest",
"codePrefix": "S"
},
{
"name": "Frontier",
"codePrefix": "F"
},
{
"name": "Spirit",
"codePrefix": "P"
}
],
"success": true
}
### /airports Endpoint [GET /info/airports]
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ airports (array[Airport]) - An array of the airports currently active in the system.
+ Body
{
"airports": [
{
"name": "First Chapter Airport",
"shortName": "F1A",
"city": "Los Angeles",
"state": "CA",
"country": "USA"
},
{
"name": "Second Chapter Airport",
"shortName": "SCA",
"city": "Chicago",
"state": "IL",
"country": "USA"
},
{
"name": "Third Chapter Airport",
"shortName": "TC3",
"city": "New York",
"state": "NY",
"country": "USA"
},
{
"name": "Fourth Chapter Airport",
"shortName": "CHF",
"city": "Atlanta",
"state": "GA",
"country": "USA"
}
],
"success": true
}
### /no-fly-list Endpoint [GET /info/no-fly-list]
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ noFlyList (array[NoFlyListEntry]) - A list of people who, if their passenger information matches one of the entries, should not be allowed to book a flight.
+ Body
{
"noFlyList": [
{
"name": {
"first": "Donald",
"middle": "John",
"last": "Trump"
},
"sex": "male",
"birthdate": {
"day": 14,
"month": 6,
"year": 1946
}
},
{
"name": {
"first": "Restricted",
"middle": "User",
"last": "Flier"
},
"sex": "male",
"birthdate": {
"day": 25,
"month": 12,
"year": 1985
}
}
],
"success": true
}
## Flight Endpoints [/flights]
With these endpoints you can access all flight data in the system.
### /all Endpoint [GET /flights/all{?after}]
Returns all flights in the system in ascending order (oldest first). Returns at most 100 results per query. Supports [range queries](https://en.wikipedia.org/wiki/Range_query_(database)) using `after`.
+ Parameters
+ after (optional, flight_id) - <span style="color: gray">[optional]</span> Return only those flights that occur *after* `flight_id` in the result list.
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ flights (array[Flight]) - An array of flight objects. Empty if there are no flights left to show.
+ Body
{
"success": true,
"flights": [
{
"type": "departure",
"airline": "Delta",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": "F1A",
"flightNumber": "D1759",
"flight_id": "5f04f0607a927fab9cfbddfd",
"bookable": false,
"arriveAtReceiver": 1594160038503,
"departFromSender": 1594151700108,
"departFromReceiver": 1594160938503,
"status": "past",
"gate": null,
"seatPrice": 123.45
},
{
"type": "arrival",
"airline": "Spirit",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": null,
"flightNumber": "P9573",
"flight_id": "5f04f0607a927fab9cfbddfe",
"bookable": false,
"arriveAtReceiver": 1594161359678,
"departFromSender": 1594149044209,
"departFromReceiver": null,
"status": "cancelled",
"gate": null,
"seatPrice": 843.25
},
{
"type": "departure",
"airline": "Delta",
"comingFrom": "F1A",
"landingAt": "CHF",
"departingTo": "SCA",
"flightNumber": "D5877",
"flight_id": "5f04f0607a927fab9cfbddff",
"bookable": false,
"arriveAtReceiver": 1594160035976,
"departFromSender": 1594142174400,
"departFromReceiver": 1594160935976,
"status": "past",
"gate": null,
"seatPrice": 251.77
},
{
"type": "arrival",
"airline": "Southwest",
"comingFrom": "TC3",
"landingAt": "F1A",
"departingTo": null,
"flightNumber": "S5994",
"flight_id": "5f04fe707a927fab9cfbde00",
"bookable": false,
"arriveAtReceiver": 1594164307128,
"departFromSender": 1594153712900,
"departFromReceiver": null,
"status": "past",
"gate": null,
"seatPrice": 350.76
}
]
}
### /search Endpoint [GET /flights/search{?after,match,regexMatch,sort}]
This endpoint allows you to search through all flights in the system. Without any parameters, it acts just like the `/all` endpoint. Returns at most 100 results per query. Supports [range queries](https://en.wikipedia.org/wiki/Range_query_(database)) using `after`. Other available parameters are: `match`, `regexMatch`, and `sort`. `sort` can be either `asc` or `desc` and determines the sort order (sorted by creation timestamp) of the flights returned from the API. `match` and `regexMatch` let you filter out which flights you want returned in the response.
Note that the values of `match` and `regexMatch` **must be [URI encoded](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) [JSON objects](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON)**! If they aren't, you'll receive an error.
Examples:
Suppose you want to *match* all the flights that have a status of `"cancelled"`.
1. Come up with the JSON object to describe your query:
```JavaScript
var myQueryObject = { "status": "cancelled" }
```
2. Stringify the JSON object and then URI encode it in whatever language you're using.
```JavaScript
var myQuery = encodeURIComponent(JSON.stringify(myQueryObject))
```
3. Add the stringified JSON to your request URL and send it
```JavaScript
var myURL = "https://airports.api.hscc.bdpa.org/v1/flights/search?match=" + myQuery
sendRequestToAPI(myURL)
```
You can also use `match` queries to search for flights with numbers greater than or less than some other number:
```JavaScript
var myQueryObject = { "seatPrice": { "$gt": 400 } }
```
This means "return all the flights that have a seat price greater than 400". Along with `"$gt"` for "greater than," there's also `"$gte"` for "greater than or equal to," `"$lt"` for "less than," and `"$lte"` for "less than or equal to". If you've used MongoDB before, these should look familiar.
Note that any `match` filters are applied **in a case sensitive manner**, meaning `"united"` won't match `"United"`, so watch out! If you want case-insensitive searching or you're an otherwise advanced programmer, you can use Regular Expressions via `regexMatch`. Unlike `match`, `regexMatch` does not allow for less than/greater than queries.
For example, if you wanted to find all the *Delta flights* (`match`) that are *currently on the ground* (`regexMatch`) at *`"ATL"` airport* (`match` again) but *only at a gate that begins with A* (`regexMatch` again) with *the most recent flights appearing first* (`sort`), you could use the following:
```JavaScript
var myNormalQueryObject = { "airline": "Delta", "landingAt": "ATL" }
var myRegexQueryObject = { "gate": "^A", "status": "landed|arrived|boarding" }
var myNormalQuery = encodeURIComponent(JSON.stringify(myNormalQueryObject))
var myRegexQuery = encodeURIComponent(JSON.stringify(myRegexQueryObject))
var myURL = "https://airports.api.hscc.bdpa.org/v1/flights/search?match=" + myNormalQuery + "®exMatch=" + myRegexQuery + "sort=desc"
sendRequestToAPI(myURL)
```
> Notice: when testing using this Apiary documentation, they are nice enough to handle the URI encode and JSON stringify steps for you! All you have to do is type in a proper JSON object for the request to succeed. You can even copy and paste the `myXQueryObject`s from the examples above directly into the Try Console! Try it out by clicking "See an example" and then "Try console".
+ Parameters
+ after (optional, flight_id) - <span style="color: gray">[optional]</span> Return only those flights that occur *after* `flight_id` in the result list.
+ match (optional, string) - <span style="color: gray">[optional]</span> A URI encoded JSON object describing the flight properties you're looking for. Case sensitive. Can also do greater than/less than queries as well. **If you're using the Apiary Try Console, you do not have to URI encode or stringify the JSON object, just type it in directly!**
+ regexMatch (optional, string) - <span style="color: gray">[optional]</span> A URI encoded JSON object describing the flight properties that you're looking for. Case-*insensitive* regular expressions can be used here. You **cannot** do greater than/less than queries and **all regexes must be strings** (no numbers). **If you're using the Apiary Try Console, you do not have to URI encode or stringify the JSON object, just type it in directly!**
+ sort (optional, string) - <span style="color: gray">[optional]</span> Determines the sort order. Possible values are: `asc` or `desc`.
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ flights (array[Flight]) - An array of flight objects. Empty if there are no flights left to show or your search query returned no results.
+ Body
{
"success": true,
"flights": [
{
"type": "departure",
"airline": "Delta",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": "F1A",
"flightNumber": "D1759",
"flight_id": "5f04f0607a927fab9cfbddfd",
"bookable": false,
"arriveAtReceiver": 1594160038503,
"departFromSender": 1594151700108,
"departFromReceiver": 1594160938503,
"status": "past",
"gate": null,
"seatPrice": 123.45
},
{
"type": "arrival",
"airline": "Spirit",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": null,
"flightNumber": "P9573",
"flight_id": "5f04f0607a927fab9cfbddfe",
"bookable": false,
"arriveAtReceiver": 1594161359678,
"departFromSender": 1594149044209,
"departFromReceiver": null,
"status": "cancelled",
"gate": null,
"seatPrice": 843.25
},
{
"type": "departure",
"airline": "Delta",
"comingFrom": "F1A",
"landingAt": "CHF",
"departingTo": "SCA",
"flightNumber": "D5877",
"flight_id": "5f04f0607a927fab9cfbddff",
"bookable": false,
"arriveAtReceiver": 1594160035976,
"departFromSender": 1594142174400,
"departFromReceiver": 1594160935976,
"status": "past",
"gate": null,
"seatPrice": 251.77
},
{
"type": "arrival",
"airline": "Southwest",
"comingFrom": "TC3",
"landingAt": "F1A",
"departingTo": null,
"flightNumber": "S5994",
"flight_id": "5f04fe707a927fab9cfbde00",
"bookable": false,
"arriveAtReceiver": 1594164307128,
"departFromSender": 1594153712900,
"departFromReceiver": null,
"status": "past",
"gate": null,
"seatPrice": 350.76
}
]
}
### /with-ids Endpoint [GET /flights/with-ids{?ids}]
Returns a list of flights corresponding to the `ids` parameter. Results will probably not be in order. Like `match` and `regexMatch`, `ids` must be URI encoded and JSON serialized. Unlike `match` or `regexMatch`, it is an array.
For example, if I wanted to get the flight data for IDs `"5f04f0607a927fab9cfbddfd"` and `"5f04f0607a927fab9cfbddfe"`:
1. Put the IDs in an array:
```JavaScript
var myTargetIds = ["5f04f0607a927fab9cfbddfd", "5f04f0607a927fab9cfbddfe"]
```
2. Stringify the array and then URI encode it in whatever language you're using.
```JavaScript
var myQuery = encodeURIComponent(JSON.stringify(myTargetIds))
```
3. Add the stringified JSON to your request URL and send it
```JavaScript
var myURL = "https://airports.api.hscc.bdpa.org/v1/flights/with-ids?ids=" + myQuery
sendRequestToAPI(myURL)
```
+ Parameters
+ ids (optional, array[flight_id]) - <span style="color: gray">[optional]</span> A URI encoded JSON object (an array) of the `flight_id`s you're looking for. Will return at most 100 flights. **If you're using the Apiary Try Console, you do not have to URI encode or stringify the JSON object, just type it in directly!**
+ Request
+ Headers
key: your-special-api-key-here
content-type: application/json
+ Response 200 (application/json)
See an example
+ Attributes (object)
+ success (boolean) - If the request succeeded. Always `true` when status code is 200 and `false` or `undefined` otherwise.
+ flights (array[Flight]) - An array of flight objects. Empty if there are no flights left to show or no flights matched your ids. Order is not guaranteed to match the order of IDs in `ids` parameter.
+ Body
{
"success": true,
"flights": [
{
"type": "departure",
"airline": "Delta",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": "F1A",
"flightNumber": "D1759",
"flight_id": "5f04f0607a927fab9cfbddfd",
"bookable": false,
"arriveAtReceiver": 1594160038503,
"departFromSender": 1594151700108,
"departFromReceiver": 1594160938503,
"status": "past",
"gate": null,
"seatPrice": 123.45
},
{
"type": "arrival",
"airline": "Spirit",
"comingFrom": "SCA",
"landingAt": "CHF",
"departingTo": null,
"flightNumber": "P9573",
"flight_id": "5f04f0607a927fab9cfbddfe",
"bookable": false,
"arriveAtReceiver": 1594161359678,
"departFromSender": 1594149044209,
"departFromReceiver": null,
"status": "cancelled",
"gate": null,
"seatPrice": 843.25
}
]
}
## Data Structures
### Flight (object)
+ flight_id (string) - A unique immutable MongoDB ID representing the flight. Generated automatically by the server. Example: `5ec8adf06e38137ff2e58769`.
+ type (string) - The type of flight. Flights can either be an `"arrival"` or a `"departure"`.
+ airline (string) - The airline that owns this flight. For example: `"Delta"`
+ comingFrom (string) - The `shortName` of the airport this plane is flying in from. Example: `"ATL"`.
+ landingAt (string) - The `shortName` of the airport this plane is currently flying to. Example: `"MDW"`.
+ departingTo (string) - The `shortName` of the airport this plane will depart to afterwards. If `type="arrival"` then this will always be `null` since this flight isn't departing after landing. Example: `"LAX"`.
+ flightNumber (string) - The unique flight code given to this plane by its airline. For example: `"U5946"`
+ departFromSender (number) - When this flight took off from the `comingFrom` airport [in milliseconds since the unix epoch](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now). Generated automatically by the server. Guaranteed to be smaller than `arriveAtReceiver`. Example: `1579345900650`.
+ arriveAtReceiver (number) - When this flight will arrive at the `landingAt` airport [in milliseconds since the unix epoch](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now). Generated automatically by the server. Guaranteed to be smaller than `departFromReceiver`. Example: `1579345900650`.
+ departFromReceiver (number) - When this flight will depart from the `landingAt` airport [in milliseconds since the unix epoch](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now) and start flying towards `departingTo`. Generated automatically by the server. Example: `1579345900650`.
+ status (string) - The current status of this flight. Possible values are: `"past"`, `"scheduled"`, `"cancelled"`, `"delayed"`, `"on time"`, `"landed"`, `"arrived"`, `"boarding"`, and `"departed"`.
+ gate (string) - A string representing the gate this plane is currently docked at or `null` if there is no gate determination. Example: `"C17"`.
+ bookable (boolean) - `true` if this flight is landing at your team's airport (and so you should allow people to book tickets for it), otherwise `false`.
+ seatPrice (number) - The price of booking this flight. Example: `350.76`.
### Airport (object)
+ name (string) - The full name of this airport. Example: `"BDPA Chicago Airport"`.
+ shortName (string) - The three letter "short name" of this airport. Example: `"ORD"`.
+ city (string) - The city in which this airport resides. Example: `"Chicago"`.
+ state (string) - The state in which this airport resides. Example: `"IL"`.
+ country (string) - The country in which this airport resides. Example: `"USA"`.
### Airline (object)
+ name (string) - The name of this airline. Example: `"United"`.
+ codePrefix (string) - A letter prefixed to the flight numbers of all planes owned by this airline. Example: `"U"`.
### NoFlyListEntry (object)
+ name (object) - A first, middle, and last name. Example: `{ "first": "Restricted", "middle": "User", "last": "Person" }`.
+ sex (string) - Either `"male"` or `"female"` (we're not concerned with gender here)
+ birthdate (object) - A day, month, and year. Example: `{ "day": 14, "month": 6, "year": 1946 }`.