Created
January 24, 2010 20:58
-
-
Save dav/285445 to your computer and use it in GitHub Desktop.
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
{ | |
"name": "My Event", | |
"url": "http://example.com/", | |
"contact": "[email protected]", | |
"public": "no", | |
"dataVersion": "1", | |
"description": "<p>This is my example event</p>", | |
"background_image_url": "http://example.com/custom_bg.png", | |
"navbar_image_url": "http://example.com/custom_navbar.png", | |
"venues": [ | |
{ | |
"venue": "Main Stage", | |
"description": "The <b>big</b> stage", | |
"location": { | |
"address1": "", | |
"address2": "", | |
"city": "San Francisco", | |
"region": "California", | |
"postalCode": "94107" | |
}, | |
"phoneNumber": "", | |
"events": [ | |
{ | |
"title":"First Session", | |
"start_time":"2009-11-19 9:00", | |
"end_time":"2009-11-19 10:15", | |
"category": "", | |
"speaker": "", | |
"description": "Something happens.", | |
"audios": [ "http://example.com/session1.mp3" ] | |
} | |
, | |
{ | |
"title":"Second Session", | |
"start_time":"2009-11-19 10:25", | |
"end_time":"2009-11-19 11:05", | |
"category": "", | |
"speaker": "Adam Keys", | |
"description": "Another thing happens.", | |
"audios": [ "http://example.com/session1.mp3" ] | |
} | |
] | |
}, | |
{ | |
"venue": "Alternative Stage", | |
"description": "The other stage", | |
"events": [ | |
{ | |
"title":"First Show", | |
"start_time":"2009-11-19 9:00", | |
"end_time":"2009-11-19 10:15", | |
"description": "Something alternative happens.", | |
"audios": [ "http://example.com/show1.mp3" ] | |
} | |
, | |
{ | |
"title":"Second Show", | |
"start_time":"2009-11-19 10:25", | |
"end_time":"2009-11-19 11:05", | |
"description": "Another a;ternative thing happens.", | |
"audios": [ "http://example.com/show2.mp3" ] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment