I am testing an Event card on Google Now by adding the schema data to a confirmation email. At the moment, I play with populating an event map with information about train rides, since the route route diagram is not supported. Unfortunately, I can only get a small amount of information provided for display on the map in Google Now.
Here is what I add to the letter:
<html>
<body>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EventReservation",
"reservationNumber": "123456789",
"reservationStatus": "http://schema.org/Confirmed",
"url": "http://www.eastcoast.co.uk",
"underName": {
"@type": "Person",
"name": "Conor Marron"
},
"bookingAgent": {
"@type": "Organization",
"name": "East Coast",
"url": "http://www.eastcoast.co.uk",
"image": "http://losttrack.co.uk/wp-content/uploads/2013/09/cr-1-may-30-img-East-Coast-Logo.jpg"
},
"modifyReservationUrl": "http://www.eastcoast.co.uk",
"reservationFor": {
"@type": "Event",
"name": "Train to London King Cross",
"description": "Leaving at 16:00. Coach B, seat 12",
"image": "http://static.guim.co.uk/sys-images/Observer/Pix/pictures/2012/3/24/1332602521578/new-concourse-kings-cross-008.jpg",
"startDate": "2014-02-25T16:00:00+00:00",
"endDate": "2014-02-25T19:00:00+00:00",
"location": {
"@type": "Place",
"name": "Newcastle Central Station",
"address": {
"@type": "PostalAddress",
"streetAddress": "Neville Street",
"addressLocality": "Newcastle Upon Tyne",
"addressRegion": "Tyne and Wear",
"postalCode": "NE1 5DL",
"addressCountry": "UK"
}
}
},
"numSeats": "1",
"venueSeat": "12",
"venueSection": "Coach B",
"ticketNumber": "1257250214-1",
"modifiedTime": "2014-02-25T15:15:00+00:00",
"additionalTicketText": "Collect tickets at the station. Ref: ABCD1234"
}
</script>
<p>
Full Event Schema Example.
</p>
</body>
</html>
Unfortunately, I get the following from this:

So, you can see that there are no images, no navigation tips, no additional notes, information about the reservation.
Is there a way to increase the amount of information displayed by default?
Google . , , .

?