Last active
February 28, 2019 01:11
-
-
Save adamrneary/eceeaac20c1cea73eaf07c729e8b9f29 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
{ | |
"title": "Loft in Mission Bay", | |
"listingId": "112358", | |
"sections": [ | |
{ | |
"sectionId": "<some guid>", | |
"__typename": "SubnavTabs", | |
"items": [ | |
{ "title": "Listing details", "url": "/manage_your_space/112358/details", "active": true}, | |
{ "title": "Booking settings", "url": "/manage_your_space/112358/booking_settings", "active": false}, | |
{ "title": "Pricing", "url": "/manage_your_space/112358/pricing", "active": false}, | |
], | |
}, | |
{ | |
"sectionId": "<some guid>", | |
"__typename": "TodoList", | |
"title": "To do", | |
"items": [ | |
{ | |
"title": "Relist your listing", | |
"desc": "Your listing is currently unlisted…", | |
"buttonCopy": "Relist", | |
"buttonAction": "LINK", | |
"buttonCta": "/manage_your_space/112358/relist" | |
}, | |
], | |
}, | |
{ | |
"sectionId": "<some guid>", | |
"__typename": "PhotoSection", | |
"title": "Photos", | |
"buttonCopy": "Edit", | |
"buttonAction": "LINK", | |
"buttonCta": "/manage_your_space/112358/photos", | |
"photoCount": 6, | |
"photos": [ | |
{ | |
"base64preview": "asdkjhfakjsdkfhjaskjhf", | |
"fourierUrl": "<some photo link>", | |
}, | |
{ | |
"base64preview": "123123asdkjhfakjsdkfhjaskjhf", | |
"fourierUrl": "<some photo link>", | |
}, | |
], | |
}, | |
{ | |
"sectionId": "<some guid>", | |
"__typename": "TableSection", | |
"title": "Rooms and spaces", | |
"buttonCopy": "Edit", | |
"buttonAction": "LINK", | |
"buttonCta": "/manage_your_space/112358/rooms", | |
"items": [ | |
{ | |
"title": "Bedrooms", | |
"value": 3, | |
}, | |
{ | |
"title": "Beds", | |
"value": 2, | |
}, | |
], | |
}, | |
{ | |
"sectionId": "<some guid>", | |
"__typename": "TableSection", | |
"title": "Amenities", | |
"buttonCopy": "Edit", | |
"buttonAction": "LINK", | |
"buttonCta": "/manage_your_space/112358/amenities", | |
"items": [ | |
{ | |
"title": "Essentials", | |
"icons": "<some icon url>", | |
}, | |
{ | |
"title": "Kitchen", | |
"icons": "<some icon url>", | |
}, | |
], | |
}, | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment