HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<div id="pivot-container"></div>
<div id="pivot-charts-container"></div>
<div id="pivot-charts-container-2"></div>
/* Charts Style */
.fm-charts-color-1 {
fill: #4fb35f !important;
}
.fm-charts-color-2 {
fill: #fabf69 !important;
}
.fm-charts-color-3 {
fill: #ee8151 !important;
}
.fm-charts-color-4 {
fill: #e3604f !important;
}
.fm-charts-color-5 {
fill: #de425b !important;
}
.fm-charts-color-6 {
fill: #ffdd81 !important;
}
.fm-charts-color-7 {
fill: #00a45a !important;
}
.fm-charts-color-8 {
fill: #81bf6d !important;
}
var pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
licenseFilePath: "https://cdn.flexmonster.com/codepen.key",
width: '100%',
height: 600,
toolbar: true,
report: {
dataSource: {
data: getData()
},
"slice": {
"reportFilters": [
{
"uniqueName": "train_class"
},
{
"uniqueName": "train_type"
}
],
"rows": [
{
"uniqueName": "origin"
}
],
"columns": [
{
"uniqueName": "destination"
},
{
"uniqueName": "fare"
},
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "price",
"aggregation": "average",
"format": "-4w0jacq1h9800"
}
],
"expands": {
"columns": [
{
"tuple": [
"destination.[madrid]"
]
}
]
}
},
"conditions": [
{
"formula": "#value < 40",
"measure": "price",
"format": {
"backgroundColor": "#00A45A",
"color": "#000000",
"fontFamily": "Arial",
"fontSize": "12px"
},
"isTotal": true
}
],
"formats": [
{
"name": "-4w0jacq1h9800",
"thousandsSeparator": ",",
"decimalPlaces": 1,
"currencySymbol": "€"
}
],
options: {
showFieldListSearch: true,
filter: {
liveSearch: true
}
}
}
});
var pivot_charts = new Flexmonster({
container: "#pivot-charts-container",
componentFolder: "https://cdn.flexmonster.com/",
licenseFilePath: "https://cdn.flexmonster.com/codepen.key",
width: '100%',
height: 600,
report: {
dataSource: {
data: getData()
},
"slice": {
"reportFilters": [
{
"uniqueName": "train_class"
},
{
"uniqueName": "train_type"
},
{
"uniqueName": "destination"
}
],
"rows": [
{
"uniqueName": "origin"
}
],
"columns": [
{
"uniqueName": "fare"
},
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "price",
"aggregation": "average",
"format": "-4w0jacq1h9800"
}
],
"sorting": {
"column": {
"type": "desc",
"tuple": [],
"measure": {
"uniqueName": "price",
"aggregation": "average"
}
}
},
"drillThrough": [
"origin",
"destination",
"fare",
"train_class",
"train_type",
"price"
]
},
"options": {
"viewType": "charts"
},
"conditions": [
{
"formula": "#value < 40",
"isTotal": true,
"measure": "price",
"format": {
"backgroundColor": "#00A45A",
"color": "#000000",
"fontFamily": "Arial",
"fontSize": "12px"
}
}
],
"formats": [
{
"name": "-4w0jacq1h9800",
"thousandsSeparator": ",",
"decimalPlaces": 1,
"currencySymbol": "€"
}
]
}
});
var pivot_charts_2 = new Flexmonster({
container: "#pivot-charts-container-2",
componentFolder: "https://cdn.flexmonster.com/",
licenseFilePath: "https://cdn.flexmonster.com/codepen.key",
width: '100%',
height: 600,
report: {
dataSource: {
data: getData()
},
"slice": {
"reportFilters": [
{
"uniqueName": "train_class"
},
{
"uniqueName": "destination"
},
{
"uniqueName": "fare"
}
],
"rows": [
{
"uniqueName": "train_type"
}
],
"columns": [
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "price",
"aggregation": "average",
"format": "-4w0jacq1h9800"
}
],
"drillThrough": [
"origin",
"destination",
"fare",
"train_class",
"train_type",
"price"
]
},
"options": {
"viewType": "charts",
"chart": {
"type": "pie"
}
},
"conditions": [
{
"formula": "#value < 40",
"isTotal": true,
"measure": "price",
"format": {
"backgroundColor": "#00A45A",
"color": "#000000",
"fontFamily": "Arial",
"fontSize": "12px"
}
}
],
"formats": [
{
"name": "-4w0jacq1h9800",
"thousandsSeparator": ",",
"decimalPlaces": 1,
"currencySymbol": "€"
}
]
}
});
function getData() {
return [
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 05:50:00",
"end_date": "2019-04-18 08:55:00",
"train_type": "AVE",
"price": 68.95,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 06:30:00",
"end_date": "2019-04-18 09:20:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 07:00:00",
"end_date": "2019-04-18 09:30:00",
"train_type": "AVE",
"price": 106.75,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 07:30:00",
"end_date": "2019-04-18 10:40:00",
"train_type": "AVE",
"price": 90.5,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 08:00:00",
"end_date": "2019-04-18 10:30:00",
"train_type": "AVE",
"price": 88.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 08:30:00",
"end_date": "2019-04-18 11:15:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 09:30:00",
"end_date": "2019-04-18 12:34:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 10:30:00",
"end_date": "2019-04-18 13:15:00",
"train_type": "AVE",
"price": 102.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 11:30:00",
"end_date": "2019-04-18 14:40:00",
"train_type": "AVE",
"price": 102.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 12:30:00",
"end_date": "2019-04-18 15:30:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 13:25:00",
"end_date": "2019-04-18 16:24:00",
"train_type": "AVE-TGV",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 14:00:00",
"end_date": "2019-04-18 16:30:00",
"train_type": "AVE",
"price": 100.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 14:30:00",
"end_date": "2019-04-18 17:21:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 15:30:00",
"end_date": "2019-04-18 18:40:00",
"train_type": "AVE",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 16:30:00",
"end_date": "2019-04-18 19:15:00",
"train_type": "AVE",
"price": 102.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 17:30:00",
"end_date": "2019-04-18 20:40:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 18:30:00",
"end_date": "2019-04-18 21:20:00",
"train_type": "AVE",
"price": 90.5,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 19:00:00",
"end_date": "2019-04-18 21:30:00",
"train_type": "AVE",
"price": 115.65,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 19:30:00",
"end_date": "2019-04-18 22:40:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 20:30:00",
"end_date": "2019-04-18 23:40:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:46",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-04-18 21:25:00",
"end_date": "2019-04-18 23:55:00",
"train_type": "AVE",
"price": "",
"train_class": "",
"fare": ""
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 06:20:00",
"end_date": "2019-05-18 09:29:00",
"train_type": "AVE",
"price": 66.75,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 07:30:00",
"end_date": "2019-05-18 10:40:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 08:30:00",
"end_date": "2019-05-18 11:15:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 09:30:00",
"end_date": "2019-05-18 12:34:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 10:30:00",
"end_date": "2019-05-18 13:15:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 11:30:00",
"end_date": "2019-05-18 14:40:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 12:30:00",
"end_date": "2019-05-18 15:30:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 13:25:00",
"end_date": "2019-05-18 16:24:00",
"train_type": "AVE-TGV",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 15:30:00",
"end_date": "2019-05-18 18:40:00",
"train_type": "AVE",
"price": 86.8,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 16:30:00",
"end_date": "2019-05-18 19:15:00",
"train_type": "AVE",
"price": 80.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 17:30:00",
"end_date": "2019-05-18 20:40:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 18:30:00",
"end_date": "2019-05-18 21:20:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 19:30:00",
"end_date": "2019-05-18 22:40:00",
"train_type": "AVE",
"price": 49.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:49:48",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-18 20:30:00",
"end_date": "2019-05-18 23:40:00",
"train_type": "AVE",
"price": 69.8,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:04",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-22 06:10:00",
"end_date": "2019-05-22 08:40:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:04",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-22 06:30:00",
"end_date": "2019-05-22 09:20:00",
"train_type": "AVE",
"price": 40.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:04",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-22 07:00:00",
"end_date": "2019-05-22 09:30:00",
"train_type": "AVE",
"price": 94.55,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:04",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-22 07:15:00",
"end_date": "2019-05-22 16:37:00",
"train_type": "R. EXPRES",
"price": 43.25,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-04-11 21:50:04",
"origin": "MADRID",
"destination": "BARCELONA",
"start_date": "2019-05-22 07:20:00",
"end_date": "2019-05-22 09:50:00",
"train_type": "AVE",
"price": 100.4,
"train_class": "Turista",
"fare": "Promo"
}, {
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 07:00:00",
"end_date": "2019-07-02 09:30:00",
"train_type": "AVE",
"price": 68.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 06:40:00",
"end_date": "2019-07-02 09:25:00",
"train_type": "AVE",
"price": 66.75,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 06:25:00",
"end_date": "2019-07-02 08:55:00",
"train_type": "AVE",
"price": 68.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 05:50:00",
"end_date": "2019-07-02 08:20:00",
"train_type": "AVE",
"price": 58.15,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 06:05:00",
"end_date": "2019-07-02 09:15:00",
"train_type": "AVE",
"price": 90.5,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 12:50:00",
"end_date": "2019-07-02 15:45:00",
"train_type": "AVE-TGV",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 15:25:00",
"end_date": "2019-07-02 17:55:00",
"train_type": "AVE",
"price": 88.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 15:00:00",
"end_date": "2019-07-02 17:45:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 13:25:00",
"end_date": "2019-07-02 16:10:00",
"train_type": "AVE",
"price": 66.75,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 14:00:00",
"end_date": "2019-07-02 17:10:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 12:00:00",
"end_date": "2019-07-02 15:10:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 21:15:00",
"end_date": "2019-07-03 00:02:00",
"train_type": "AVE",
"price": 49.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 10:00:00",
"end_date": "2019-07-02 13:10:00",
"train_type": "AVE",
"price": 85.1,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 11:00:00",
"end_date": "2019-07-02 13:45:00",
"train_type": "AVE",
"price": 58.15,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 16:00:00",
"end_date": "2019-07-02 19:10:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 09:03:00",
"end_date": "2019-07-02 18:07:00",
"train_type": "R. EXPRES",
"price": 43.25,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 19:25:00",
"end_date": "2019-07-02 21:55:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 09:00:00",
"end_date": "2019-07-02 11:45:00",
"train_type": "AVE",
"price": 102.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 16:25:00",
"end_date": "2019-07-02 18:55:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 19:00:00",
"end_date": "2019-07-02 22:00:00",
"train_type": "AVE",
"price": 102.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 17:00:00",
"end_date": "2019-07-02 19:50:00",
"train_type": "AVE",
"price": 49.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 08:25:00",
"end_date": "2019-07-02 10:55:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 08:00:00",
"end_date": "2019-07-02 11:10:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 20:00:00",
"end_date": "2019-07-02 23:10:00",
"train_type": "AVE",
"price": 75.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 18:25:00",
"end_date": "2019-07-02 20:55:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 07:05:00",
"end_date": "2019-07-02 09:50:00",
"train_type": "AVE",
"price": 66.75,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 07:40:00",
"end_date": "2019-07-02 10:10:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 18:00:00",
"end_date": "2019-07-02 21:10:00",
"train_type": "AVE",
"price": 107.7,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 17:25:00",
"end_date": "2019-07-02 19:55:00",
"train_type": "AVE",
"price": 68.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-02 07:25:00",
"end_date": "2019-07-02 10:01:00",
"train_type": "AVE",
"price": 80.15,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:09:12",
"origin": "BARCELONA",
"destination": "MADRID",
"start_date": "2019-07-03 17:25:00",
"end_date": "2019-07-03 19:55:00",
"train_type": "AVE",
"price": 78.8,
"train_class": "Turista",
"fare": "Promo"
},{
"insert_date": "2019-06-16 15:11:56",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-03 20:15:00",
"end_date": "2019-08-03 21:55:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 09:40:00",
"end_date": "2019-08-02 11:20:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 08:50:00",
"end_date": "2019-08-02 11:30:00",
"train_type": "ALVIA",
"price": 46.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 09:50:00",
"end_date": "2019-08-02 16:58:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 08:10:00",
"end_date": "2019-08-02 12:22:00",
"train_type": "INTERCITY",
"price": 17.15,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 08:00:00",
"end_date": "2019-08-02 09:47:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 15:10:00",
"end_date": "2019-08-02 17:03:00",
"train_type": "AVE",
"price": 36.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 14:50:00",
"end_date": "2019-08-02 22:04:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 07:10:00",
"end_date": "2019-08-02 08:57:00",
"train_type": "AVE",
"price": 36.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 14:10:00",
"end_date": "2019-08-02 15:48:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 06:38:00",
"end_date": "2019-08-02 14:20:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 12:40:00",
"end_date": "2019-08-02 14:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 10:40:00",
"end_date": "2019-08-02 13:05:00",
"train_type": "INTERCITY",
"price": 25.5,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 21:03:00",
"end_date": "2019-08-02 23:28:00",
"train_type": "INTERCITY",
"price": 29.9,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 21:03:00",
"end_date": "2019-08-02 23:28:00",
"train_type": "INTERCITY",
"price": 16.6,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 17:30:00",
"end_date": "2019-08-02 23:59:00",
"train_type": "MD-LD",
"price": 32.4,
"train_class": "Turista con enlace",
"fare": "Promo +"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 17:10:00",
"end_date": "2019-08-02 18:50:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 20:15:00",
"end_date": "2019-08-02 21:55:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 18:10:00",
"end_date": "2019-08-02 19:57:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:10",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-02 19:10:00",
"end_date": "2019-08-02 20:50:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 21:03:00",
"end_date": "2019-07-31 23:28:00",
"train_type": "INTERCITY",
"price": 25.5,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 21:03:00",
"end_date": "2019-07-31 23:28:00",
"train_type": "INTERCITY",
"price": 29.9,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 20:15:00",
"end_date": "2019-07-31 21:55:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 09:40:00",
"end_date": "2019-07-31 11:20:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 19:10:00",
"end_date": "2019-07-31 20:50:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 08:10:00",
"end_date": "2019-07-31 12:22:00",
"train_type": "INTERCITY",
"price": 20.6,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 08:50:00",
"end_date": "2019-07-31 11:30:00",
"train_type": "ALVIA",
"price": 46.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 18:10:00",
"end_date": "2019-07-31 19:57:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 08:00:00",
"end_date": "2019-07-31 09:47:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 07:10:00",
"end_date": "2019-07-31 08:57:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 06:38:00",
"end_date": "2019-07-31 14:20:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 17:30:00",
"end_date": "2019-07-31 23:59:00",
"train_type": "MD-LD",
"price": 28.1,
"train_class": "Turista con enlace",
"fare": "Promo +"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 12:40:00",
"end_date": "2019-07-31 14:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 10:40:00",
"end_date": "2019-07-31 13:05:00",
"train_type": "INTERCITY",
"price": 25.5,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 08:40:00",
"end_date": "2019-07-31 10:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 09:50:00",
"end_date": "2019-07-31 17:28:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 14:10:00",
"end_date": "2019-07-31 15:48:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 17:10:00",
"end_date": "2019-07-31 18:50:00",
"train_type": "AVE",
"price": 57.75,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 15:10:00",
"end_date": "2019-07-31 17:03:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:17",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-31 14:50:00",
"end_date": "2019-07-31 22:30:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 08:10:00",
"end_date": "2019-08-01 12:22:00",
"train_type": "INTERCITY",
"price": 17.15,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 09:40:00",
"end_date": "2019-08-01 11:20:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 08:50:00",
"end_date": "2019-08-01 11:30:00",
"train_type": "ALVIA",
"price": 46.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 08:40:00",
"end_date": "2019-08-01 10:20:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 09:50:00",
"end_date": "2019-08-01 17:28:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 08:00:00",
"end_date": "2019-08-01 09:47:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 06:38:00",
"end_date": "2019-08-01 14:20:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 20:15:00",
"end_date": "2019-08-01 21:55:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 14:10:00",
"end_date": "2019-08-01 15:48:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 14:50:00",
"end_date": "2019-08-01 22:30:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 12:40:00",
"end_date": "2019-08-01 14:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 07:10:00",
"end_date": "2019-08-01 08:57:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 10:40:00",
"end_date": "2019-08-01 13:05:00",
"train_type": "INTERCITY",
"price": 25.5,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 19:10:00",
"end_date": "2019-08-01 20:50:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 18:10:00",
"end_date": "2019-08-01 19:57:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 17:30:00",
"end_date": "2019-08-01 23:59:00",
"train_type": "MD-LD",
"price": 28.1,
"train_class": "Turista con enlace",
"fare": "Promo +"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 15:10:00",
"end_date": "2019-08-01 17:03:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 17:10:00",
"end_date": "2019-08-01 18:50:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 21:03:00",
"end_date": "2019-08-01 23:28:00",
"train_type": "INTERCITY",
"price": 29.9,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:18",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-08-01 21:03:00",
"end_date": "2019-08-01 23:28:00",
"train_type": "INTERCITY",
"price": 16.6,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 06:38:00",
"end_date": "2019-07-30 14:20:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 08:00:00",
"end_date": "2019-07-30 09:47:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 07:10:00",
"end_date": "2019-07-30 08:57:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 08:10:00",
"end_date": "2019-07-30 12:22:00",
"train_type": "INTERCITY",
"price": 17.15,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 08:40:00",
"end_date": "2019-07-30 10:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 20:15:00",
"end_date": "2019-07-30 21:55:00",
"train_type": "AVE",
"price": 21.95,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 08:50:00",
"end_date": "2019-07-30 11:30:00",
"train_type": "ALVIA",
"price": 46.15,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 18:10:00",
"end_date": "2019-07-30 19:57:00",
"train_type": "AVE",
"price": 33.65,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 10:40:00",
"end_date": "2019-07-30 13:05:00",
"train_type": "INTERCITY",
"price": 25.5,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 15:10:00",
"end_date": "2019-07-30 17:03:00",
"train_type": "AVE",
"price": 39.45,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 19:10:00",
"end_date": "2019-07-30 20:50:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 14:50:00",
"end_date": "2019-07-30 22:30:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 09:50:00",
"end_date": "2019-07-30 17:28:00",
"train_type": "REGIONAL",
"price": 28.35,
"train_class": "Turista",
"fare": "Adulto ida"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 09:40:00",
"end_date": "2019-07-30 11:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 14:10:00",
"end_date": "2019-07-30 15:48:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 12:40:00",
"end_date": "2019-07-30 14:20:00",
"train_type": "AVE",
"price": 27.8,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-06-16 15:12:23",
"origin": "VALENCIA",
"destination": "MADRID",
"start_date": "2019-07-30 17:30:00",
"end_date": "2019-07-30 23:59:00",
"train_type": "MD-LD",
"price": 28.1,
"train_class": "Turista con enlace",
"fare": "Promo +"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 07:00:00",
"end_date": "2019-06-01 09:55:00",
"train_type": "AV City",
"price": 58.95,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 08:00:00",
"end_date": "2019-06-01 10:32:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 08:30:00",
"end_date": "2019-06-01 11:14:00",
"train_type": "ALVIA",
"price": 61.2,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 09:00:00",
"end_date": "2019-06-01 11:38:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 09:45:00",
"end_date": "2019-06-01 12:27:00",
"train_type": "INTERCITY",
"price": 62.2,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 10:00:00",
"end_date": "2019-06-01 12:32:00",
"train_type": "AVE",
"price": 53.4,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 11:00:00",
"end_date": "2019-06-01 13:32:00",
"train_type": "AVE",
"price": 61.45,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 11:05:00",
"end_date": "2019-06-01 13:41:00",
"train_type": "ALVIA",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 12:00:00",
"end_date": "2019-06-01 14:32:00",
"train_type": "AVE",
"price": 69.35,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 13:10:00",
"end_date": "2019-06-01 20:51:00",
"train_type": "MD-LD",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 13:30:00",
"end_date": "2019-06-01 16:05:00",
"train_type": "ALVIA",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 14:00:00",
"end_date": "2019-06-01 16:32:00",
"train_type": "AVE",
"price": 61.45,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 16:00:00",
"end_date": "2019-06-01 18:30:00",
"train_type": "AVE",
"price": 61.45,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 17:00:00",
"end_date": "2019-06-01 19:38:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 18:00:00",
"end_date": "2019-06-01 20:32:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 19:00:00",
"end_date": "2019-06-01 21:38:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 20:35:00",
"end_date": "2019-06-01 23:15:00",
"train_type": "AVE",
"price": 47.3,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:34",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-01 21:25:00",
"end_date": "2019-06-02 00:10:00",
"train_type": "AV City",
"price": 52.2,
"train_class": "Turista Plus",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 07:00:00",
"end_date": "2019-06-02 09:55:00",
"train_type": "AV City",
"price": 43.55,
"train_class": "Turista",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 08:30:00",
"end_date": "2019-06-02 11:14:00",
"train_type": "ALVIA",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 09:00:00",
"end_date": "2019-06-02 11:38:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 11:00:00",
"end_date": "2019-06-02 13:32:00",
"train_type": "AVE",
"price": 76.3,
"train_class": "Turista",
"fare": "Flexible"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 11:05:00",
"end_date": "2019-06-02 13:41:00",
"train_type": "ALVIA",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 12:00:00",
"end_date": "2019-06-02 14:32:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 13:00:00",
"end_date": "2019-06-02 15:40:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 13:10:00",
"end_date": "2019-06-02 20:51:00",
"train_type": "MD-LD",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 13:30:00",
"end_date": "2019-06-02 16:05:00",
"train_type": "ALVIA",
"price": "",
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 14:00:00",
"end_date": "2019-06-02 16:32:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 15:00:00",
"end_date": "2019-06-02 17:21:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 16:00:00",
"end_date": "2019-06-02 18:30:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
},
{
"insert_date": "2019-04-11 21:50:38",
"origin": "MADRID",
"destination": "SEVILLA",
"start_date": "2019-06-02 16:30:00",
"end_date": "2019-06-02 18:51:00",
"train_type": "AVE",
"price": 69.4,
"train_class": "Preferente",
"fare": "Promo"
}]
}
Also see: Tab Triggers