{"info":{"_postman_id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","name":"OpenHouse.ai API","description":"<html><head></head><body><p>The backend API to the Openhouse.ai system.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Requests marked with a lock require authentication. We currently only support Bearer Token authentication.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"}],"owner":"6343891","collectionId":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","publishedId":"SVfGyBkb","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"009999"},"publishDate":"2021-03-25T16:32:56.000Z"},"item":[{"name":"Builder Sync V1","item":[{"name":"Sync Communities","id":"096bf9b4-f98d-4607-8ab6-d9c574905a9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer example-token-123","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"communityId\": \"abc123\",\n        \"communityDisplayName\": \"Display Name\",\n        \"communityGroup\": \"Northwest City\",\n        \"communityType\": \"Single Family\"\n    }\n]\n\n"},"url":"https://api.openhouse.ai/api/v1/builder-proxy/communities","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the communities for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommended that this endpoint is hit nightly 1 hour prior to the home model and 2 hours prior to the inventory endpoints.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of communities that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>communityId</td>\n<td>String</td>\n<td>True</td>\n<td>abc123</td>\n<td>The builder's internal id for the community</td>\n</tr>\n<tr>\n<td>communityDisplayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The community's public facing display name</td>\n</tr>\n<tr>\n<td>communityGroup</td>\n<td>String</td>\n<td>True</td>\n<td>Northwest</td>\n<td>The top level group this community is a part of</td>\n</tr>\n<tr>\n<td>communityType</td>\n<td>String</td>\n<td>True</td>\n<td>Single Family</td>\n<td>The second level group this community is a part of</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","builder-proxy","communities"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"096bf9b4-f98d-4607-8ab6-d9c574905a9d"},{"name":"Sync Homes","id":"6386f29e-2b49-4ff3-a44a-a44c6913c11d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer example-token-123","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"listingId\": \"AIDEN_A3\",\n        \"listingDisplayName\": \"Display Name\",\n        \"bedrooms\": \"3\",\n        \"bathrooms\": \"2\",\n        \"halfBaths\": \"1\",\n        \"garage\": \"Single\",\n        \"floorSize\": \"1458\",\n        \"homeType\": \"Front Attached Garage\",\n        \"listingCategory\": \"HOME_MODELS\",\n        \"listedCommunities\": [\n            \"abc123\"\n        ],\n        \"price\": 525520,\n        \"communityPricing\": {\n            \"abc123\": 400000\n        }\n    }\n]"},"url":"https://api.openhouse.ai/api/v1/builder-proxy/home-models","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the home models for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommended that this endpoint is hit nightly 1 hour after the community endpoint and 1 hour prior to the inventory endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of home models that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>listingId</td>\n<td>String</td>\n<td>True</td>\n<td>AIDEN_A3</td>\n<td>The builder's internal id for the home model</td>\n</tr>\n<tr>\n<td>listingDisplayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The home model's public facing display name</td>\n</tr>\n<tr>\n<td>bedrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>3</td>\n<td>The minimum number of bedrooms for this home model</td>\n</tr>\n<tr>\n<td>bathrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>2</td>\n<td>The minimum number of bathrooms for this home model</td>\n</tr>\n<tr>\n<td>halfBaths</td>\n<td>Int</td>\n<td>False</td>\n<td>1</td>\n<td>The minimum number of half baths for this home model</td>\n</tr>\n<tr>\n<td>garage</td>\n<td>String</td>\n<td>False</td>\n<td>Single</td>\n<td>The type of garage for this home model</td>\n</tr>\n<tr>\n<td>floorSize</td>\n<td>Int</td>\n<td>True</td>\n<td>1458</td>\n<td>The floor size of this home model in square feet</td>\n</tr>\n<tr>\n<td>homeType</td>\n<td>String</td>\n<td>True</td>\n<td>Front Attached Garage</td>\n<td>The top level category for this home model</td>\n</tr>\n<tr>\n<td>listingCategory</td>\n<td>Enum(HOME_MODELS)</td>\n<td>True</td>\n<td>HOME_MODELS</td>\n<td>The type of listing. Currently the only supported value is HOME_MODELS</td>\n</tr>\n<tr>\n<td>listedCommunities</td>\n<td>Array</td>\n<td>False</td>\n<td>[\"abc123\"]</td>\n<td>The builder's internal id's of communities this home model can be built in</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Int</td>\n<td>True</td>\n<td>525520</td>\n<td>The default display price for this home model</td>\n</tr>\n<tr>\n<td>communityPricing</td>\n<td>Map&lt;String, Int&gt;</td>\n<td>False</td>\n<td>{\"abc123\": 400000}</td>\n<td>The default display price for this home model for each community. The key is the builder's internal id for the community</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","builder-proxy","home-models"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"6386f29e-2b49-4ff3-a44a-a44c6913c11d"},{"name":"Sync Inventory","id":"ac27f366-500e-478a-8c4f-d6d46c2b90bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer example-token-123","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"[\n    {\n        \"listingId\": \"AIDEN_A3_123\",\n        \"listedCommunity\": \"abc123\",\n        \"modelId\": \"AIDEN_A3\",\n        \"listingDisplayName\": \"Display Name\",\n        \"country\": \"CAN\",\n        \"countrySubDivision\": \"AB\",\n        \"city\": \"City Name\",\n        \"address\": \"555 Test St\",\n        \"bedrooms\": \"3\",\n        \"bathrooms\": \"2\",\n        \"halfBaths\": \"1\",\n        \"garage\": \"Single\",\n        \"floorSize\": 1234,\n        \"homeType\": \"Front Attached Garage\",\n        \"possessionDateSecond\": 1539928800,\n        \"listingCategory\": \"INVENTORIES\",\n        \"price\": 293150.7972\n    },\n    {\n        \"listingId\": \"AIDEN_A3_SHOW\",\n        \"listedCommunity\": \"abc123\",\n        \"modelId\": \"AIDEN_A3\",\n        \"listingDisplayName\": \"Display Name\",\n        \"country\": \"CAN\",\n        \"countrySubDivision\": \"AB\",\n        \"city\": \"City Name\",\n        \"address\": \"556 Test St\",\n        \"bedrooms\": \"3\",\n        \"bathrooms\": \"2\",\n        \"halfBaths\": \"1\",\n        \"garage\": \"Single\",\n        \"floorSize\": 1234,\n        \"homeType\": \"Front Attached Garage\",\n        \"listingCategory\": \"SHOW_HOMES\",\n        \"salesTeamId\": \"abcSalesTeam\"\n    }\n]"},"url":"https://api.openhouse.ai/api/v1/builder-proxy/inventory","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the inventory (Quick Possessions and Showhomes) for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommend that this endpoint is hit nightly 2 hours after the community endpoint and 1 hour after the home model endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of inventory that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>listingId</td>\n<td>String</td>\n<td>True</td>\n<td>AIDEN_A3_123</td>\n<td>The builder's internal id for the inventory</td>\n</tr>\n<tr>\n<td>listedCommunity</td>\n<td>String</td>\n<td>False</td>\n<td>abc123</td>\n<td>The builder's internal id for the community this inventory is found in</td>\n</tr>\n<tr>\n<td>modelId</td>\n<td>String</td>\n<td>False</td>\n<td>AIDEN_A3</td>\n<td>The builder's internal id for the home model this inventory is based on</td>\n</tr>\n<tr>\n<td>listingDisplayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The inventory's public facing display name</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>True</td>\n<td>CAN</td>\n<td>The country code for this inventory in ISO Alpha-3</td>\n</tr>\n<tr>\n<td>countrySubDivision</td>\n<td>String</td>\n<td>True</td>\n<td>AB</td>\n<td>The province/state for this inventory in ISO Alpha-2</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>True</td>\n<td>City Name</td>\n<td>The city for this inventory</td>\n</tr>\n<tr>\n<td>address</td>\n<td>String</td>\n<td>True</td>\n<td>555 Test St</td>\n<td>The address for this inventory</td>\n</tr>\n<tr>\n<td>bedrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>3</td>\n<td>The number of bedrooms for this inventory</td>\n</tr>\n<tr>\n<td>bathrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>2</td>\n<td>The number of bathrooms for this inventory</td>\n</tr>\n<tr>\n<td>halfBaths</td>\n<td>Int</td>\n<td>False</td>\n<td>1</td>\n<td>The number of half baths for this inventory</td>\n</tr>\n<tr>\n<td>garage</td>\n<td>String</td>\n<td>False</td>\n<td>Single</td>\n<td>The type of garage for this inventory</td>\n</tr>\n<tr>\n<td>floorSize</td>\n<td>Int</td>\n<td>True</td>\n<td>1234</td>\n<td>The floor size of this inventory in square feet</td>\n</tr>\n<tr>\n<td>homeType</td>\n<td>String</td>\n<td>True</td>\n<td>Front Attached Garage</td>\n<td>The top level category for this inventory</td>\n</tr>\n<tr>\n<td>possessionDateSecond</td>\n<td>Long</td>\n<td>False</td>\n<td>10000000</td>\n<td>The day this quick possession will be available to take possession. Not used for Showhomes</td>\n</tr>\n<tr>\n<td>listingCategory</td>\n<td>Enum(INVENTORIES, SHOW_HOMES)</td>\n<td>True</td>\n<td>INVENTORIES</td>\n<td>The type of listing. Currently the only supported values are INVENTORIES (Quick Possessions) and SHOW_HOMES</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Int</td>\n<td>False</td>\n<td>525520</td>\n<td>The default display price for this inventory. Not used for Showhomes</td>\n</tr>\n<tr>\n<td>salesTeamId</td>\n<td>String</td>\n<td>False</td>\n<td>abcSalesTeam</td>\n<td>The sales team for this inventory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v1","builder-proxy","inventory"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac27f366-500e-478a-8c4f-d6d46c2b90bd"}],"id":"cf922536-ba0b-4851-a209-5ec8a1d12c63","_postman_id":"cf922536-ba0b-4851-a209-5ec8a1d12c63","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","name":"OpenHouse.ai API","type":"collection"}}},{"name":"Builder Sync V2","item":[{"name":"Sync Communities","id":"f842a5de-a0d3-4e56-ab10-6ebab8a2df28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer example-token-123","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"[{\n\t\"id\": \"001AA\",\n\t\"displayName\": \"Allman Acres\",\n\t\"group\": \"North Pittsburgh\",\n\t\"type\": \"Final Opportunity\"\n}, {\n\t\"id\": \"001CC\",\n\t\"displayName\": \"Copper Creek\",\n\t\"group\": \"North Pittsburgh\",\n\t\"type\": \"Final Opportunity\"\n}, {\n\t\"id\": \"001CV\",\n\t\"displayName\": \"Cherry Valley Lakeview Estates\",\n\t\"group\": \"West Pittsburgh\",\n\t\"type\": \"New Homesites\"\n}, {\n\t\"id\": \"001JF\",\n\t\"displayName\": \"Justabout Farms\",\n\t\"group\": \"South Pittsburgh\",\n\t\"type\": \"Selling Fast!\"\n}, {\n\t\"id\": \"001MT\",\n\t\"displayName\": \"Marshall Trails\",\n\t\"group\": \"North Pittsburgh\",\n\t\"type\": \"Join VIP\"\n}, {\n\t\"id\": \"001SP\",\n\t\"displayName\": \"Sherwood Pond\",\n\t\"group\": \"South Pittsburgh\",\n\t\"type\": \"Last Chance\"\n}, {\n\t\"id\": \"001SW\",\n\t\"displayName\": \"Spring Way\",\n\t\"group\": \"North Pittsburgh\",\n\t\"type\": \"New Community\"\n}, {\n\t\"id\": \"001WS\",\n\t\"displayName\": \"Wexford Station\",\n\t\"group\": \"North Pittsburgh\",\n\t\"type\": \"Final Opportunity\"\n}]"},"url":"https://api.openhouse.ai/api/v2/builder-proxy/communities","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the communities for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommended that this endpoint is hit nightly 1 hour prior to the floorplan and 2 hours prior to the inventory endpoints.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of communities that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>True</td>\n<td>abc123</td>\n<td>The builder's internal id for the community</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The community's public facing display name</td>\n</tr>\n<tr>\n<td>group</td>\n<td>String</td>\n<td>True</td>\n<td>Northwest</td>\n<td>The primary group this community is a part of</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>True</td>\n<td>Single Family</td>\n<td>The type of homes in this community</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","builder-proxy","communities"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"f842a5de-a0d3-4e56-ab10-6ebab8a2df28"},{"name":"Sync Floorplans","id":"77809e81-ca25-4526-91f5-20bee25f8514","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer example-token-123","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"[{\n\t\"listingId\": \"BELLVIEW_A1\",\n\t\"listingDisplayName\": \"Bellview\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1540.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-802\", \"thi-452\"],\n\t\"price\": 522026.75,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 526407.56,\n\t\t\"thi-452\": 552294.94,\n\t\t\"thi-802\": 522026.75\n\t}\n}, {\n\t\"listingId\": \"BELLVIEW_22_A1\",\n\t\"listingDisplayName\": \"Bellview 22\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1682.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-802\", \"thi-452\"],\n\t\"price\": 544784.8,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 558272.06,\n\t\t\"thi-452\": 583601.25,\n\t\t\"thi-802\": 544784.8\n\t}\n}, {\n\t\"listingId\": \"BIRMINGHAM\",\n\t\"listingDisplayName\": \"Birmingham\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 3098.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-51\"],\n\t\"price\": 2120476.2,\n\t\"communityPricing\": {\n\t\t\"thi-51\": 2120476.2\n\t}\n}, {\n\t\"listingId\": \"BRAVO\",\n\t\"listingDisplayName\": \"Bravo\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1600.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-802\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-562\", \"thi-121\", \"thi-452\"],\n\t\"price\": 524412.06,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 559156.8,\n\t\t\"thi-121\": 541965.2,\n\t\t\"thi-177\": 543193.4,\n\t\t\"thi-231\": 535406.0,\n\t\t\"thi-452\": 556110.94,\n\t\t\"thi-562\": 544842.44,\n\t\t\"thi-802\": 524412.06\n\t}\n}, {\n\t\"listingId\": \"BRAXTON_A5\",\n\t\"listingDisplayName\": \"Braxton\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2079.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-715\", \"thi-191\", \"thi-321\", \"thi-405\"],\n\t\"price\": 658001.9,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 710734.3,\n\t\t\"thi-15\": 672462.75,\n\t\t\"thi-161\": 697926.44,\n\t\t\"thi-177\": 658001.9,\n\t\t\"thi-191\": 665777.8,\n\t\t\"thi-231\": 679742.4,\n\t\t\"thi-251\": 723244.94,\n\t\t\"thi-321\": 680741.0,\n\t\t\"thi-405\": 668640.25,\n\t\t\"thi-715\": 784622.1\n\t}\n}, {\n\t\"listingId\": \"CAMBRIDGE_26_A1\",\n\t\"listingDisplayName\": \"Cambridge 26\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2276.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-161\", \"thi-391\", \"thi-251\", \"thi-115\", \"thi-412\", \"thi-452\", \"thi-321\", \"thi-121\", \"thi-405\", \"thi-381\"],\n\t\"price\": 665533.06,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 912160.6,\n\t\t\"thi-121\": 686316.4,\n\t\t\"thi-161\": 774771.3,\n\t\t\"thi-251\": 779531.7,\n\t\t\"thi-321\": 770689.06,\n\t\t\"thi-381\": 696447.75,\n\t\t\"thi-391\": 762208.6,\n\t\t\"thi-405\": 713049.8,\n\t\t\"thi-412\": 665533.06,\n\t\t\"thi-452\": 794167.8\n\t}\n}, {\n\t\"listingId\": \"CAMBRIDGE_A1\",\n\t\"listingDisplayName\": \"Cambridge 28\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2438.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-391\", \"thi-452\", \"thi-321\", \"thi-121\", \"thi-381\"],\n\t\"price\": 719002.1,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 764548.44,\n\t\t\"thi-152\": 721292.56,\n\t\t\"thi-321\": 789002.9,\n\t\t\"thi-381\": 719002.1,\n\t\t\"thi-391\": 788204.5,\n\t\t\"thi-452\": 815396.8\n\t}\n}, {\n\t\"listingId\": \"CONCORD_A8\",\n\t\"listingDisplayName\": \"Concord\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2289.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-412\", \"thi-177\", \"thi-715\", \"thi-191\", \"thi-121\", \"thi-405\", \"thi-452\"],\n\t\"price\": 640331.0,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 727877.2,\n\t\t\"thi-121\": 661354.7,\n\t\t\"thi-15\": 691434.94,\n\t\t\"thi-161\": 718104.0,\n\t\t\"thi-177\": 678128.9,\n\t\t\"thi-191\": 685610.25,\n\t\t\"thi-231\": 701648.94,\n\t\t\"thi-251\": 739390.7,\n\t\t\"thi-405\": 686206.5,\n\t\t\"thi-412\": 640331.0,\n\t\t\"thi-452\": 766578.44,\n\t\t\"thi-715\": 799779.5\n\t}\n}, {\n\t\"listingId\": \"CYPRESS\",\n\t\"listingDisplayName\": \"Precedence - Cypress\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1349.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"033-338A\"],\n\t\"price\": 352121.5,\n\t\"communityPricing\": {\n\t\t\"033-338A\": 381014.75\n\t}\n}, {\n\t\"listingId\": \"Cypress E\",\n\t\"listingDisplayName\": \"Verona West - Cypress E\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1503.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 419413.03,\n\t\"communityPricing\": {\n\t\t\"028-28\": 477117.38\n\t}\n}, {\n\t\"listingId\": \"Cypress EC\",\n\t\"listingDisplayName\": \"Verona West - Cypress EC\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1525.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 425200.62,\n\t\"communityPricing\": {\n\t\t\"028-28\": 457825.0\n\t}\n}, {\n\t\"listingId\": \"Eden_B1\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B1\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1155.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 303820.8,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 303820.8\n\t}\n}, {\n\t\"listingId\": \"Eden_B1_E1\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B1 E1\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1178.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 319837.44,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 319837.44\n\t}\n}, {\n\t\"listingId\": \"Eden_B1_E2\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B1 E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1178.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 319837.44,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 319837.44\n\t}\n}, {\n\t\"listingId\": \"Eden_B2\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1155.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Eden_B2-E1\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2 E1\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 0.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Eden_B2_E2\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2 E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"0\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1178.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Eden_B2L\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2L\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1155.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 289900.0,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 325457.53\n\t}\n}, {\n\t\"listingId\": \"Eden_B2L_E1\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2L E1\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"0\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1178.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 302500.0,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 318440.62\n\t}\n}, {\n\t\"listingId\": \"Eden_B2L_E2\",\n\t\"listingDisplayName\": \"Legacy Common - Eden B2L E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"0\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1178.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Eden_End_Unit-1\",\n\t\"listingDisplayName\": \"Unity In Seton - Eden End Unit\",\n\t\"bedrooms\": \"0\",\n\t\"bathrooms\": \"0\",\n\t\"halfBaths\": \"0\",\n\t\"floorSize\": 0.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"EMERSON\",\n\t\"listingDisplayName\": \"Emerson Mid Unit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1290.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"010-10\"],\n\t\"price\": 574999.94,\n\t\"communityPricing\": {\n\t\t\"010-10\": 597999.94\n\t}\n}, {\n\t\"listingId\": \"ENCORE\",\n\t\"listingDisplayName\": \"Encore\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2309.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-152\", \"thi-391\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-412\", \"thi-177\", \"thi-715\", \"thi-191\", \"thi-321\", \"thi-121\", \"thi-405\", \"thi-452\"],\n\t\"price\": 641303.8,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 727992.0,\n\t\t\"thi-121\": 673143.5,\n\t\t\"thi-15\": 694440.2,\n\t\t\"thi-152\": 691431.4,\n\t\t\"thi-161\": 732567.9,\n\t\t\"thi-177\": 675651.5,\n\t\t\"thi-191\": 691942.0,\n\t\t\"thi-231\": 696934.1,\n\t\t\"thi-251\": 741659.25,\n\t\t\"thi-321\": 722155.56,\n\t\t\"thi-391\": 738701.44,\n\t\t\"thi-405\": 702892.4,\n\t\t\"thi-412\": 641303.8,\n\t\t\"thi-452\": 779307.4,\n\t\t\"thi-715\": 805998.9\n\t}\n}, {\n\t\"listingId\": \"FAIRMONT_A12\",\n\t\"listingDisplayName\": \"Fairmont\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2252.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-391\", \"thi-251\", \"thi-412\", \"thi-321\", \"thi-381\"],\n\t\"price\": 657258.2,\n\t\"communityPricing\": {\n\t\t\"thi-152\": 682804.9,\n\t\t\"thi-251\": 769235.25,\n\t\t\"thi-321\": 758146.3,\n\t\t\"thi-381\": 680822.56,\n\t\t\"thi-391\": 753017.2,\n\t\t\"thi-412\": 657258.2\n\t}\n}, {\n\t\"listingId\": \"GEORGIA_A1\",\n\t\"listingDisplayName\": \"Georgia\",\n\t\"bedrooms\": \"1\",\n\t\"bathrooms\": \"1\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1081.0,\n\t\"homeType\": \"Bungalow\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-802\"],\n\t\"price\": 489925.6,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 504124.22,\n\t\t\"thi-802\": 489925.6\n\t}\n}, {\n\t\"listingId\": \"GRANVILLE\",\n\t\"listingDisplayName\": \"Granville Mid Unit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1381.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"010-10\"],\n\t\"price\": 597999.94,\n\t\"communityPricing\": {\n\t\t\"010-10\": 622959.8\n\t}\n}, {\n\t\"listingId\": \"GRANVILLE E\",\n\t\"listingDisplayName\": \"Granville End Unit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1381.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"010-10\"],\n\t\"price\": 609000.0,\n\t\"communityPricing\": {\n\t\t\"010-10\": 609000.0\n\t}\n}, {\n\t\"listingId\": \"GREYSTONE_C1_ELITE\",\n\t\"listingDisplayName\": \"Greystone\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2902.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\"],\n\t\"price\": 930985.3,\n\t\"communityPricing\": {\n\t\t\"thi-321\": 930985.3\n\t}\n}, {\n\t\"listingId\": \"HAMILTON_A1\",\n\t\"listingDisplayName\": \"Hamilton\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1712.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-802\", \"thi-452\"],\n\t\"price\": 549037.94,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 558591.5,\n\t\t\"thi-452\": 584135.1,\n\t\t\"thi-802\": 549037.94\n\t}\n}, {\n\t\"listingId\": \"HARRINGTON_A1_ZERO\",\n\t\"listingDisplayName\": \"Harrington\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2120.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-191\", \"thi-321\", \"thi-121\", \"thi-715\"],\n\t\"price\": 662309.44,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 718391.0,\n\t\t\"thi-121\": 662309.44,\n\t\t\"thi-15\": 678945.1,\n\t\t\"thi-191\": 674836.94,\n\t\t\"thi-231\": 693212.7,\n\t\t\"thi-251\": 757975.4,\n\t\t\"thi-321\": 686117.25,\n\t\t\"thi-715\": 782940.0\n\t}\n}, {\n\t\"listingId\": \"Haven\",\n\t\"listingDisplayName\": \"Parallel Bloc - Haven\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1387.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 382872.34,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 382872.34\n\t}\n}, {\n\t\"listingId\": \"Haven_End-L\",\n\t\"listingDisplayName\": \"Parallel Bloc - Haven End-L\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1407.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 399131.03,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 399131.03\n\t}\n}, {\n\t\"listingId\": \"Haven_End-R\",\n\t\"listingDisplayName\": \"Parallel Bloc - Haven - End RR\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1405.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 399700.9,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 399700.9\n\t}\n}, {\n\t\"listingId\": \"HIGHLAND_A1\",\n\t\"listingDisplayName\": \"Highland\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2209.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-251\"],\n\t\"price\": 709787.8,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 727255.75,\n\t\t\"thi-251\": 709787.8\n\t}\n}, {\n\t\"listingId\": \"KENSINGTON_A1_ZERO\",\n\t\"listingDisplayName\": \"Kensington\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1881.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-115\"],\n\t\"price\": 650662.25,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 687451.06,\n\t\t\"thi-15\": 650662.25\n\t}\n}, {\n\t\"listingId\": \"LANCASTER DUPLEX\",\n\t\"listingDisplayName\": \"Lancaster\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1660.0,\n\t\"homeType\": \"Duplex\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Latitude\",\n\t\"listingDisplayName\": \"Parallel Bloc - Latitude\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1432.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 387457.9,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 387457.9\n\t}\n}, {\n\t\"listingId\": \"Latitude_End-L\",\n\t\"listingDisplayName\": \"Parallel Bloc - Latitude End-L\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1452.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Latitude_End-R\",\n\t\"listingDisplayName\": \"Parallel Bloc- Latitude End -R\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1450.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 425308.8,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 436438.8\n\t}\n}, {\n\t\"listingId\": \"LEXINGTON\",\n\t\"listingDisplayName\": \"Lexington\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Triple\",\n\t\"floorSize\": 3171.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-51\"],\n\t\"price\": 2178257.8,\n\t\"communityPricing\": {\n\t\t\"thi-51\": 2178257.8\n\t}\n}, {\n\t\"listingId\": \"Lincoln_A1\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A1\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1141.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 287762.88,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 287762.88\n\t}\n}, {\n\t\"listingId\": \"Lincoln_A1_E1\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A1 E1\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1164.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Lincoln_A1_E2\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A1 E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1164.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 299280.0,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 299280.0\n\t}\n}, {\n\t\"listingId\": \"Lincoln_A2\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A2\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1141.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Lincoln_A2_ E1\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A2 E1\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1164.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"017-26A\"],\n\t\"price\": 303408.0,\n\t\"communityPricing\": {\n\t\t\"017-26A\": 303408.0\n\t}\n}, {\n\t\"listingId\": \"Lincoln_A2 E2\",\n\t\"listingDisplayName\": \"Legacy Common - Lincoln A2 E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 1164.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Madison_End_Unit-1\",\n\t\"listingDisplayName\": \"Unity In Seton - Madison End Unit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Tandem\",\n\t\"floorSize\": 0.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"MAGNOLIA\",\n\t\"listingDisplayName\": \"Precedence - Magnolia\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1389.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"033-338A\"],\n\t\"price\": 364631.38,\n\t\"communityPricing\": {\n\t\t\"033-338A\": 392011.2\n\t}\n}, {\n\t\"listingId\": \"MAGNOLIA_CORNER\",\n\t\"listingDisplayName\": \"Precedence - Magnolia Corner\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1411.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"033-338A\"],\n\t\"price\": 368453.4,\n\t\"communityPricing\": {\n\t\t\"033-338A\": 398059.22\n\t}\n}, {\n\t\"listingId\": \"MANSFIELD DUPLEX\",\n\t\"listingDisplayName\": \"Mansfield\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1460.0,\n\t\"homeType\": \"Duplex\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"MCKENZIE_A3_ELEMENTS\",\n\t\"listingDisplayName\": \"McKenzie\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1640.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-802\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-562\", \"thi-121\", \"thi-452\"],\n\t\"price\": 528321.8,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 568901.6,\n\t\t\"thi-121\": 534777.6,\n\t\t\"thi-177\": 548464.8,\n\t\t\"thi-231\": 538393.7,\n\t\t\"thi-452\": 558447.2,\n\t\t\"thi-562\": 551793.25,\n\t\t\"thi-802\": 528321.8\n\t}\n}, {\n\t\"listingId\": \"MCKENZIE_A7_DUPLEX\",\n\t\"listingDisplayName\": \"McKenzie Duplex\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1640.0,\n\t\"homeType\": \"Duplex\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\"],\n\t\"price\": 537648.6,\n\t\"communityPricing\": {\n\t\t\"thi-321\": 537648.6\n\t}\n}, {\n\t\"listingId\": \"Monarch\",\n\t\"listingDisplayName\": \"Verona West - Monarch\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1503.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 445000.0,\n\t\"communityPricing\": {\n\t\t\"028-28\": 493284.34\n\t}\n}, {\n\t\"listingId\": \"Monarch E\",\n\t\"listingDisplayName\": \"Verona West - Monarch E\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1503.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 442563.4,\n\t\"communityPricing\": {\n\t\t\"028-28\": 504059.8\n\t}\n}, {\n\t\"listingId\": \"Monarch EC\",\n\t\"listingDisplayName\": \"Verona West - Monarch EC\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1525.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 455000.0,\n\t\"communityPricing\": {\n\t\t\"028-28\": 502874.38\n\t}\n}, {\n\t\"listingId\": \"MONROE_A1\",\n\t\"listingDisplayName\": \"Monroe\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2260.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-115\", \"thi-177\", \"thi-321\", \"thi-715\"],\n\t\"price\": 702254.56,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 759467.7,\n\t\t\"thi-15\": 714824.8,\n\t\t\"thi-177\": 702254.56,\n\t\t\"thi-321\": 743401.94,\n\t\t\"thi-715\": 836280.9\n\t}\n}, {\n\t\"listingId\": \"MULBERRY\",\n\t\"listingDisplayName\": \"Precedence - Mulberry\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1389.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"033-338A\"],\n\t\"price\": 357157.66,\n\t\"communityPricing\": {\n\t\t\"033-338A\": 397576.2\n\t}\n}, {\n\t\"listingId\": \"OAKWOOD\",\n\t\"listingDisplayName\": \"Oakwood Mid Unit\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1796.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"010-10\"],\n\t\"price\": 698999.7,\n\t\"communityPricing\": {\n\t\t\"010-10\": 726959.7\n\t}\n}, {\n\t\"listingId\": \"OAKWOOD E\",\n\t\"listingDisplayName\": \"Oakwood End Unit\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1796.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"010-10\"],\n\t\"price\": 714999.6,\n\t\"communityPricing\": {\n\t\t\"010-10\": 743599.56\n\t}\n}, {\n\t\"listingId\": \"OXFORD 2\",\n\t\"listingDisplayName\": \"Oxford II\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2067.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-152\", \"thi-391\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-715\", \"thi-191\", \"thi-321\", \"thi-121\", \"thi-405\", \"thi-381\"],\n\t\"price\": 633047.0,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 694490.75,\n\t\t\"thi-121\": 645448.44,\n\t\t\"thi-15\": 660356.7,\n\t\t\"thi-152\": 652970.7,\n\t\t\"thi-161\": 696356.44,\n\t\t\"thi-177\": 643812.4,\n\t\t\"thi-191\": 651665.25,\n\t\t\"thi-231\": 662990.44,\n\t\t\"thi-251\": 713728.5,\n\t\t\"thi-321\": 674635.3,\n\t\t\"thi-381\": 633047.0,\n\t\t\"thi-391\": 702587.8,\n\t\t\"thi-405\": 668128.2,\n\t\t\"thi-715\": 771700.9\n\t}\n}, {\n\t\"listingId\": \"OXFORD ELITE\",\n\t\"listingDisplayName\": \"Oxford\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1943.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-152\", \"thi-391\", \"thi-251\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-715\", \"thi-191\", \"thi-321\", \"thi-121\", \"thi-405\", \"thi-381\"],\n\t\"price\": 613897.1,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 676463.94,\n\t\t\"thi-121\": 613897.1,\n\t\t\"thi-15\": 647073.2,\n\t\t\"thi-152\": 640538.8,\n\t\t\"thi-161\": 658799.75,\n\t\t\"thi-177\": 624362.0,\n\t\t\"thi-191\": 629898.9,\n\t\t\"thi-231\": 645418.4,\n\t\t\"thi-251\": 691937.0,\n\t\t\"thi-321\": 661432.2,\n\t\t\"thi-381\": 616680.7,\n\t\t\"thi-391\": 668796.3,\n\t\t\"thi-405\": 633351.9,\n\t\t\"thi-715\": 746216.44\n\t}\n}, {\n\t\"listingId\": \"RAEYA_A1\",\n\t\"listingDisplayName\": \"Raeya\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1802.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-802\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-562\", \"thi-121\", \"thi-452\"],\n\t\"price\": 541388.75,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 575645.25,\n\t\t\"thi-121\": 546854.0,\n\t\t\"thi-177\": 559002.7,\n\t\t\"thi-231\": 559375.5,\n\t\t\"thi-452\": 569175.44,\n\t\t\"thi-562\": 558997.5,\n\t\t\"thi-802\": 541388.75\n\t}\n}, {\n\t\"listingId\": \"RAEYA DUPLEX\",\n\t\"listingDisplayName\": \"Raeya\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1802.0,\n\t\"homeType\": \"Duplex\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\"],\n\t\"price\": 548924.75,\n\t\"communityPricing\": {\n\t\t\"thi-321\": 548924.75\n\t}\n}, {\n\t\"listingId\": \"RAVENSWOOD_A1_ELITE\",\n\t\"listingDisplayName\": \"Ravenswood\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2498.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-161\", \"thi-231\", \"thi-121\", \"thi-405\", \"thi-452\"],\n\t\"price\": 694925.75,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 694925.75,\n\t\t\"thi-161\": 776545.44,\n\t\t\"thi-231\": 738979.44,\n\t\t\"thi-405\": 711854.25,\n\t\t\"thi-452\": 797225.3\n\t}\n}, {\n\t\"listingId\": \"Retreat\",\n\t\"listingDisplayName\": \"Parallel Bloc - Retreat\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1385.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 368501.28,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 405300.78\n\t}\n}, {\n\t\"listingId\": \"Retreat_End-L\",\n\t\"listingDisplayName\": \"Parallel Bloc - Retreat End-L\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1405.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 395792.03,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 423074.0\n\t}\n}, {\n\t\"listingId\": \"Retreat_End-R\",\n\t\"listingDisplayName\": \"Parallel Bloc - Retreat End-R\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1403.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 413229.75,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 414677.9\n\t}\n}, {\n\t\"listingId\": \"ROSEWOOD_A1_ELITE\",\n\t\"listingDisplayName\": \"Rosewood\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2481.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-391\", \"thi-251\", \"thi-412\", \"thi-321\"],\n\t\"price\": 677038.5,\n\t\"communityPricing\": {\n\t\t\"thi-152\": 707133.75,\n\t\t\"thi-251\": 795142.75,\n\t\t\"thi-321\": 782574.25,\n\t\t\"thi-391\": 776857.8,\n\t\t\"thi-412\": 677038.5\n\t}\n}, {\n\t\"listingId\": \"ROWAN_2_A1_ELEMENTS\",\n\t\"listingDisplayName\": \"Rowan II\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1730.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-802\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-562\", \"thi-121\", \"thi-452\"],\n\t\"price\": 542255.6,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 580821.0,\n\t\t\"thi-121\": 550186.75,\n\t\t\"thi-177\": 562708.44,\n\t\t\"thi-231\": 565467.5,\n\t\t\"thi-452\": 566368.56,\n\t\t\"thi-562\": 564887.7,\n\t\t\"thi-802\": 542255.6\n\t}\n}, {\n\t\"listingId\": \"ROWAN_2_A7_DUPLEX\",\n\t\"listingDisplayName\": \"Rowan II Duplex\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1730.0,\n\t\"homeType\": \"Duplex\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\"],\n\t\"price\": 549655.25,\n\t\"communityPricing\": {\n\t\t\"thi-321\": 549655.25\n\t}\n}, {\n\t\"listingId\": \"SANDALWOOD ZERO\",\n\t\"listingDisplayName\": \"Sandalwood\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1664.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-562\", \"thi-115\"],\n\t\"price\": 567674.4,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 582308.8,\n\t\t\"thi-562\": 567674.4\n\t}\n}, {\n\t\"listingId\": \"SAVANNAH\",\n\t\"listingDisplayName\": \"Savannah\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2006.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-251\"],\n\t\"price\": 687500.6,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 698610.5,\n\t\t\"thi-251\": 687500.6\n\t}\n}, {\n\t\"listingId\": \"SEQUOIA\",\n\t\"listingDisplayName\": \"Precedence - Sequoia\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1409.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"033-338A\"],\n\t\"price\": 362338.6,\n\t\"communityPricing\": {\n\t\t\"033-338A\": 403074.4\n\t}\n}, {\n\t\"listingId\": \"SIENNA_A1\",\n\t\"listingDisplayName\": \"Sienna\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Optional\",\n\t\"floorSize\": 1460.0,\n\t\"homeType\": \"Laned\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-802\", \"thi-231\", \"thi-115\", \"thi-177\", \"thi-562\", \"thi-121\", \"thi-452\"],\n\t\"price\": 517146.06,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 556221.7,\n\t\t\"thi-121\": 526191.56,\n\t\t\"thi-177\": 535178.44,\n\t\t\"thi-231\": 526323.9,\n\t\t\"thi-452\": 543039.7,\n\t\t\"thi-562\": 540042.1,\n\t\t\"thi-802\": 517146.06\n\t}\n}, {\n\t\"listingId\": \"SPRINGHILL_A1\",\n\t\"listingDisplayName\": \"Springhill\",\n\t\"bedrooms\": \"5\",\n\t\"bathrooms\": \"4\",\n\t\"halfBaths\": \"0\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2673.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-161\", \"thi-391\", \"thi-251\", \"thi-231\", \"thi-412\", \"thi-321\", \"thi-121\", \"thi-452\"],\n\t\"price\": 702767.44,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 725736.06,\n\t\t\"thi-161\": 813934.06,\n\t\t\"thi-231\": 765855.4,\n\t\t\"thi-251\": 813676.94,\n\t\t\"thi-321\": 799059.3,\n\t\t\"thi-391\": 809776.44,\n\t\t\"thi-412\": 702767.44,\n\t\t\"thi-452\": 825474.94\n\t}\n}, {\n\t\"listingId\": \"STANLEY_A5_ELITE\",\n\t\"listingDisplayName\": \"Stanley\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2680.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-391\", \"thi-251\", \"thi-321\", \"thi-381\", \"thi-452\"],\n\t\"price\": 725083.56,\n\t\"communityPricing\": {\n\t\t\"thi-152\": 728639.44,\n\t\t\"thi-251\": 815440.44,\n\t\t\"thi-321\": 797821.06,\n\t\t\"thi-381\": 725083.56,\n\t\t\"thi-391\": 795889.9,\n\t\t\"thi-452\": 818586.8\n\t}\n}, {\n\t\"listingId\": \"Summit\",\n\t\"listingDisplayName\": \"Parallel Bloc - Summit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1528.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 407019.97,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 432644.0\n\t}\n}, {\n\t\"listingId\": \"Summit_End-L\",\n\t\"listingDisplayName\": \"Parallel Bloc - Summit End - L\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1548.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 423848.53,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 442101.75\n\t}\n}, {\n\t\"listingId\": \"Summit_End-R\",\n\t\"listingDisplayName\": \"Parallel Bloc - Summit End -R\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1546.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"040-11A\"],\n\t\"price\": 417713.7,\n\t\"communityPricing\": {\n\t\t\"040-11A\": 480159.78\n\t}\n}, {\n\t\"listingId\": \"SYMPHONY_A1\",\n\t\"listingDisplayName\": \"Symphony\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2411.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\", \"thi-391\"],\n\t\"price\": 772800.2,\n\t\"communityPricing\": {\n\t\t\"thi-321\": 772800.2,\n\t\t\"thi-391\": 773277.06\n\t}\n}, {\n\t\"listingId\": \"Temple\",\n\t\"listingDisplayName\": \"Verona West - Temple\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1493.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 389900.0,\n\t\"communityPricing\": {\n\t\t\"028-28\": 454520.12\n\t}\n}, {\n\t\"listingId\": \"Temple E\",\n\t\"listingDisplayName\": \"Verona West - Temple E\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1491.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 399900.0,\n\t\"communityPricing\": {\n\t\t\"028-28\": 427735.03\n\t}\n}, {\n\t\"listingId\": \"Temple EC\",\n\t\"listingDisplayName\": \"Verona West - Temple EC\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1513.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"028-28\"],\n\t\"price\": 399900.0,\n\t\"communityPricing\": {\n\t\t\"028-28\": 427725.0\n\t}\n}, {\n\t\"listingId\": \"The_Ashbury\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Ashbury\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"2\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1732.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"037-37B\"],\n\t\"price\": 0.0,\n\t\"communityPricing\": {\n\t\t\"037-37B\": 0.0\n\t}\n}, {\n\t\"listingId\": \"The_Ashbury-EU1\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Ashbury End Unit\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"2\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1747.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Ashbury-EU2\",\n\t\"listingDisplayName\": \"Wentworth The Ashbury\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"2\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1745.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Beaumont\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Beaumont\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1468.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Beaumont-EU\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Beaumont End Unit\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Single\",\n\t\"floorSize\": 1482.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Bradford\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Bradford\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1719.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"037-37B\"],\n\t\"price\": 0.0,\n\t\"communityPricing\": {\n\t\t\"037-37B\": 0.0\n\t}\n}, {\n\t\"listingId\": \"The_Bradford-EU1\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Bradford End Unit\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1734.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Bradford-EU2\",\n\t\"listingDisplayName\": \"Wentworth The Bradford\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1732.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Highland\",\n\t\"listingDisplayName\": \"Wentworth Pointe - Highland\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1719.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"The_Highland-EU2\",\n\t\"listingDisplayName\": \"Wentworth The Highland\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1732.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [],\n\t\"communityPricing\": {}\n}, {\n\t\"listingId\": \"Unit_A\",\n\t\"listingDisplayName\": \"Brooklyn - Unit A\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1628.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 706317.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 706317.0\n\t}\n}, {\n\t\"listingId\": \"Unit_B\",\n\t\"listingDisplayName\": \"Brooklyn - Unit B\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1606.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 651777.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 651777.0\n\t}\n}, {\n\t\"listingId\": \"Unit_B2\",\n\t\"listingDisplayName\": \"Brooklyn - Unit B2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1599.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 684969.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 684969.0\n\t}\n}, {\n\t\"listingId\": \"Unit_C\",\n\t\"listingDisplayName\": \"Brooklyn - Unit C\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1615.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 682449.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 682449.0\n\t}\n}, {\n\t\"listingId\": \"Unit_D\",\n\t\"listingDisplayName\": \"Brooklyn - Unit D\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"3\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1610.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 639198.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 639198.0\n\t}\n}, {\n\t\"listingId\": \"Unit_E\",\n\t\"listingDisplayName\": \"Brooklyn - Unit E\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"3\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1606.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 569702.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 569702.0\n\t}\n}, {\n\t\"listingId\": \"Unit_E2\",\n\t\"listingDisplayName\": \"Brooklyn - Unit E2\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"3\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1599.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 596485.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 596485.0\n\t}\n}, {\n\t\"listingId\": \"Unit_F\",\n\t\"listingDisplayName\": \"Brooklyn - Unit F\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"3\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1610.0,\n\t\"homeType\": \"Townhome\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"043-43\"],\n\t\"price\": 610665.0,\n\t\"communityPricing\": {\n\t\t\"043-43\": 610665.0\n\t}\n}, {\n\t\"listingId\": \"WESTCHESTER_A2\",\n\t\"listingDisplayName\": \"Westchester\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2402.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-321\", \"thi-121\", \"thi-251\"],\n\t\"price\": 692123.8,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 692123.8,\n\t\t\"thi-152\": 707056.7,\n\t\t\"thi-251\": 796300.75,\n\t\t\"thi-321\": 776501.94\n\t}\n}, {\n\t\"listingId\": \"WESTWOOD\",\n\t\"listingDisplayName\": \"Westwood\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2025.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-152\", \"thi-391\", \"thi-251\", \"thi-321\", \"thi-381\"],\n\t\"price\": 703455.8,\n\t\"communityPricing\": {\n\t\t\"thi-152\": 703455.8,\n\t\t\"thi-251\": 803872.56,\n\t\t\"thi-321\": 757442.8,\n\t\t\"thi-381\": 710086.56,\n\t\t\"thi-391\": 777091.75\n\t}\n}, {\n\t\"listingId\": \"WINSTON_A11\",\n\t\"listingDisplayName\": \"Winston\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2513.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-15\", \"thi-161\", \"thi-152\", \"thi-251\", \"thi-115\", \"thi-177\", \"thi-321\", \"thi-121\", \"thi-405\", \"thi-381\"],\n\t\"price\": 701083.1,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 780253.8,\n\t\t\"thi-121\": 701083.1,\n\t\t\"thi-15\": 725471.7,\n\t\t\"thi-152\": 717822.1,\n\t\t\"thi-161\": 790507.25,\n\t\t\"thi-177\": 757548.1,\n\t\t\"thi-251\": 795119.2,\n\t\t\"thi-321\": 785544.6,\n\t\t\"thi-381\": 709585.0,\n\t\t\"thi-405\": 726616.2\n\t}\n}, {\n\t\"listingId\": \"WOODLAND\",\n\t\"listingDisplayName\": \"Woodland\",\n\t\"bedrooms\": \"3\",\n\t\"bathrooms\": \"2\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 2148.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-121\", \"thi-251\"],\n\t\"price\": 698341.94,\n\t\"communityPricing\": {\n\t\t\"thi-121\": 712000.7,\n\t\t\"thi-251\": 698341.94\n\t}\n}, {\n\t\"listingId\": \"WOODSIDE\",\n\t\"listingDisplayName\": \"Woodside\",\n\t\"bedrooms\": \"2\",\n\t\"bathrooms\": \"1\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Triple\",\n\t\"floorSize\": 2240.0,\n\t\"homeType\": \"Front Garage\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-51\"],\n\t\"price\": 1999315.9,\n\t\"communityPricing\": {\n\t\t\"thi-51\": 1999315.9\n\t}\n}, {\n\t\"listingId\": \"WYNWOOD_26_A1\",\n\t\"listingDisplayName\": \"Wynwood 26\",\n\t\"bedrooms\": \"1\",\n\t\"bathrooms\": \"1\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1227.0,\n\t\"homeType\": \"Bungalow\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-391\", \"thi-115\", \"thi-412\", \"thi-321\", \"thi-121\", \"thi-381\"],\n\t\"price\": 571933.1,\n\t\"communityPricing\": {\n\t\t\"thi-115\": 670655.0,\n\t\t\"thi-121\": 584632.06,\n\t\t\"thi-321\": 669142.9,\n\t\t\"thi-381\": 599573.56,\n\t\t\"thi-391\": 671833.94,\n\t\t\"thi-412\": 571933.1\n\t}\n}, {\n\t\"listingId\": \"WYNWOOD_28_A1\",\n\t\"listingDisplayName\": \"Wynwood 28\",\n\t\"bedrooms\": \"1\",\n\t\"bathrooms\": \"1\",\n\t\"halfBaths\": \"1\",\n\t\"garage\": \"Double\",\n\t\"floorSize\": 1269.0,\n\t\"homeType\": \"Bungalow\",\n\t\"listingCategory\": \"HOME_MODELS\",\n\t\"listedCommunities\": [\"thi-321\", \"thi-152\", \"thi-391\", \"thi-381\"],\n\t\"price\": 615616.6,\n\t\"communityPricing\": {\n\t\t\"thi-152\": 620867.9,\n\t\t\"thi-321\": 685448.25,\n\t\t\"thi-381\": 615616.6,\n\t\t\"thi-391\": 689675.94\n\t}\n}]"},"url":"https://api.openhouse.ai/api/v2/builder-proxy/floorplans","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the floorplans for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommended that this endpoint is hit nightly 1 hour after the community endpoint and 1 hour prior to the inventory endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of floorplans that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>True</td>\n<td>AIDEN_A3</td>\n<td>The builder's internal id for the floorplan</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The floorplan's public facing display name</td>\n</tr>\n<tr>\n<td>bedrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>3</td>\n<td>The minimum number of bedrooms for this floorplan</td>\n</tr>\n<tr>\n<td>bathrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>2</td>\n<td>The minimum number of bathrooms for this floorplan</td>\n</tr>\n<tr>\n<td>halfBaths</td>\n<td>Int</td>\n<td>False</td>\n<td>1</td>\n<td>The minimum number of half baths for this floorplan</td>\n</tr>\n<tr>\n<td>garage</td>\n<td>String</td>\n<td>False</td>\n<td>Single</td>\n<td>The type of garage for this floorplan</td>\n</tr>\n<tr>\n<td>floorSize</td>\n<td>Int</td>\n<td>True</td>\n<td>1458</td>\n<td>The floor size of this floorplan in square feet</td>\n</tr>\n<tr>\n<td>homeType</td>\n<td>String</td>\n<td>True</td>\n<td>Front Attached Garage</td>\n<td>The type of home for this floorplan</td>\n</tr>\n<tr>\n<td>communityPricing</td>\n<td>Map&lt;String, Float&gt;</td>\n<td>False</td>\n<td>{\"abc123\": 400000.00}</td>\n<td>The display price for this floorplan for each community. The key is the builder's internal id for the community</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","builder-proxy","floorplans"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"77809e81-ca25-4526-91f5-20bee25f8514"},{"name":"Sync Spec Homes and Showhomes","id":"54689c61-4e06-4d4e-b47d-e4269214b678","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer example-token-123","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"[{\n\t\"id\": \"00040902\",\n\t\"communityId\": \"001CV\",\n\t\"floorplanId\": \"GIL2\",\n\t\"displayName\": \"Gilfillan Platinum Craftsman Slab Hardie\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"McDonald\",\n\t\"address\": \"134 Summer Lane\",\n\t\"bedrooms\": 3,\n\t\"bathrooms\": 2,\n\t\"halfBaths\": 1,\n\t\"garage\": \"          \",\n\t\"floorSize\": 2128,\n\t\"homeType\": \"Main-Level Owner's Suite\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 470874.00000000\n}, {\n\t\"id\": \"00003300\",\n\t\"communityId\": \"001JF\",\n\t\"floorplanId\": \"WIN\",\n\t\"displayName\": \"Windsor Platinum Craftsman Basement Hardie\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"Venetia\",\n\t\"address\": \"309 Hayfield Lane\",\n\t\"bedrooms\": 3,\n\t\"bathrooms\": 2,\n\t\"halfBaths\": 1,\n\t\"garage\": \"          \",\n\t\"floorSize\": 2341,\n\t\"homeType\": \"Main-Level Owner's Suite\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 150802.00000000\n}, {\n\t\"id\": \"00004800\",\n\t\"communityId\": \"001JF\",\n\t\"floorplanId\": \"CAS\",\n\t\"displayName\": \"Caspian Diamond Craftsman Basement Hardie\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"Venetia\",\n\t\"address\": \"529 Harvest View Drive\",\n\t\"bedrooms\": 4,\n\t\"bathrooms\": 2,\n\t\"halfBaths\": 1,\n\t\"garage\": \"          \",\n\t\"floorSize\": 2526,\n\t\"homeType\": \"Traditional Single-Family\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 108903.00000000\n}, {\n\t\"id\": \"00005300\",\n\t\"communityId\": \"001SP\",\n\t\"floorplanId\": \"GIL\",\n\t\"displayName\": \"Gilfillan Platinum Craftsman Basement Hardie\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"Canonsburg\",\n\t\"address\": \"316  Maid Marion Lane\",\n\t\"bedrooms\": 3,\n\t\"bathrooms\": 2,\n\t\"halfBaths\": 1,\n\t\"garage\": \"          \",\n\t\"floorSize\": 2177,\n\t\"homeType\": \"Main-Level Owner's Suite\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 684600.00000000\n}, {\n\t\"id\": \"00003600\",\n\t\"communityId\": \"001SP\",\n\t\"floorplanId\": \"MOR2\",\n\t\"displayName\": \"Morgan Platinum Craftsman Slab Hardie\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"Canonsburg\",\n\t\"address\": \"310  Maid Marion Lane\",\n\t\"bedrooms\": 3,\n\t\"bathrooms\": 2,\n\t\"halfBaths\": 0,\n\t\"garage\": \"          \",\n\t\"floorSize\": 1572,\n\t\"homeType\": \"Main-Level Owner's Suite (Ranch)\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 513900.00000000\n}, {\n\t\"id\": \"00010600\",\n\t\"communityId\": \"001WS\",\n\t\"displayName\": \"UNKNOWN\\/UNDECIDED\",\n\t\"country\": \"USA\",\n\t\"countrySubDivision\": \"PA\",\n\t\"city\": \"Wexford\",\n\t\"address\": \"1911 Station Street\",\n\t\"bedrooms\": 0,\n\t\"bathrooms\": 0,\n\t\"halfBaths\": 0,\n\t\"garage\": \"          \",\n\t\"floorSize\": 0,\n\t\"homeType\": \"Main-Level Owner's Suite\",\n\t\"listingCategory\": \"INVENTORIES\",\n\t\"price\": 12500.00000000\n}]"},"url":"https://api.openhouse.ai/api/v2/builder-proxy/inventory","description":"<h1 id=\"summary\">Summary</h1>\n<p>Updates the inventory (Spec Homes and Showhomes) for a builder.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>It is recommend that this endpoint is hit nightly 2 hours after the community endpoint and 1 hour after the floorplan endpoint.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a complete set of inventory that should be available to be displayed.</p>\n<h3 id=\"json-structure\">Json Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>True</td>\n<td>AIDEN_A3_123</td>\n<td>The builder's internal id for the inventory</td>\n</tr>\n<tr>\n<td>communityId</td>\n<td>String</td>\n<td>False</td>\n<td>abc123</td>\n<td>The builder's internal id for the community this inventory is found in</td>\n</tr>\n<tr>\n<td>floorplanId</td>\n<td>String</td>\n<td>False</td>\n<td>AIDEN_A3</td>\n<td>The builder's internal id for the home model this inventory is based on</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>String</td>\n<td>True</td>\n<td>Display Name</td>\n<td>The inventory's public facing display name</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>True</td>\n<td>CAN</td>\n<td>The country code for this inventory in ISO Alpha-3</td>\n</tr>\n<tr>\n<td>countrySubDivision</td>\n<td>String</td>\n<td>True</td>\n<td>AB</td>\n<td>The province/state for this inventory in ISO Alpha-2</td>\n</tr>\n<tr>\n<td>city</td>\n<td>String</td>\n<td>True</td>\n<td>City Name</td>\n<td>The city for this inventory</td>\n</tr>\n<tr>\n<td>address</td>\n<td>String</td>\n<td>True</td>\n<td>555 Test St</td>\n<td>The address for this inventory</td>\n</tr>\n<tr>\n<td>bedrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>3</td>\n<td>The number of bedrooms for this inventory</td>\n</tr>\n<tr>\n<td>bathrooms</td>\n<td>Int</td>\n<td>True</td>\n<td>2</td>\n<td>The number of bathrooms for this inventory</td>\n</tr>\n<tr>\n<td>halfBaths</td>\n<td>Int</td>\n<td>False</td>\n<td>1</td>\n<td>The number of half baths for this inventory</td>\n</tr>\n<tr>\n<td>garage</td>\n<td>String</td>\n<td>False</td>\n<td>Single</td>\n<td>The type of garage for this inventory</td>\n</tr>\n<tr>\n<td>floorSize</td>\n<td>Int</td>\n<td>True</td>\n<td>1234</td>\n<td>The floor size of this inventory in square feet</td>\n</tr>\n<tr>\n<td>homeType</td>\n<td>String</td>\n<td>True</td>\n<td>Front Attached Garage</td>\n<td>The type of home for this inventory</td>\n</tr>\n<tr>\n<td>possessionDateSecond</td>\n<td>Long</td>\n<td>False</td>\n<td>10000000</td>\n<td>The day this quick possession will be available to take possession. Not used for Showhomes</td>\n</tr>\n<tr>\n<td>listingCategory</td>\n<td>Enum(INVENTORIES, SHOW_HOMES)</td>\n<td>True</td>\n<td>INVENTORIES</td>\n<td>The type of listing. Currently the only supported values are INVENTORIES (Spec Homes) and SHOW_HOMES</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Float</td>\n<td>False</td>\n<td>525520.00</td>\n<td>The default display price for this inventory. Not used for Showhomes</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","builder-proxy","inventory"],"host":["api","openhouse","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"54689c61-4e06-4d4e-b47d-e4269214b678"}],"id":"93f00a48-ad1e-44e0-8a95-4f98322f3675","_postman_id":"93f00a48-ad1e-44e0-8a95-4f98322f3675","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","name":"OpenHouse.ai API","type":"collection"}}},{"name":"Guided Home Finder API","item":[{"name":"Get Multiple Users Answers by Id","id":"88bf1325-e725-4a7d-81da-66f0d8b25c2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users?id=e86149de-a6e6-48a4-abb8-44911070fcad&id=339ef709-0d30-41ac-9d58-82902b61fe76","description":"<h1 id=\"summary\">Summary</h1>\n<p>Retrieves quiz answers from multiple users using id.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>Request the endpoint with the ids as inline query parameters with the appropriate authorization string as a message header.</p>\n<p>The return response will be all of the available quiz answer information of the provided ids. This filter can be used in conjunction with time range to further filter the results.</p>\n","urlObject":{"protocol":"https","path":["api","v1","user-data","quiz-funnel","users"],"host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"query":[{"key":"id","value":"e86149de-a6e6-48a4-abb8-44911070fcad"},{"key":"id","value":"339ef709-0d30-41ac-9d58-82902b61fe76"}],"variable":[]}},"response":[{"id":"08cfb30b-27bf-4bda-a669-2ceb735aaa01","name":"Get Multiple Users Answers By ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users?id=017ede7d-b415-4198-a393-8c8925d2bcdf&id=a074fcab-5dcf-46b4-8336-905c0a868c5d","protocol":"https","host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"path":["api","v1","user-data","quiz-funnel","users"],"query":[{"key":"id","value":"017ede7d-b415-4198-a393-8c8925d2bcdf"},{"key":"id","value":"a074fcab-5dcf-46b4-8336-905c0a868c5d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 26 Jul 2022 18:52:39 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"a074fcab-5dcf-46b4-8336-905c0a868c5d\": {\n        \"preferences\": {\n            \"questionsAnswered\": {\n                \"USER_NAME\": {\n                    \"questionText\": \"What is your name?\",\n                    \"answers\": {\n                        \"USER_NAME\": \"John Doe 1\"\n                    }\n                },\n                \"PRIORITY_HIGH\": {\n                    \"questionText\": \"What parts of a home are most important to you?\",\n                    \"answers\": {\n                        \"CATEGORY_2\": \"Kitchen Layouts\",\n                        \"CATEGORY_8\": \"Bathroom Layouts\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"PRIORITY_MEDIUM\": {\n                    \"questionText\": \"What parts of a home are important but not critical to you?\",\n                    \"answers\": {\n                        \"CATEGORY_2\": \"Kitchen Layouts\",\n                        \"CATEGORY_7\": \"Open/Flexible Spaces\",\n                        \"CATEGORY_8\": \"Bathroom Layouts\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"QUESTION_2\": {\n                    \"questionText\": \"Which of the following best describes your family lifestyle?\",\n                    \"answers\": {\n                        \"id9\": \"Rest and Relax Family\"\n                    }\n                },\n                \"QUESTION_5\": {\n                    \"questionText\": \"Which kitchen layouts do you like the most?\",\n                    \"answers\": {\n                        \"id20\": \"Center Island\"\n                    }\n                },\n                \"QUESTION_10\": {\n                    \"questionText\": \"What options for open, flexible space appeal the most to you?\",\n                    \"answers\": {\n                        \"id41\": \"Dedicated loft for quite time\"\n                    }\n                },\n                \"QUESTION_11\": {\n                    \"questionText\": \"Which master bathroom options do you like the most?\",\n                    \"answers\": {\n                        \"id44\": \"Spa Shower + Tub Room(Wet Room)\"\n                    }\n                },\n                \"QUESTION_12\": {\n                    \"questionText\": \"What outdoor space options best fit your needs?\",\n                    \"answers\": {\n                        \"id51\": \"Oversized Backyard Deck\",\n                        \"id67\": \"Full yard landscaping\"\n                    }\n                },\n                \"QUESTION_13\": {\n                    \"questionText\": \"Which exterior styles do you find most appealing?\",\n                    \"answers\": {\n                        \"id61\": \"Tudor\",\n                        \"id64\": \"Heritage Modern\",\n                        \"id65\": \"French Country\"\n                    }\n                },\n                \"QUESTION_3\": {\n                    \"questionText\": \"Which type of parking situation would you prefer?\",\n                    \"answers\": {\n                        \"id13\": \"Detached Garage\"\n                    }\n                },\n                \"QUESTION_4\": {\n                    \"questionText\": \"How large of a garage/parking pad does your family need?\",\n                    \"answers\": {\n                        \"id16\": \"Double Car\"\n                    }\n                }\n            }\n        },\n        \"floorplanClicked\": [\n            {\n                \"floorplanName\": \"The Archer\"\n            },\n            {\n                \"floorplanName\": \"The Chaucer\"\n            },\n            {\n                \"floorplanName\": \"The Archer\"\n            }\n        ]\n    },\n    \"017ede7d-b415-4198-a393-8c8925d2bcdf\": {\n        \"preferences\": {\n            \"questionsAnswered\": {\n                \"QUESTION_8\": {\n                    \"questionText\": \"Do you prefer a dedicated dining room or dine-in kitchen?\",\n                    \"answers\": {\n                        \"id36\": \"Dining Island\"\n                    }\n                },\n                \"QUESTION_7\": {\n                    \"questionText\": \"Which of the following bedroom options meet your needs?\",\n                    \"answers\": {\n                        \"id30\": \"Adjoining Bedrooms(jack and jill)\"\n                    }\n                },\n                \"QUESTION_6\": {\n                    \"questionText\": \"Which kitchen & pantry options best suit your needs?\",\n                    \"answers\": {\n                        \"id1\": \"Butler's Pantry\"\n                    }\n                },\n                \"QUESTION_11\": {\n                    \"questionText\": \"Which master bathroom options do you like the most?\",\n                    \"answers\": {\n                        \"id48\": \"Vanity Tower(on countertop)\"\n                    }\n                },\n                \"USER_NAME\": {\n                    \"questionText\": \"What is your name?\",\n                    \"answers\": {\n                        \"USER_NAME\": \"John Doe 2\"\n                    }\n                },\n                \"PRIORITY_HIGH\": {\n                    \"questionText\": \"What parts of a home are most important to you?\",\n                    \"answers\": {\n                        \"CATEGORY_2\": \"Kitchen Layouts\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"PRIORITY_MEDIUM\": {\n                    \"questionText\": \"What parts of a home are important but not critical to you?\",\n                    \"answers\": {\n                        \"CATEGORY_2\": \"Kitchen Layouts\",\n                        \"CATEGORY_7\": \"Open/Flexible Spaces\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"QUESTION_2\": {\n                    \"questionText\": \"Which of the following best describes your family lifestyle?\",\n                    \"answers\": {\n                        \"id10\": \"Growing and Upsizing Family\"\n                    }\n                },\n                \"QUESTION_5\": {\n                    \"questionText\": \"Which kitchen layouts do you like the most?\",\n                    \"answers\": {\n                        \"id18\": \"Peninsula Island or L-Shaped\"\n                    }\n                },\n                \"QUESTION_10\": {\n                    \"questionText\": \"What options for open, flexible space appeal the most to you?\",\n                    \"answers\": {\n                        \"id40\": \"Bonus room to lounge in\"\n                    }\n                },\n                \"QUESTION_12\": {\n                    \"questionText\": \"What outdoor space options best fit your needs?\",\n                    \"answers\": {\n                        \"id53\": \"Two Tiered Deck\"\n                    }\n                },\n                \"QUESTION_13\": {\n                    \"questionText\": \"Which exterior styles do you find most appealing?\",\n                    \"answers\": {\n                        \"id59\": \"Traditional Farmhouse\",\n                        \"id61\": \"Tudor\",\n                        \"id64\": \"Heritage Modern\"\n                    }\n                },\n                \"QUESTION_3\": {\n                    \"questionText\": \"Which type of parking situation would you prefer?\",\n                    \"answers\": {\n                        \"id12\": \"Attached Garage\"\n                    }\n                },\n                \"QUESTION_4\": {\n                    \"questionText\": \"How large of a garage/parking pad does your family need?\",\n                    \"answers\": {\n                        \"id16\": \"Double Car\"\n                    }\n                }\n            }\n        },\n        \"floorplanClicked\": [\n            {\n                \"floorplanName\": \"The Archer\"\n            },\n            {\n                \"floorplanName\": \"The Grahame\"\n            },\n            {\n                \"floorplanName\": \"The Archer\"\n            },\n            {\n                \"floorplanName\": \"The Christie\"\n            },\n            {\n                \"floorplanName\": \"The Christie\"\n            },\n            {\n                \"floorplanName\": \"The Browning\"\n            },\n            {\n                \"floorplanName\": \"The Christie\"\n            },\n            {\n                \"floorplanName\": \"The Chaucer\"\n            }\n        ]\n    }\n}"}],"_postman_id":"88bf1325-e725-4a7d-81da-66f0d8b25c2c"},{"name":"Get Multiple Users Answers by Time Range","id":"5b0441a9-908f-4023-87c5-1d21e1406e1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users?startTime=1651454953&endTime=1652232553","description":"<h1 id=\"summary\">Summary</h1>\n<p>Retrieves quiz answers from multiple users using time range (unix second timestamps).</p>\n<h2 id=\"usage\">Usage</h2>\n<p>Request the endpoint with the startTime and endTime as inline query parameters with the appropriate authorization string as a message header. The query returns on any valid time range of up to 31 days between the startTime and endTime.</p>\n<p>The endTime cannot be given if the startTime is null. When the startTime is given but the endTime is null, the endTime is assumed to be the current day.</p>\n<p>The return response will be all of the available quiz answer information within the time range. This filter can be used in conjunction with ids to further filter the results.</p>\n","urlObject":{"protocol":"https","path":["api","v1","user-data","quiz-funnel","users"],"host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"query":[{"key":"startTime","value":"1651454953"},{"key":"endTime","value":"1652232553"}],"variable":[]}},"response":[{"id":"4187bfc5-cdd1-4b51-a7d2-7da337c88e0e","name":"Get Multiple Users Answers By ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users?startTime=1651454953&endTime=1652232553","protocol":"https","host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"path":["api","v1","user-data","quiz-funnel","users"],"query":[{"key":"startTime","value":"1651454953"},{"key":"endTime","value":"1652232553"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 26 Jul 2022 18:52:39 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"017ede7d-b415-4198-a393-8c8925d2bcdf\": {\n        \"preferences\": {\n            \"questionsAnswered\": {\n                \"USER_NAME\": {\n                    \"questionText\": \"What is your name?\",\n                    \"answers\": {\n                        \"USER_NAME\": \"Tom\"\n                    }\n                },\n                \"PRIORITY_HIGH\": {\n                    \"questionText\": \"What parts of a home are most important to you?\",\n                    \"answers\": {\n                        \"CATEGORY_3\": \"Pantry Options\",\n                        \"CATEGORY_8\": \"Bathroom Layouts\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"PRIORITY_MEDIUM\": {\n                    \"questionText\": \"What parts of a home are important but not critical to you?\",\n                    \"answers\": {\n                        \"CATEGORY_3\": \"Pantry Options\",\n                        \"CATEGORY_5\": \"Dedicated Dining Room\",\n                        \"CATEGORY_8\": \"Bathroom Layouts\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"QUESTION_2\": {\n                    \"questionText\": \"Which of the following best describes your family lifestyle?\",\n                    \"answers\": {\n                        \"id9\": \"Rest and Relax Family\"\n                    }\n                },\n                \"QUESTION_6\": {\n                    \"questionText\": \"Which kitchen & pantry options best suit your needs?\",\n                    \"answers\": {\n                        \"id23\": \"Cabinet(Built-in) Pantry\"\n                    }\n                },\n                \"QUESTION_8\": {\n                    \"questionText\": \"Do you prefer a dedicated dining room or dine-in kitchen?\",\n                    \"answers\": {\n                        \"id36\": \"Dining Island\"\n                    }\n                },\n                \"QUESTION_11\": {\n                    \"questionText\": \"Which master bathroom options do you like the most?\",\n                    \"answers\": {\n                        \"id46\": \"Dual Sinks\",\n                        \"id47\": \"Linen Closet\"\n                    }\n                },\n                \"QUESTION_12\": {\n                    \"questionText\": \"What outdoor space options best fit your needs?\",\n                    \"answers\": {\n                        \"id53\": \"Two Tiered Deck\",\n                        \"id54\": \"Outdoor Kitchen\"\n                    }\n                },\n                \"QUESTION_13\": {\n                    \"questionText\": \"Which exterior styles do you find most appealing?\",\n                    \"answers\": {\n                        \"id62\": \"Heritage\",\n                        \"id64\": \"Heritage Modern\",\n                        \"id65\": \"French Country\"\n                    }\n                },\n                \"QUESTION_3\": {\n                    \"questionText\": \"Which type of parking situation would you prefer?\",\n                    \"answers\": {\n                        \"id12\": \"Attached Garage\"\n                    }\n                },\n                \"QUESTION_4\": {\n                    \"questionText\": \"How large of a garage/parking pad does your family need?\",\n                    \"answers\": {\n                        \"id16\": \"Double Car\"\n                    }\n                }\n            }\n        },\n        \"floorplanClicked\": []\n    },\n    \"17bfecaa-e231-4ce3-ba90-388a50ccf704\": {\n        \"preferences\": {\n            \"questionsAnswered\": {\n                \"USER_NAME\": {\n                    \"questionText\": \"What is your name?\",\n                    \"answers\": {\n                        \"USER_NAME\": \"Rhea\"\n                    }\n                },\n                \"PRIORITY_HIGH\": {\n                    \"questionText\": \"What parts of a home are most important to you?\",\n                    \"answers\": {\n                        \"CATEGORY_7\": \"Open/Flexible Spaces\"\n                    }\n                },\n                \"PRIORITY_MEDIUM\": {\n                    \"questionText\": \"What parts of a home are important but not critical to you?\",\n                    \"answers\": {\n                        \"CATEGORY_7\": \"Open/Flexible Spaces\",\n                        \"CATEGORY_9\": \"Exterior\"\n                    }\n                },\n                \"QUESTION_2\": {\n                    \"questionText\": \"Which of the following best describes your family lifestyle?\",\n                    \"answers\": {\n                        \"id9\": \"Rest and Relax Family\"\n                    }\n                },\n                \"QUESTION_10\": {\n                    \"questionText\": \"What options for open, flexible space appeal the most to you?\",\n                    \"answers\": {\n                        \"id42\": \"Basement Family Room\"\n                    }\n                },\n                \"QUESTION_12\": {\n                    \"questionText\": \"What outdoor space options best fit your needs?\",\n                    \"answers\": {\n                        \"id50\": \"Front Porch\",\n                        \"id52\": \"Concrete Backyard Patio\",\n                        \"id67\": \"Full yard landscaping\"\n                    }\n                },\n                \"QUESTION_13\": {\n                    \"questionText\": \"Which exterior styles do you find most appealing?\",\n                    \"answers\": {\n                        \"id59\": \"Traditional Farmhouse\",\n                        \"id63\": \"Prairie Contemporary\",\n                        \"id64\": \"Heritage Modern\"\n                    }\n                },\n                \"QUESTION_3\": {\n                    \"questionText\": \"Which type of parking situation would you prefer?\",\n                    \"answers\": {\n                        \"id14\": \"Parking Pad\"\n                    }\n                },\n                \"QUESTION_4\": {\n                    \"questionText\": \"How large of a garage/parking pad does your family need?\",\n                    \"answers\": {\n                        \"id16\": \"Double Car\"\n                    }\n                }\n            }\n        },\n        \"floorplanClicked\": [\n            {\n                \"floorplanName\": \"The Blake\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5b0441a9-908f-4023-87c5-1d21e1406e1b"},{"name":"Get Single User Answers","id":"78045ee6-42c9-4ed2-af31-a79a72902d5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users/:id","description":"<h1 id=\"summary\">Summary</h1>\n<p>Retrieves quiz answers from a single given user id.</p>\n<h2 id=\"usage\">Usage</h2>\n<p>Request the endpoint using the id as a path variable with the appropriate authorization string as a message header.</p>\n<p>The return response will be all of the available quiz answer information of the user.</p>\n","urlObject":{"protocol":"https","path":["api","v1","user-data","quiz-funnel","users",":id"],"host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"query":[],"variable":[{"type":"any","value":"017ede7d-b415-4198-a393-8c8925d2bcdf","key":"id"}]}},"response":[{"id":"d4cc162b-0d51-405e-93f1-b3513efbd211","name":"Get Single User Answers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://ghf-api-dot-openhouse-ai-198027.appspot.com/api/v1/user-data/quiz-funnel/users/:id","protocol":"https","host":["ghf-api-dot-openhouse-ai-198027","appspot","com"],"path":["api","v1","user-data","quiz-funnel","users",":id"],"variable":[{"key":"id","value":"017ede7d-b415-4198-a393-8c8925d2bcdf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Tue, 26 Jul 2022 18:48:58 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"preferences\": {\n        \"questionsAnswered\": {\n            \"QUESTION_8\": {\n                \"questionText\": \"Do you prefer a dedicated dining room or dine-in kitchen?\",\n                \"answers\": {\n                    \"id36\": \"Dining Island\"\n                }\n            },\n            \"QUESTION_7\": {\n                \"questionText\": \"Which of the following bedroom options meet your needs?\",\n                \"answers\": {\n                    \"id30\": \"Adjoining Bedrooms(jack and jill)\"\n                }\n            },\n            \"QUESTION_6\": {\n                \"questionText\": \"Which kitchen & pantry options best suit your needs?\",\n                \"answers\": {\n                    \"id1\": \"Butler's Pantry\"\n                }\n            },\n            \"QUESTION_11\": {\n                \"questionText\": \"Which master bathroom options do you like the most?\",\n                \"answers\": {\n                    \"id48\": \"Vanity Tower(on countertop)\"\n                }\n            },\n            \"USER_NAME\": {\n                \"questionText\": \"What is your name?\",\n                \"answers\": {\n                    \"USER_NAME\": \"John Doe\"\n                }\n            },\n            \"PRIORITY_HIGH\": {\n                \"questionText\": \"What parts of a home are most important to you?\",\n                \"answers\": {\n                    \"CATEGORY_2\": \"Kitchen Layouts\",\n                    \"CATEGORY_9\": \"Exterior\"\n                }\n            },\n            \"PRIORITY_MEDIUM\": {\n                \"questionText\": \"What parts of a home are important but not critical to you?\",\n                \"answers\": {\n                    \"CATEGORY_2\": \"Kitchen Layouts\",\n                    \"CATEGORY_7\": \"Open/Flexible Spaces\",\n                    \"CATEGORY_9\": \"Exterior\"\n                }\n            },\n            \"QUESTION_2\": {\n                \"questionText\": \"Which of the following best describes your family lifestyle?\",\n                \"answers\": {\n                    \"id10\": \"Growing and Upsizing Family\"\n                }\n            },\n            \"QUESTION_5\": {\n                \"questionText\": \"Which kitchen layouts do you like the most?\",\n                \"answers\": {\n                    \"id18\": \"Peninsula Island or L-Shaped\"\n                }\n            },\n            \"QUESTION_10\": {\n                \"questionText\": \"What options for open, flexible space appeal the most to you?\",\n                \"answers\": {\n                    \"id40\": \"Bonus room to lounge in\"\n                }\n            },\n            \"QUESTION_12\": {\n                \"questionText\": \"What outdoor space options best fit your needs?\",\n                \"answers\": {\n                    \"id53\": \"Two Tiered Deck\"\n                }\n            },\n            \"QUESTION_13\": {\n                \"questionText\": \"Which exterior styles do you find most appealing?\",\n                \"answers\": {\n                    \"id59\": \"Traditional Farmhouse\",\n                    \"id61\": \"Tudor\",\n                    \"id64\": \"Heritage Modern\"\n                }\n            },\n            \"QUESTION_3\": {\n                \"questionText\": \"Which type of parking situation would you prefer?\",\n                \"answers\": {\n                    \"id12\": \"Attached Garage\"\n                }\n            },\n            \"QUESTION_4\": {\n                \"questionText\": \"How large of a garage/parking pad does your family need?\",\n                \"answers\": {\n                    \"id16\": \"Double Car\"\n                }\n            }\n        }\n    },\n    \"floorplanClicked\": [\n        {\n            \"floorplanName\": \"The Chaucer\"\n        },\n        {\n            \"floorplanName\": \"The Archer\"\n        },\n        {\n            \"floorplanName\": \"The Grahame\"\n        },\n        {\n            \"floorplanName\": \"The Browning\"\n        },\n        {\n            \"floorplanName\": \"The Archer\"\n        },\n        {\n            \"floorplanName\": \"The Christie\"\n        }\n    ]\n}"}],"_postman_id":"78045ee6-42c9-4ed2-af31-a79a72902d5c"}],"id":"b799460d-9355-4db4-9b83-51637b21720f","_postman_id":"b799460d-9355-4db4-9b83-51637b21720f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","name":"OpenHouse.ai API","type":"collection"}}},{"name":"MLOPS API","item":[{"name":"V2 Upload Construction Data","id":"5dd8d410-338a-4521-b5a1-9f39d40392af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n  {\n    \"homeId\": \"test_id_1\",\n    \"communityId\": \"test_community_id\",\n    \"communityName\": \"test_community_name\",\n    \"buildType\": \"SPEC\",\n    \"floorplanId\": \"test_floorplan_1\",\n    \"floorplanName\": \"ABC_1\",\n    \"homeType\": \"Bungalow\",\n    \"country\": \"CAN\",\n    \"countrySubDivision\": \"AB\",\n    \"city\": \"City Name\",\n    \"address\": \"555 Test St\",\n    \"bedrooms\": 3,\n    \"bathrooms\": 2,\n    \"halfBaths\": 1,\n    \"garage\": \"Single\",\n    \"floorSize\": 1234,\n    \"sellingPrice\": 1234.45,\n    \"estimatedCost\": 1234.12,\n    \"siteSupervisor\": \"John Doe\",\n    \"contractDate\": 1566626400,\n    \"contractFirmDate\": 1566626400,\n    \"preconstructionStartDate\": 1566626400,\n    \"draftingCompleteDate\": 1566626400,\n    \"permitApprovedDate\": 1566626400,\n    \"constructionStartDate\": 1566626400,\n    \"stakeEndDate\": 1566626400,\n    \"foundationEndDate\": 1566626400,\n    \"framingEndDate\": 1566626400,\n    \"majorConstructionEndDate\": 1566626400,\n    \"finishingEndDate\": 1566626400,\n    \"possessionDate\": 1566626400,\n    \"closeDate\": 1566626400\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://mlops-api-l4gxpflffq-ue.a.run.app/api/v2/builder-data/operations/","description":"<h1 id=\"summary\">Summary</h1>\n<p>Consumes construction stage data of a builder for lead time statistics calculation.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request body should contain a list of construction data.</p>\n<h3 id=\"construction-data-json-structure\">Construction Data JSON Structure</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Type</th>\n<th>Required</th>\n<th>Example</th>\n<th>Description</th>\n<th>Validation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>homeId</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'test_id'</code></td>\n<td>The builder's internal id for the home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>communityId</code></td>\n<td>String</td>\n<td>False</td>\n<td><code>'test_community_id'</code></td>\n<td>The builder's internal community id for the home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>communityName</code></td>\n<td>String</td>\n<td>False</td>\n<td><code>'test_community_name'</code></td>\n<td>The builder's internal community name for the home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>buildType</code></td>\n<td>Enum(<code>'SPEC'</code>, <code>'PRESALE'</code>, <code>'SHOWHOME'</code>)</td>\n<td>True</td>\n<td><code>'SPEC'</code></td>\n<td>The type of home build.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>floorplanId</code></td>\n<td>String</td>\n<td>False</td>\n<td><code>'test_floorplan'</code></td>\n<td>The builder's floor plan id of this home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>floorplanName</code></td>\n<td>String</td>\n<td>False</td>\n<td><code>'ABC'</code></td>\n<td>The builder's floor plan name of this home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>homeType</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'Front Attached Garage'</code></td>\n<td>The type of home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'CAN'</code></td>\n<td>The country that this home is located in.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>countrySubDivision</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'AB'</code></td>\n<td>The country subdivision that this home is located in.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'City Name'</code></td>\n<td>The city this home is located in.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>address</code></td>\n<td>String</td>\n<td>True</td>\n<td><code>'555 Test St'</code></td>\n<td>The address of this home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>bedrooms</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>3</code></td>\n<td>The number of bedrooms for this home.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>bathrooms</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>2</code></td>\n<td>The number of bathrooms for this home.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>halfBaths</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1</code></td>\n<td>The number of half baths for this home.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>garage</code></td>\n<td>String</td>\n<td>False</td>\n<td><code>Single</code></td>\n<td>The type of garage for this home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>floorSize</code></td>\n<td>Integer</td>\n<td>True</td>\n<td><code>1234</code></td>\n<td>The floor size of this home in square feet.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>sellingPrice</code></td>\n<td>Float</td>\n<td>False</td>\n<td><code>1234.45</code></td>\n<td>The selling price of this home.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>estimatedCost</code></td>\n<td>Float</td>\n<td>False</td>\n<td><code>1234.12</code></td>\n<td>The estimated cost of building this home.</td>\n<td><code>value ≥ 0</code></td>\n</tr>\n<tr>\n<td><code>siteSupervisor</code></td>\n<td>String</td>\n<td>False</td>\n<td>John Doe</td>\n<td>The name of the site supervisor for this home.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>contractDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Contract date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>contractFirmDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Contract firm date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>preconstructionStartDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Pre-construction start date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>draftingCompleteDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Draft completion date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>permitApprovedDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Permit approval date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>constructionStartDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Construction start date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>stakeEndDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Stake end date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>foundationEndDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Foundation end date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>framingEndDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Framing end date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>majorConstructionEndDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Major construction end date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>finishingEndDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Finishing end date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>possessionDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Possession date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n<tr>\n<td><code>closeDate</code></td>\n<td>Integer</td>\n<td>False</td>\n<td><code>1566626400</code></td>\n<td>Close date of this home, in epoch timestamp.</td>\n<td><code>0 ≤ value ≤ now</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","builder-data","operations",""],"host":["mlops-api-l4gxpflffq-ue","a","run","app"],"query":[],"variable":[]}},"response":[],"_postman_id":"5dd8d410-338a-4521-b5a1-9f39d40392af"}],"id":"c9e6dcc3-8173-4281-a55d-4c985c1920c2","_postman_id":"c9e6dcc3-8173-4281-a55d-4c985c1920c2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","id":"94ab867a-356b-48ed-a2c4-e5d0ead19f30","name":"OpenHouse.ai API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[]}},"event":[{"listen":"prerequest","script":{"id":"aef5d21e-ea8a-4a85-8f8e-d67663f14b4d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"323f9652-9ef8-4fd6-bf3d-cd4390d61a7a","type":"text/javascript","exec":[""]}}]}