Created
March 18, 2023 08:44
-
-
Save mhassanist/38201f235f6c1b7a0b4f89effb89a399 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"status": 200, | |
"error": null, | |
"data": [ | |
{ | |
"name": "Meeting Room 1", | |
"capacity": "10", | |
"instruments": [ | |
{ | |
"name": "Conference Table", | |
"quantity": 1 | |
}, | |
{ | |
"name": "Office Chair", | |
"quantity": 10 | |
}, | |
{ | |
"name": "Projector", | |
"quantity": 1 | |
} | |
], | |
"photos": [ | |
"https://www.coalesse.com/wp-content/uploads/2019/05/16-0041815.gif" | |
], | |
"facilityType": "MEETING_ROOM", | |
"isAvailable": true | |
}, | |
{ | |
"name": "Meeting Room 2", | |
"capacity": "8", | |
"instruments": [ | |
{ | |
"name": "Conference Table", | |
"quantity": 1 | |
}, | |
{ | |
"name": "Office Chair", | |
"quantity": 8 | |
}, | |
{ | |
"name": "Whiteboard", | |
"quantity": 1 | |
} | |
], | |
"photos": [ | |
"https://iqsmartcenter655.com/wp-content/uploads/2018/07/[email protected]" | |
], | |
"facilityType": "MEETING_ROOM", | |
"isAvailable": false | |
}, | |
{ | |
"name": "Seminar Room 1", | |
"capacity": "30", | |
"instruments": [ | |
{ | |
"name": "Seminar Chair", | |
"quantity": 30 | |
}, | |
{ | |
"name": "Lectern", | |
"quantity": 1 | |
}, | |
{ | |
"name": "Projector", | |
"quantity": 1 | |
} | |
], | |
"photos": [ | |
"https://www.wework.com/ideas/wp-content/uploads/sites/4/2021/08/20201008-199WaterSt-2_v1-scaled.jpg" | |
], | |
"facilityType": "SEMINAR_ROOM", | |
"isAvailable": true | |
}, | |
{ | |
"name": "Brainstorming Area 1", | |
"capacity": "6", | |
"instruments": [ | |
{ | |
"name": "Round Table", | |
"quantity": 1 | |
}, | |
{ | |
"name": "Comfortable Chair", | |
"quantity": 6 | |
}, | |
{ | |
"name": "Whiteboard", | |
"quantity": 1 | |
} | |
], | |
"photos": [ | |
"https://blog.screenbeam.com/wp-content/uploads/2017/05/8-ways-to-create-a-modern-conference-room-ScreenBeam.jpg" | |
], | |
"facilityType": "BRAINSTORMING_AREA", | |
"isAvailable": true | |
}, | |
{ | |
"name": "Stage Area", | |
"capacity": "100", | |
"instruments": [ | |
{ | |
"name": "Stage", | |
"quantity": 1 | |
}, | |
{ | |
"name": "Audience Chair", | |
"quantity": 100 | |
}, | |
{ | |
"name": "Microphone", | |
"quantity": 2 | |
} | |
], | |
"photos": [ | |
"https://www.spectrio.com/wp-content/uploads/2021/12/conference-room-dashboards.jpg" | |
], | |
"facilityType": "STAGE", | |
"isAvailable": false | |
}, | |
{ | |
"name": "Main Hall", | |
"capacity": "150", | |
"instruments": [ | |
{ | |
"name": "Flexible Tables", | |
"quantity": 30 | |
}, | |
{ | |
"name": "Flexible Chairs", | |
"quantity": 150 | |
}, | |
{ | |
"name": "Projector", | |
"quantity": 1 | |
} | |
], | |
"photos": [ | |
"https://www.coalesse.com/wp-content/uploads/2019/05/16-0041815.gif", | |
"https://iqsmartcenter655.com/wp-content/uploads/2018/07/[email protected]" | |
], | |
"facilityType": "MAIN_HALL", | |
"isAvailable": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment