Created
June 5, 2019 12:28
-
-
Save sedrickcz/de89ec81c0ce33153dd33092cee70ace to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T08:25:00.000Z", | |
arrival_at: "2020-05-31T09:55:00.000Z", | |
vehicle: "hyperloop", | |
provider: { | |
name: "Hyperloop One", | |
slug: "hyperloop_one", | |
logo: "img/hyperloop_one.png" | |
}, | |
fares: [ | |
{ | |
name: "VIP", | |
class: 1, | |
price: { | |
amount: 123123, | |
currency: "EUR" | |
} | |
}, | |
{ | |
name: "NORMAL", | |
class: 2, | |
price: { | |
amount: 9990, | |
currency: "EUR" | |
} | |
} | |
] | |
}, | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T12:00:00.000Z", | |
arrival_at: "2020-05-31T12:10:00.000Z", | |
vehicle: "rocket", | |
provider: { | |
name: "SpaceX", | |
slug: "spacex", | |
logo: "img/spacex.png" | |
}, | |
fares: [ | |
{ | |
name: "NORMAL", | |
class: 2, | |
price: { | |
amount: 25000, | |
currency: "EUR" | |
} | |
} | |
] | |
}, | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T13:30:00.000Z", | |
arrival_at: "2020-05-31T15:15:00.000Z", | |
vehicle: "plane", | |
provider: { | |
name: "Lufthansa", | |
slug: "lufthansa", | |
logo: "img/lufthansa.png" | |
}, | |
fares: [ | |
{ | |
name: "PREMIUM", | |
class: 1, | |
price: { | |
amount: 17500, | |
currency: "EUR" | |
} | |
}, | |
{ | |
name: "ECONOMY", | |
class: 2, | |
price: { | |
amount: 10500, | |
currency: "EUR" | |
} | |
} | |
] | |
}, | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T11:33:00.000Z", | |
arrival_at: "2020-05-31T20:41:00.000Z", | |
vehicle: "train", | |
provider: { | |
name: "DeBahn", | |
slug: "de_bahn", | |
logo: "img/de_bahn.png" | |
}, | |
fares: [ | |
{ | |
name: "Sparpreis Europa VIP", | |
class: 1, | |
price: { | |
amount: 9990, | |
currency: "EUR" | |
} | |
}, | |
{ | |
name: "Sparpreis Europa Economy", | |
class: 2, | |
price: { | |
amount: 8000, | |
currency: "EUR" | |
} | |
} | |
] | |
}, | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T07:00:00.000Z", | |
arrival_at: "2020-05-31T19:30:00.000Z", | |
vehicle: "bus", | |
provider: { | |
name: "Flixbus", | |
slug: "flixbus", | |
logo: "img/flixbus.png" | |
}, | |
fares: [ | |
{ | |
name: "Economy", | |
class: 2, | |
price: { | |
amount: 3999, | |
currency: "EUR" | |
} | |
} | |
] | |
}, | |
{ | |
departure: "Berlin", | |
arrival: "Paris", | |
departure_at: "2020-05-31T06:00:00.000Z", | |
arrival_at: "2020-05-31T19:20:00.000Z", | |
vehicle: "car", | |
provider: { | |
name: "BlaBlaCar", | |
slug: "blablacar", | |
logo: "img/blablacar.png" | |
}, | |
fares: [ | |
{ | |
name: "Normal", | |
class: 1, | |
price: { | |
amount: 5000, | |
currency: "EUR" | |
} | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment