Created
March 25, 2020 18:35
-
-
Save farukgaric/84aaaf5332a2b81321eb61da3fd7a599 to your computer and use it in GitHub Desktop.
Structured data: Postponed event
This file contains 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
<html> | |
<head> | |
<title>The Adventures of Kira and Morrison</title> | |
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "Event", | |
"name": "The Adventures of Kira and Morrison", | |
"startDate": "2025-07-21T19:00", | |
"endDate": "2025-07-21T23:00", | |
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode", | |
"eventStatus": "https://schema.org/EventPostponed", | |
"location": { | |
"@type": "Place", | |
"name": "Snickerpark Stadium", | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "100 West Snickerpark Dr", | |
"addressLocality": "Snickertown", | |
"postalCode": "19019", | |
"addressRegion": "PA", | |
"addressCountry": "US" | |
} | |
}, | |
"image": [ | |
"https://example.com/photos/1x1/photo.jpg", | |
"https://example.com/photos/4x3/photo.jpg", | |
"https://example.com/photos/16x9/photo.jpg" | |
], | |
"description": "The Adventures of Kira and Morrison is coming to Snickertown in a can’t miss performance.", | |
"offers": { | |
"@type": "Offer", | |
"url": "https://www.example.com/event_offer/12345_201803180430", | |
"price": "30", | |
"priceCurrency": "USD", | |
"availability": "https://schema.org/InStock", | |
"validFrom": "2024-05-21T12:00" | |
}, | |
"performer": { | |
"@type": "PerformingGroup", | |
"name": "Kira and Morrison" | |
} | |
} | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment