-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_data.json
48 lines (48 loc) · 979 Bytes
/
sample_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"airlines": [{
"code": "AC",
"name": "Air Canada"
}],
"airports": [{
"code": "YUL",
"city_code": "YMQ",
"name": "Pierre Elliott Trudeau International",
"city": "Montreal",
"country_code": "CA",
"region_code": "QC",
"latitude": 45.457714,
"longitude": -73.749908,
"timezone": "America/Montreal"
},
{
"code": "YVR",
"city_code": "YVR",
"name": "Vancouver International",
"city": "Vancouver",
"country_code": "CA",
"region_code": "BC",
"latitude": 49.194698,
"longitude": -123.179192,
"timezone": "America/Vancouver"
}
],
"flights": [{
"airline": "AC",
"number": "301",
"departure_airport": "YUL",
"departure_time": "07:35",
"arrival_airport": "YVR",
"arrival_time": "10:05",
"price": "273.23"
},
{
"airline": "AC",
"number": "302",
"departure_airport": "YVR",
"departure_time": "11:30",
"arrival_airport": "YUL",
"arrival_time": "19:11",
"price": "220.63"
}
]
}