UNPKG

cdcm

Version:

Community driven content management. Content stored in a directories composed of json, markdown, and images.

38 lines (30 loc) 716 B
# Schedule The schedule object is an array of events. Each event object will be either a talk, or other event (lunch, keynote, etc). #### Talk Event ``` { "talk" : "howitsmade-revconf2017", "location": "Lynnhaven Room", "start" : "2017-06-02-1000", "end" : "2017-06-02-1050" } ``` The talk value must be the name of a folder/slug. #### Other Event ``` { "title" : "Lunch", "description" : "Turkey Burgers, Veggie Burgers, Baked Beans, Corn", "location": "Ball Room A", "start" : "2017-06-01-1200", "end" : "2017-06-01-1315" } ``` The start and end times (in 24 hour format) are as follows: ``` 'yyyy-mm-dd-hhmm' ``` So a session scheduled for 2:15 pm on June 1st would be: ``` '2017-06-01-1415' ```