Last active
May 15, 2020 03:48
-
-
Save smithjw/b5babaad223e274232fbe8c0d80f84a6 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
{ | |
"rooms":[ | |
{ | |
"name":"Room One", | |
"status":0, | |
"adr":"Building C", | |
"current_meeting": { | |
"name": "Standup", | |
"start_time":"10am", | |
"end_time":"11am" | |
}, | |
"next_meeting": { | |
"name": "Nisha Samuels's Meeting", | |
"start_time":"11am", | |
"end_time":"1pm" | |
}, | |
"type":"call", | |
"pax":2 | |
}, | |
{ | |
"name":"Room Two", | |
"status":0, | |
"adr":"Building A", | |
"current_meeting": { | |
"name": "Sales Call", | |
"start_time":"9am", | |
"end_time":"11am" | |
}, | |
"next_meeting": { | |
"name": "Marketing Call", | |
"start_time":"11am", | |
"end_time":"11:30am" | |
}, | |
"type":"call", | |
"pax":14 | |
}, | |
{ | |
"name":"Room Three", | |
"status":1, | |
"adr":"Building B", | |
"current_meeting": { | |
"name": "AV Meeting", | |
"start_time":"10:30am", | |
"end_time":"11am" | |
}, | |
"next_meeting": { | |
"name": "Sunil Solomon's Meeting", | |
"start_time":"11:15am", | |
"end_time":"12pm" | |
}, | |
"type":"room", | |
"pax":10 | |
}, | |
{ | |
"name":"Room Four", | |
"status":0, | |
"adr":"Building C", | |
"current_meeting": {}, | |
"next_meeting": { | |
"name": "Jessie Ferry's Sales Call", | |
"start_time":"10:30am", | |
"end_time":"11am" | |
}, | |
"type":"call", | |
"pax":2 | |
}, | |
{ | |
"name":"Room Five", | |
"status":0, | |
"adr":"Building C", | |
"current_meeting": { | |
"name": "Pitch Meeting", | |
"start_time":"10am", | |
"end_time":"10:30am" | |
}, | |
"next_meeting": { | |
"name": "Fiona Benson's Sales Call", | |
"start_time":"10:30am", | |
"end_time":"11am" | |
}, | |
"type":"call", | |
"pax":2 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment