diff --git a/docs/INTEGRATION_DEBUGGING.md b/docs/INTEGRATION_DEBUGGING.md index 3074c7c90..0d2311079 100644 --- a/docs/INTEGRATION_DEBUGGING.md +++ b/docs/INTEGRATION_DEBUGGING.md @@ -4,7 +4,7 @@ This functionality is only currently possible with Searchspring managed Snap repositories (https://github.com/searchspring-implementations). -While browsing a page that contains a Snap integration, appending the `?branch=[branchname]` query parameter to the URL will stop the execution of the existing script, and load the build from the `[branchname]` branch `https://snapui.searchspring.io/[siteid]/[branchname]/bundle.js` +While browsing a page that contains a Snap integration, appending the `?searchspring-preview=[branchname]` query parameter to the URL will stop the execution of the existing script, and load the build from the `[branchname]` branch `https://snapui.searchspring.io/[siteid]/[branchname]/bundle.js` You will see an interface overlay on the bottom right of the viewport indicating if successful and details of the build. diff --git a/packages/snap-client/src/Client/transforms/searchResponse.test.ts b/packages/snap-client/src/Client/transforms/searchResponse.test.ts index 0f532e2f7..3746ed258 100644 --- a/packages/snap-client/src/Client/transforms/searchResponse.test.ts +++ b/packages/snap-client/src/Client/transforms/searchResponse.test.ts @@ -420,6 +420,52 @@ describe('search response transformer result', () => { // @ts-ignore expect(transformSearchResponse.results({}).results instanceof Array).toEqual(true); }); + + it('search response search transforms badges', () => { + const resultWithBadgeFeature = { + ...mockSingleResult, + badges: [ + { + tag: 'qa-badge-2910', + value: 'QA Badge 2910', + }, + { + tag: 'qa-off-29', + value: 'QA Off 29', + }, + { + tag: 'gift-guide', + value: 'Gift Guide', + }, + ], + }; + const resultWithRandomBadgeField = { + ...mockSingleResult, + badges: ['1', '2', '3'], + }; + const resultWithRandomBadgeField2 = { + ...mockSingleResult, + badges: { + name: '1', + name2: '2', + name3: '3', + }, + }; + + const result = transformSearchResponse.result(resultWithBadgeFeature); + expect(result.attributes?.badges).toBeUndefined(); + expect(result.badges).toEqual(resultWithBadgeFeature.badges); + + // @ts-ignore - typings are wrong intentionally here + const result2 = transformSearchResponse.result(resultWithRandomBadgeField); + expect(result2.attributes?.badges).toEqual(resultWithRandomBadgeField.badges); + expect(result2.badges).toEqual([]); + + // @ts-ignore - typings are wrong intentionally here + const result3 = transformSearchResponse.result(resultWithRandomBadgeField2); + expect(result3.badges).toEqual([]); + expect(result3.attributes?.badges).toEqual('[object Object]'); + }); }); describe('search response facet transformer', () => { diff --git a/packages/snap-client/src/Client/transforms/searchResponse.ts b/packages/snap-client/src/Client/transforms/searchResponse.ts index 89ba894a0..5def26e03 100644 --- a/packages/snap-client/src/Client/transforms/searchResponse.ts +++ b/packages/snap-client/src/Client/transforms/searchResponse.ts @@ -214,7 +214,7 @@ transformSearchResponse.result = (rawResult: rawResult): SearchResponseModelResu const attributes = Object.keys(rawResult) .filter((k) => CORE_FIELDS.indexOf(k) == -1) // remove 'badges' from attributes - but only if it is an object - .filter((k) => !(k == 'badges' && typeof rawResult[k] == 'object' && !Array.isArray(rawResult[k]))) + .filter((k) => !(k == 'badges' && Array.isArray(rawResult[k]) && typeof rawResult[k]?.[0] == 'object')) .reduce((attributes, key) => { return { ...attributes, @@ -242,7 +242,7 @@ transformSearchResponse.result = (rawResult: rawResult): SearchResponseModelResu core: coreFieldValues, }, attributes, - badges: typeof rawResult.badges == 'object' && !Array.isArray(rawResult.badges) ? rawResult.badges : [], + badges: Array.isArray(rawResult.badges) && typeof rawResult.badges[0] == 'object' ? rawResult.badges : [], children, }); }; diff --git a/packages/snap-controller/src/Search/SearchController.test.ts b/packages/snap-controller/src/Search/SearchController.test.ts index 3bdce1e66..13e86f9ad 100644 --- a/packages/snap-controller/src/Search/SearchController.test.ts +++ b/packages/snap-controller/src/Search/SearchController.test.ts @@ -188,32 +188,6 @@ describe('Search Controller', () => { expect(controller.store.results.length).toBeGreaterThan(0); }); - it('tests infinite setting', async () => { - searchConfig = { - ...searchConfig, - settings: { - infinite: { - backfill: 5, - }, - }, - }; - - const controller = new SearchController(searchConfig, { - client: new MockClient(globals, {}), - store: new SearchStore(searchConfig, services), - urlManager, - eventManager: new EventManager(), - profiler: new Profiler(), - logger: new Logger(), - tracker: new Tracker(globals), - }); - - expect(controller.config.settings!.infinite!.backfill).toBe(searchConfig.settings!.infinite!.backfill); - - await controller.search(); - expect(controller.store.results.length).toBeGreaterThan(0); - }); - const events = ['init', 'beforeSearch', 'afterSearch', 'afterStore']; events.forEach((event) => { it(`tests ${event} middleware err handled`, async function () { @@ -358,14 +332,6 @@ describe('Search Controller', () => { }); it('can invoke controller track.product.click', async () => { - searchConfig = { - ...searchConfig, - settings: { - infinite: { - backfill: 5, - }, - }, - }; const controller = new SearchController(searchConfig, { client: new MockClient(globals, {}), store: new SearchStore(searchConfig, services), @@ -400,6 +366,125 @@ describe('Search Controller', () => { storagefn.mockClear(); }); + it('tests that a repeated search with infinite does not duplicate results', async () => { + searchConfig = { + ...searchConfig, + settings: { + infinite: {}, + }, + }; + + const controller = new SearchController(searchConfig, { + client: new MockClient(globals, {}), + store: new SearchStore(searchConfig, services), + urlManager, + eventManager: new EventManager(), + profiler: new Profiler(), + logger: new Logger(), + tracker: new Tracker(globals), + }); + + expect(controller.config.settings!.infinite).toBeDefined(); + + // set page 1 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page1', siteId: '8uyt2m' }); + + await controller.search(); + expect(controller.store.results.length).toBe(30); + + await controller.search(); + expect(controller.store.results.length).toBe(30); + + await controller.search(); + expect(controller.store.results.length).toBe(30); + }); + + it('tests infinite setting', async () => { + searchConfig = { + ...searchConfig, + settings: { + infinite: {}, + }, + }; + + const controller = new SearchController(searchConfig, { + client: new MockClient(globals, {}), + store: new SearchStore(searchConfig, services), + urlManager, + eventManager: new EventManager(), + profiler: new Profiler(), + logger: new Logger(), + tracker: new Tracker(globals), + }); + + expect(controller.config.settings!.infinite).toBeDefined(); + + // set page 1 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page1', siteId: '8uyt2m' }); + + await controller.search(); + expect(controller.store.results.length).toBe(30); + + // set page 2 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page2', siteId: '8uyt2m' }); + controller.urlManager = controller.urlManager.set('page', 2); + + await controller.search(); + expect(controller.store.results.length).toBe(60); + + // set page 3 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page3', siteId: '8uyt2m' }); + controller.urlManager = controller.urlManager.set('page', 3); + + await controller.search(); + expect(controller.store.results.length).toBe(90); + }); + + it('when using infinite setting and applying a filter the pagination resets', async () => { + searchConfig = { + ...searchConfig, + settings: { + infinite: {}, + }, + }; + + const controller = new SearchController(searchConfig, { + client: new MockClient(globals, {}), + store: new SearchStore(searchConfig, services), + urlManager, + eventManager: new EventManager(), + profiler: new Profiler(), + logger: new Logger(), + tracker: new Tracker(globals), + }); + + expect(controller.config.settings!.infinite).toBeDefined(); + + // set page 1 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page1', siteId: '8uyt2m' }); + + await controller.search(); + expect(controller.store.results.length).toBe(30); + + // set page 2 data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page2', siteId: '8uyt2m' }); + + await controller.search(); + expect(controller.store.results.length).toBe(60); + + // simulate a filter being applied + controller.urlManager = controller.urlManager.merge('filter.color_family', 'Blue'); + expect(controller.params.filters?.length).toBe(1); + + // set filtered data + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.filtered', siteId: '8uyt2m' }); + + await controller.search(); + + // ensure that we do not keep concatenating results + expect(controller.store.results.length).toBe(30); + }); + it('backfills results', async () => { searchConfig = { ...searchConfig, @@ -419,7 +504,7 @@ describe('Search Controller', () => { tracker: new Tracker(globals), }); - (controller.client as MockClient).mockData.updateConfig({ search: 'infinitePage3', siteId: '8uyt2m' }); + (controller.client as MockClient).mockData.updateConfig({ search: 'infinite.page1', siteId: '8uyt2m' }); const searchfn = jest.spyOn(controller.client, 'search'); @@ -432,6 +517,7 @@ describe('Search Controller', () => { const { pageSize } = controller.store.pagination; expect(searchfn).toHaveBeenCalledTimes(page); + // asserting that search API has been called the same number of times as the current page parameter expect(searchfn).toHaveBeenNthCalledWith(1, expect.objectContaining({ pagination: {} })); expect(searchfn).toHaveBeenNthCalledWith(2, expect.objectContaining({ pagination: { page: 2 }, search: { redirectResponse: 'full' } })); expect(searchfn).toHaveBeenNthCalledWith(3, expect.objectContaining({ pagination: { page: 3 }, search: { redirectResponse: 'full' } })); diff --git a/packages/snap-controller/src/Search/SearchController.ts b/packages/snap-controller/src/Search/SearchController.ts index f0fb7a9c7..a513cabd4 100644 --- a/packages/snap-controller/src/Search/SearchController.ts +++ b/packages/snap-controller/src/Search/SearchController.ts @@ -54,7 +54,6 @@ export class SearchController extends AbstractController { declare store: SearchStore; declare config: SearchControllerConfig; storage: StorageStore; - private previousResults: Array = []; constructor( config: SearchControllerConfig, @@ -96,8 +95,7 @@ export class SearchController extends AbstractController { config?.settings?.redirects?.singleResult && search?.response?.search?.query && search?.response?.pagination?.totalResults === 1 && - !nonBackgroundFilters?.length && - !(search.controller as SearchController).previousResults.length + !nonBackgroundFilters?.length ) { window.location.replace(search?.response.results[0].mappings.core.url); return false; @@ -363,7 +361,7 @@ export class SearchController extends AbstractController { } // infinite backfill is enabled AND we have not yet fetched any results - if (this.config.settings?.infinite.backfill && !this.previousResults.length) { + if (this.config.settings?.infinite.backfill && !this.store.loaded) { // create requests for all missing pages (using Arrray(page).fill() to populate an array to map) const backfillRequests = Array(params.pagination.page) .fill('backfill') @@ -408,12 +406,9 @@ export class SearchController extends AbstractController { } else { // infinite with no backfills. [meta, response] = await this.client.search(params); - - // append new results to previous results - response.results = [...this.previousResults, ...(response.results || [])]; } } else { - // standard request (not using infinite scroll) + // normal request for next page [meta, response] = await this.client.search(params); } @@ -447,11 +442,6 @@ export class SearchController extends AbstractController { afterSearchProfile.stop(); this.log.profile(afterSearchProfile); - // store previous results for infinite usage - if (this.config.settings?.infinite) { - this.previousResults = JSON.parse(JSON.stringify(response.results)); - } - // update the store this.store.update(response); diff --git a/packages/snap-preact-components/src/utilities/snapify.ts b/packages/snap-preact-components/src/utilities/snapify.ts index 267ab1dd6..7070c8d5f 100644 --- a/packages/snap-preact-components/src/utilities/snapify.ts +++ b/packages/snap-preact-components/src/utilities/snapify.ts @@ -22,7 +22,7 @@ type CreateConfig = { }; // configure MobX -configureMobx({ useProxies: 'never', isolateGlobalState: true, enforceActions: 'never' }); +configureMobx({ useProxies: 'always', isolateGlobalState: true, enforceActions: 'never' }); const controllers: { [id: string]: SearchController | AutocompleteController | RecommendationController; diff --git a/packages/snap-preact-demo/src/components/Results/Results.tsx b/packages/snap-preact-demo/src/components/Results/Results.tsx index 328128a76..6df04bc37 100644 --- a/packages/snap-preact-demo/src/components/Results/Results.tsx +++ b/packages/snap-preact-demo/src/components/Results/Results.tsx @@ -1,7 +1,8 @@ import { h, Component } from 'preact'; +import { useRef } from 'preact/hooks'; import { observer } from 'mobx-react'; -import { Pagination, Results as ResultsComponent, withStore, withController } from '@searchspring/snap-preact-components'; +import { Pagination, Results as ResultsComponent, withStore, withController, useIntersection } from '@searchspring/snap-preact-components'; import { Profile } from '../Profile/Profile'; import { Toolbar } from '../Toolbar/Toolbar'; @@ -28,10 +29,23 @@ const resultsBreakpoints = { @observer export class Results extends Component { render() { + const loading = this.props.store.loading; const results = this.props.store.results; const pagination = this.props.store.pagination; const controller = this.props.controller; + const infiniteEnabled = Boolean(controller.config.settings.infinite); + const infiniteRef = useRef(null); + if (infiniteEnabled) { + const atBottom = useIntersection(infiniteRef, '50px'); + + if (atBottom && pagination.next && !loading && pagination.totalResults > 0) { + setTimeout(() => { + pagination.next.url.go({ history: 'replace' }); + }); + } + } + return (
@@ -42,11 +56,17 @@ export class Results extends Component {
+ {infiniteEnabled &&
}
-
{pagination.totalPages > 1 && }
+
{!infiniteEnabled && pagination.totalPages > 1 && }
+ {infiniteEnabled && ( +
+ {pagination.current.number} +
+ )}
diff --git a/packages/snap-preact-demo/src/components/Toolbar/Toolbar.tsx b/packages/snap-preact-demo/src/components/Toolbar/Toolbar.tsx index 6e277cdff..a37b274dc 100644 --- a/packages/snap-preact-demo/src/components/Toolbar/Toolbar.tsx +++ b/packages/snap-preact-demo/src/components/Toolbar/Toolbar.tsx @@ -5,19 +5,22 @@ import { SortBy } from './SortBy'; import { PerPage } from './PerPage'; import { SidebarContents } from '../Sidebar/Sidebar'; -import { Button, Pagination, Slideout, withStore, useMediaQuery } from '@searchspring/snap-preact-components'; +import { Button, Pagination, Slideout, withStore, useMediaQuery, withController } from '@searchspring/snap-preact-components'; type ToolBarProps = { store?: SearchStore; + controller?: SearchController; }; const mobileMediaQuery = '(max-width: 991px)'; @withStore +@withController @observer export class Toolbar extends Component { render() { const { pagination } = this.props.store; + const infiniteEnabled = Boolean(this.props.controller?.config.settings.infinite); const isMobile = useMediaQuery(mobileMediaQuery); return ( @@ -38,7 +41,7 @@ export class Toolbar extends Component {
- {pagination.totalPages > 1 && !isMobile && } + {!infiniteEnabled && pagination.totalPages > 1 && !isMobile && }
diff --git a/packages/snap-preact-demo/src/index.ts b/packages/snap-preact-demo/src/index.ts index bf8365fd5..a7534a8fb 100644 --- a/packages/snap-preact-demo/src/index.ts +++ b/packages/snap-preact-demo/src/index.ts @@ -147,6 +147,9 @@ let config: SnapConfig = { restorePosition: { enabled: true, }, + // infinite: { + // backfill: 12, + // }, pagination: { pageSizeOptions: [ { diff --git a/packages/snap-preact-demo/src/styles/custom.scss b/packages/snap-preact-demo/src/styles/custom.scss index e69de29bb..650243089 100644 --- a/packages/snap-preact-demo/src/styles/custom.scss +++ b/packages/snap-preact-demo/src/styles/custom.scss @@ -0,0 +1,12 @@ +.ss-page-circle { + width: 100px; + height: 100px; + background-color: #3a23ad; + color: white; + display: flex; + margin: 20px auto; + align-items: center; + justify-content: center; + border-radius: 50%; + font-size: 30px; +} diff --git a/packages/snap-preact-demo/src/universal.ts b/packages/snap-preact-demo/src/universal.ts index b3ca1ac07..b7845882b 100644 --- a/packages/snap-preact-demo/src/universal.ts +++ b/packages/snap-preact-demo/src/universal.ts @@ -9,5 +9,10 @@ if (!('Symbol' in window) || !('flatMap' in Array.prototype) || !('includes' in promises.push(import('core-js/stable') as any); } Promise.all(promises).then(() => { + // @ts-ignore - types not important + window.searchspring = window.searchspring || {}; + // @ts-ignore - types not important + window.searchspring.build = 'universal'; + import('./index'); }); diff --git a/packages/snap-preact-demo/tests/cypress/e2e/core/branchOverride.cy.js b/packages/snap-preact-demo/tests/cypress/e2e/core/branchOverride.cy.js index b51c92f66..4362ef00f 100644 --- a/packages/snap-preact-demo/tests/cypress/e2e/core/branchOverride.cy.js +++ b/packages/snap-preact-demo/tests/cypress/e2e/core/branchOverride.cy.js @@ -1,6 +1,6 @@ describe('Branch Override Functionality', () => { it('adds snap bundle to search page', () => { - cy.visit('https://localhost:2222/?branch=override'); + cy.visit('https://localhost:2222/?searchspring-preview=override'); cy.on('uncaught:exception', (err, runnable) => { // expected error due to branch override throwing @@ -42,7 +42,7 @@ describe('Branch Override Functionality', () => { }); // cy.on('uncaught:exception', (err, runnable) => false); - cy.visit('https://localhost:2222/?branch=nope'); + cy.visit('https://localhost:2222/?searchspring-preview=nope'); // expect injected div from 'override' branch to not be on the page cy.get('#override').should('not.exist'); diff --git a/packages/snap-preact-demo/tests/cypress/e2e/search/infinite.cy.js b/packages/snap-preact-demo/tests/cypress/e2e/search/infinite.cy.js index f4820a7f2..772967a91 100644 --- a/packages/snap-preact-demo/tests/cypress/e2e/search/infinite.cy.js +++ b/packages/snap-preact-demo/tests/cypress/e2e/search/infinite.cy.js @@ -27,15 +27,18 @@ describe('Infinite Setting Test', () => { const resultsPerPage = store.results.length; cy.get('.ss__result').should('have.length', resultsPerPage); - // click next page, results should be appended - cy.get('.ss__pagination__page--next').first().click({ force: true }); + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage * 2); expect(store.pagination.begin).to.equal(1); cy.get('.ss__result').should('have.length', resultsPerPage * 2); }); - //refresh page, should not backfill + // refresh page, should not backfill cy.reload().then(() => { cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage); @@ -44,6 +47,174 @@ describe('Infinite Setting Test', () => { }); }); + it('resets results when applying a filter', () => { + const backfill = 0; + cy.on('window:before:load', (win) => { + win.mergeSnapConfig = { + controllers: { + search: [ + { + config: { + settings: { + infinite: { + backfill, + }, + }, + }, + }, + ], + }, + }; + }); + cy.visit('https://localhost:2222/'); + + cy.snapController().then(({ store }) => { + // initial page + const resultsPerPage = store.results.length; + cy.get('.ss__result').should('have.length', resultsPerPage); + + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(resultsPerPage * 2); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', resultsPerPage * 2); + }); + + let filterResults = 0; + // apply a filter manually + cy.snapController().then(({ store }) => { + const value = store.facets[0].values[0]; + value.url.go(); + filterResults = value.count > resultsPerPage ? resultsPerPage : value.count; + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(filterResults); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', filterResults); + }); + }); + }); + + it('resets results when setting a sort', () => { + const backfill = 0; + cy.on('window:before:load', (win) => { + win.mergeSnapConfig = { + controllers: { + search: [ + { + config: { + settings: { + infinite: { + backfill, + }, + }, + }, + }, + ], + }, + }; + }); + cy.visit('https://localhost:2222/'); + + cy.snapController().then(({ store }) => { + // initial page + const resultsPerPage = store.results.length; + cy.get('.ss__result').should('have.length', resultsPerPage); + + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(resultsPerPage * 2); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', resultsPerPage * 2); + }); + + // apply a sort manually + cy.snapController().then(({ store }) => { + store.sorting.options[1].url.go(); + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(resultsPerPage); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', resultsPerPage); + }); + }); + }); + + it('resets results when setting a per page option', () => { + const backfill = 0; + cy.on('window:before:load', (win) => { + win.mergeSnapConfig = { + controllers: { + search: [ + { + config: { + settings: { + infinite: { + backfill, + }, + }, + }, + }, + ], + }, + }; + }); + cy.visit('https://localhost:2222/'); + + cy.snapController().then(({ store }) => { + // initial page + const resultsPerPage = store.results.length; + cy.get('.ss__result').should('have.length', resultsPerPage); + + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(resultsPerPage * 2); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', resultsPerPage * 2); + }); + + let pageSize = 0; + // set a per page manually + cy.snapController().then(({ store }) => { + const pageSizeOption = store.pagination.pageSizeOptions[0]; + pageSize = pageSizeOption.value; + pageSizeOption.url.go(); + }); + + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(pageSize); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', pageSize); + }); + + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + + // ensure number of products is correct + cy.snapController().then(({ store }) => { + expect(store.results.length).to.equal(pageSize * 2); + expect(store.pagination.begin).to.equal(1); + cy.get('.ss__result').should('have.length', pageSize * 2); + }); + }); + }); + it('has backfill results upon reload', () => { const backfill = 2; cy.on('window:before:load', (win) => { @@ -71,30 +242,36 @@ describe('Infinite Setting Test', () => { const resultsPerPage = store.results.length; cy.get('.ss__result').should('have.length', resultsPerPage); - // click next page, results should be appended - cy.get('.ss__pagination__page--next').first().click({ force: true }); + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + cy.waitUntil(() => cy.get('.ss__result').should('have.length', resultsPerPage * 2)); cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage * 2); expect(store.pagination.begin).to.equal(1); }); - //refresh page, should backfill + // refresh page, should backfill cy.reload().then(() => { cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage * 2); }); }); - // click next page again, expect 3 pages of results - cy.get('.ss__pagination__page--next').first().click({ force: true }); + // load next page of results manually + cy.snapController().then(({ store }) => { + store.pagination.next.url.go({ history: 'replace' }); + }); + cy.waitUntil(() => cy.get('.ss__result').should('have.length', resultsPerPage * 3)); cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage * 3); expect(store.pagination.begin).to.equal(1); }); - //refresh page, should NOT backfill again due to page > backfill and is at page 1 + // refresh page, should NOT backfill again due to page > backfill and is at page 1 cy.reload().then(() => { cy.snapController().then(({ store }) => { expect(store.results.length).to.equal(resultsPerPage); diff --git a/packages/snap-preact-demo/tests/cypress/e2e/search/pagination.cy.js b/packages/snap-preact-demo/tests/cypress/e2e/search/pagination.cy.js index 735cd583b..7b8f89b01 100644 --- a/packages/snap-preact-demo/tests/cypress/e2e/search/pagination.cy.js +++ b/packages/snap-preact-demo/tests/cypress/e2e/search/pagination.cy.js @@ -1,5 +1,22 @@ describe('Pagination', () => { beforeEach(() => { + // ensure infinite is disabled + cy.on('window:before:load', (win) => { + win.mergeSnapConfig = { + controllers: { + search: [ + { + config: { + settings: { + infinite: undefined, + }, + }, + }, + ], + }, + }; + }); + cy.visit('https://localhost:2222/'); }); diff --git a/packages/snap-preact/src/Snap.tsx b/packages/snap-preact/src/Snap.tsx index f03ce77c7..7b57b4b2e 100644 --- a/packages/snap-preact/src/Snap.tsx +++ b/packages/snap-preact/src/Snap.tsx @@ -36,9 +36,10 @@ import type { SnapControllerServices, SnapControllerConfig, InitialUrlConfig } f import { setupEvents } from './setupEvents'; // configure MobX -configureMobx({ useProxies: 'never', isolateGlobalState: true, enforceActions: 'never' }); +configureMobx({ useProxies: window?.searchspring?.build == 'universal' ? 'never' : 'always', isolateGlobalState: true, enforceActions: 'never' }); export const BRANCH_COOKIE = 'ssBranch'; +export const BRANCH_PARAM = 'searchspring-preview'; export const DEV_COOKIE = 'ssDev'; export const STYLESHEET_CLASSNAME = 'ss-snap-bundle-styles'; @@ -353,7 +354,7 @@ export class Snap { try { const urlParams = url(window.location.href); - const branchOverride = urlParams?.params?.query?.branch || cookies.get(BRANCH_COOKIE); + const branchOverride = urlParams?.params?.query[BRANCH_PARAM] || cookies.get(BRANCH_COOKIE); const cookieDomain = (typeof window !== 'undefined' && window.location.hostname && '.' + window.location.hostname.replace(/^www\./, '')) || undefined; /* app mode priority: @@ -494,7 +495,7 @@ export class Snap { onRemoveClick={() => { cookies.unset(BRANCH_COOKIE, cookieDomain); const urlState = url(window.location.href); - delete urlState?.params.query['branch']; + delete urlState?.params.query[BRANCH_PARAM]; const newUrl = urlState?.url(); if (newUrl && newUrl != window.location.href) { @@ -534,6 +535,7 @@ export class Snap { // bind to window global window.searchspring = window.searchspring || {}; + window.searchspring.build = window.searchspring.build || 'modern'; window.searchspring.context = this.context; if (this.client) window.searchspring.client = this.client; diff --git a/packages/snap-preact/src/integration.test.tsx b/packages/snap-preact/src/integration.test.tsx index 8ebed4db4..730fb6ac2 100644 --- a/packages/snap-preact/src/integration.test.tsx +++ b/packages/snap-preact/src/integration.test.tsx @@ -5,7 +5,7 @@ import { cleanup, waitFor } from '@testing-library/preact'; import { cookies } from '@searchspring/snap-toolbox'; -import { Snap, SnapConfig, DEV_COOKIE, BRANCH_COOKIE } from './Snap'; +import { Snap, SnapConfig, DEV_COOKIE, BRANCH_PARAM, BRANCH_COOKIE } from './Snap'; import { SHOPIFY_WEBPIXEL_STORAGE_KEY } from './configureSnapFeatures'; const baseConfig: SnapConfig = { @@ -223,7 +223,7 @@ describe('Snap Preact Integration', () => { // @ts-ignore window.location = { - href: `https://www.merch.com?branch=${branchName}`, + href: `https://www.merch.com?${BRANCH_PARAM}=${branchName}`, }; expect(() => { diff --git a/packages/snap-shared/src/MockData/search/8uyt2m/infinite.filtered.json b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.filtered.json new file mode 100644 index 000000000..d4067096b --- /dev/null +++ b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.filtered.json @@ -0,0 +1,2488 @@ +{ + "pagination": { + "totalResults": 755, + "page": 1, + "pageSize": 30, + "totalPages": 26 + }, + "results": [ + { + "id": "134685", + "mappings": { + "core": { + "uid": "134685", + "sku": "C-PLC-I5-15002", + "name": "A Brand New Me Blouse", + "url": "/product/C-PLC-I5-15002", + "addToCartUrl": "/product/C-PLC-I5-15002", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3269_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3269_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3269_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When you have to show off how fresh you truly are, leave the old behind and embrace the new - “A Brand New Me” you might say! And nothing goes better than and new you than some new threads! Keep it cute and classic with this blouse and let the world know that sure blouses have been around a long time, but on me, it’s totally brand new! Blouse features a scoop neckline, slight hi-lo hemline, and a V-neckline on the back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "2982", + "caption": "Captions!" + } + }, + "attributes": { + "id": "861c86b6b5c9c5499bd7098a8742a7a1", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1NNU1NDUwMGIwZDBkMGAwNzVlSC_KTAEEAAD__6YKCDI", + "intellisuggestSignature": "12753521aaed78523af6adcec5f0d9cf15350636ca480858e184defd41f6372c", + "product_type_unigram": "blouse", + "sales_rank": [ + "2982" + ] + }, + "children": [] + }, + { + "id": "135603", + "mappings": { + "core": { + "uid": "135603", + "sku": "C-PLC-E2-15601", + "name": "A Bright Spring Dress", + "url": "/product/C-PLC-E2-15601", + "addToCartUrl": "/product/C-PLC-E2-15601", + "price": 44, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4276_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4276_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4276_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a dress as radiant as this and a smile as dazzling as yours, it’s guaranteed to be “A Bright Spring.” You might want to get some shades while you’re at it. A-line dress features mock turtleneck with a keyhole at neckline. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "1080", + "caption": "Captions!" + } + }, + "attributes": { + "id": "c2bf465b2448caf446c5bbb01a711cbd", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdZ1NdI1NDUzMGQwZDBiMGAwNzVlSC_KTAEEAAD__6XUCDE", + "intellisuggestSignature": "227b12efd2c331ab5e9527be9393ad7064ba6c2ee39a7acfed49975d1919f21a", + "product_type_unigram": "dress", + "sales_rank": [ + "1080" + ] + }, + "children": [] + }, + { + "id": "127379", + "mappings": { + "core": { + "uid": "127379", + "sku": "C-LLV-I3-V9380", + "name": "A Floral Affair Dress", + "url": "/product/C-LLV-I3-V9380", + "addToCartUrl": "/product/C-LLV-I3-V9380", + "price": 35, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7028_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7028_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7028_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If your love for anything “Floral” has made you embark on this “Affair”, well there's no turning back now for this is one dress that the love of your life is sure to want to catch you caught up with!! This may not smell like your favorite flower, yet you are going to get much more from this feminine and floral number!! Compliments that will never die and being placed on a style pedestal for all to admire are sure to be starters!! Floral dress features a V-neckline with an inverted pleat, lace detail on the sleeves, and a small keyhole on the back with a button loop closure. • 90% Cotton, 10% Polyester • Hand Wash Cold • Fully Lined • Semi Sheer Model is 5'3\\\" and measures 32\\\" bust and 26\\\" waist. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "LLove", + "popularity": "2330", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b80a11f289f77b3bad3dbc642ca32a31", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXxCdP1NNYNszS2MGAwZDBmMGAwNzVlSC_KTAEEAAD__6szCHM", + "intellisuggestSignature": "68044c1035d38458757ff019adef0e0d389ddcef7a4f3d734c4aa73a0655c399", + "product_type_unigram": "dress", + "sales_rank": [ + "2330" + ] + }, + "children": [] + }, + { + "id": "163603", + "mappings": { + "core": { + "uid": "163603", + "sku": "C-OLV-I5-127LD", + "name": "A Heart's Desire Agave Blue Dress", + "url": "/product/C-OLV-I5-127LD", + "addToCartUrl": "/product/C-OLV-I5-127LD", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5327_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5327_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5327_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You’ll be setting hearts on fire when you’ve got on the A Heart's Desire Agave Blue Dress! You’ll be dangerously hot! This sleeveless dress features a mock neck with hook and eye closure and a keyhole on the front and back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "1018", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d4311de608feda3e65ec7abf47644eac", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdP1NNU1NDL3cWEwZDBhMGAwNzVlSC_KTAEEAAD__6svCHk", + "intellisuggestSignature": "928c917684d4097b17b70974f4c18a03e0d2504f2c698d3249394207e37e50c7", + "product_type_unigram": "dress", + "sales_rank": [ + "1018" + ] + }, + "children": [] + }, + { + "id": "125453", + "mappings": { + "core": { + "uid": "125453", + "sku": "C-HAY-I3-H3107", + "name": "A Previous Love Tunic Dress", + "url": "/product/C-HAY-I3-H3107", + "addToCartUrl": "/product/C-HAY-I3-H3107", + "price": 34.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a7401_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a7401_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a7401_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Like no other and always worth holding on to, “A Precious Love” like this is something that everyone you comes across the two of you cannot help but notice! Step out on the street in this embroidered and chic tunic dress, it will be evident that you are totally dressed up in love!!! Tunic features a lace up front with a tie at the neckline, embroidered chest panel, and long sleeves with elastic wrists. • 55% Cotton, 45% Polyester • Hand Wash Cold • Unlined • Faintly Sheer", + "stockMessage": "In stock", + "brand": "Hayden", + "popularity": "3522", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b3672677e4f507dab1fcfb2657407d42", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVwjNT1NNb1MDY0MGcwZDBlMGAwNzVlSC_KTAEEAAD__6hGCFI", + "intellisuggestSignature": "051868dfc126f9d6a9cb4f62aafc75eb7d8e440b3a7f8f402837b053382aa376", + "product_type_unigram": "dress", + "sales_rank": [ + "3522" + ] + }, + "children": [] + }, + { + "id": "114127", + "mappings": { + "core": { + "uid": "114127", + "sku": "A-JO-I4-H1031", + "name": "A Stitch In Time Leg Warmers", + "url": "/product/A-JO-I4-H1031", + "addToCartUrl": "/product/A-JO-I4-H1031", + "price": 22, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7914_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7914_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7914_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Time is long but life is short. In time things will fall into place, and by that we mean in A Stitch In Time these leg warmers will be giving your ankles the attention they have always deserved. Leg warmers feature open knit with knit detail. 65% Acrylic, 35% Wool. Length measures 16\\\"", + "stockMessage": "In stock", + "brand": "Joia", + "popularity": "2522", + "caption": "Captions!" + } + }, + "attributes": { + "id": "cc5c6af0c4b8e4bc2785ecb7490f58b9", + "intellisuggestData": "eJyyKK0sMcplYGBw1PXy1_U00fUwNDA2ZDBkMGMwYDA3NWVIL8pMAQQAAP__nXkIAw", + "intellisuggestSignature": "6256a90ca6bd5cee1b91be2e4697976a421dfaa5daf18e4a657b9cf93ef3d163", + "product_type_unigram": "warmers", + "sales_rank": [ + "2522" + ] + }, + "children": [] + }, + { + "id": "126548", + "mappings": { + "core": { + "uid": "126548", + "sku": "C-ANM-I2-16034", + "name": "ANAMÁ: Wonderful Unknown Dress", + "url": "/product/C-ANM-I2-16034", + "addToCartUrl": "/product/C-ANM-I2-16034", + "price": 51, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4366_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4366_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4366_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Heading off into the “Wonderful Unknown” could lead to a cause for concern, but with this dress on your back you have nothing to worry about!! What is well “Known” about this dress is the girl who wears it is sure to have a “Wonderful” time and look chic headed to any and every place, even if she is clueless to the destination!! Sleeveless A-line dress features tattered hemline. • 100% Cotton • Machine Wash Cold on Gentle • Fully Lined FIT: True to size BUST: Works for most bust sizes! Size Small measures 36\\\", Medium measures 38\\\", Large measures 40\\\" LENGTH: Above the knee. Asymmetrical hem. Longer on the sides. Size Small measures 34\\\", Medium measures 35\\\", Large measures 36\\\" WAIST: Loose fitting waist, great for those with a trouble waist area. HIPS: Loose fitting, plenty of room for movement. UNDERGARMENTS: Standard bra works perfectly! FABRIC: Fabric contains no stretch. Model is 5'7\\\" and measures 32\\\" bust and 25\\\" waist. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "2728", + "caption": "Captions!" + } + }, + "attributes": { + "id": "fa6d0bae53447aca99469b40fde4e31a", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089X1NNI1NDMwNmEwZDBnMGAwNzVlSC_KTAEEAAD__6YPCDg", + "intellisuggestSignature": "dee43b86188fe61571fb6e1f7720f8538866f7c39bd40bc8386692a715b273ff", + "product_type_unigram": "dress", + "sales_rank": [ + "2728" + ] + }, + "children": [] + }, + { + "id": "132494", + "mappings": { + "core": { + "uid": "132494", + "sku": "C-PLC-I2-0020N", + "name": "Above All Else Top", + "url": "/product/C-PLC-I2-0020N", + "addToCartUrl": "/product/C-PLC-I2-0020N", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0034_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0034_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a0034_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a love for faith, family, and friends, sometimes you have to be reminded that “Above All Else”, you gotta put yourself first!! Make that startling revelation a reality with this top that is “Tops”!! You be swinging in the Springtime breeze as this flowy frock with have you coming out as best dressed!! Short sleeve top features a crew neckline and ruffles along the bottom hemline. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined Model is 5'3\\\" and measures 32\\\" bust and a 26\\\" waist. She is wearing a small.", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "3091", + "caption": "Captions!" + } + }, + "attributes": { + "id": "250ef2a9a934b88bc88881e080b6df2a", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1NNI1MDAy8GMwZLBgMGAwNzVlSC_KTAEEAAD__6eNCE4", + "intellisuggestSignature": "93ca168294389dde5fedaee0761be590f7eceb6e9306ebc4cb0616093540f84a", + "product_type_unigram": "top", + "sales_rank": [ + "3091" + ] + }, + "children": [] + }, + { + "id": "178121", + "mappings": { + "core": { + "uid": "178121", + "sku": "C-SNK-I5-P9469", + "name": "Above The Fray Dark Wash Distressed Skinny Jeans", + "url": "/product/C-SNK-I5-P9469", + "addToCartUrl": "/product/C-SNK-I5-P9469", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3281_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3281_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a3281_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "The versatility of distressed skinny jeans is one of the greatest things on earth--right next to oxford button down shirts and cardigans. This pair in particular is a favorite of ours. It's trendy, but will stay in style for years to come. It can be dressed up and down, and frankly, it looks cool as all get out. They're the kind of jeans we can see ourselves falling asleep on the couch in after a few too many drinks (and likely will, if girls' night goes as planned). Model is wearing a size 1. • 98% Cotton 2% Spandex • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Sneak Peek", + "popularity": "1295", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a81817178f826329fba4b7d5c4ff2110", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3289b1NNUNsDQxs2QwZLBkMGAwNzVlSC_KTAEEAAD__6uNCHs", + "intellisuggestSignature": "209676909a38bc991685f15a7ff9f58d3589f20122ae1e2360f1f7368193a8be", + "product_type_unigram": "jeans", + "sales_rank": [ + "1295" + ] + }, + "children": [] + }, + { + "id": "177727", + "mappings": { + "core": { + "uid": "177727", + "sku": "J-GS-I4-75478", + "name": "Add Intrigue Turquoise Cuff Bracelet", + "url": "/product/J-GS-I4-75478", + "addToCartUrl": "/product/J-GS-I4-75478", + "price": 24, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_6796_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_6796_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_3_6796_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A recipe for a good date: A colorful top for a pinch of playfulness. A flowy skirt for a dash of bohemian free-spiritness. And dangly earrings for a sprinkling of fun. Now to just Add Intrigue, with a splash of turquoise, and you’re all set. Ready for date in two hours, and you’ll know it’s ready when your spirits rise. No easier instructions to follow than close eyes and kiss. • Imported", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "3387", + "caption": "Captions!" + } + }, + "attributes": { + "id": "09835880ab4d7731d983ee75aa75e5ac", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1vU00TU3NTG3YDBkMDRgMGAwNzVlSC_KTAEEAAD__6YWCDo", + "intellisuggestSignature": "a82ed9f4c9938c20f0505aaf0cf7ebd01905bcc41d766f2786bcfe42a067364e", + "product_type_unigram": "bracelet", + "sales_rank": [ + "3387" + ] + }, + "children": [] + }, + { + "id": "134892", + "mappings": { + "core": { + "uid": "134892", + "sku": "J-GS-I3-35603", + "name": "Add Some Whimsy Headband", + "url": "/product/J-GS-I3-35603", + "addToCartUrl": "/product/J-GS-I3-35603", + "price": 18, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a1749_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a1749_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a1749_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Simple and sophisticated and then “Add Some Whimsy” and you’ve got the perfect combination of your winning style. This heavenly headband is just what you need to add that whimsical touch to any outfit. Elastic beaded headband. Circumference measures 20\\\"", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "2499", + "caption": "Captions!" + } + }, + "attributes": { + "id": "74a8bab58fcfab1f4194221254113ac7", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1vU01jU2NTMwZjBkMDRkMGAwNzVlSC_KTAEEAAD__6UKCCw", + "intellisuggestSignature": "87475198de6f096d2e3fdeed8b2d61611cc540f7e743198208e804532bed98bf", + "product_type_unigram": "headband", + "sales_rank": [ + "2499" + ] + }, + "children": [] + }, + { + "id": "181271", + "mappings": { + "core": { + "uid": "181271", + "sku": "H-DY-I2-P957P", + "name": "Addicted To Sun Blue Pom Hat", + "url": "/product/H-DY-I2-P957P", + "addToCartUrl": "/product/H-DY-I2-P957P", + "price": 18, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2863_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2863_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2863_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "For all of you ladies who are addicted to sun, this hat is perfect for poolside lounging and beach sun bathing! When you need just a little shade, this cutie will provide! Say hello to pom pom perfection! One size fits most. • 100% Paper • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "David & Young", + "popularity": "294", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ce109b1af8d47c3a27d903c61e3766fe", + "intellisuggestData": "eJyyKK0sMcplYGDw0HWJ1PU00g2wNDUPYDBkMDRiMGAwNzVlSC_KTAEEAAD__6oZCHE", + "intellisuggestSignature": "d468d17a2eb7e223c7d6f6306cc04c4f7d991ce2df684866fc13ea25c5895e47", + "product_type_unigram": "hat", + "sales_rank": [ + "294" + ] + }, + "children": [] + }, + { + "id": "160153", + "mappings": { + "core": { + "uid": "160153", + "sku": "C-AD-I7-707ST", + "name": "Addicted To You Navy Striped Swing Dress", + "url": "/product/C-AD-I7-707ST", + "addToCartUrl": "/product/C-AD-I7-707ST", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/284_3852_copyright_reddressboutique_2016_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/284_3852_copyright_reddressboutique_2016_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/284_3852_copyright_reddressboutique_2016_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You might as well face it and tell this Navy Striped Swing Dress that I'm Addicted To You! It's irresistibly cute and classic! This striped sleeveless swing dress features a crew neck. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Adrienne", + "popularity": "1453", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ff8631a1cd6ec3654f15e7c6512f1624", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV00fU01zU3MA8OYTBkMDRmMGAwNzVlSC_KTAEEAAD__6c1CFo", + "intellisuggestSignature": "97774e0b710e5673328b37a37d0ee827a6139ebef6f3051ec62b341a2f807bc6", + "product_type_unigram": "dress", + "sales_rank": [ + "1453" + ] + }, + "children": [] + }, + { + "id": "181403", + "mappings": { + "core": { + "uid": "181403", + "sku": "C-UG-I4-A3027", + "name": "Adored By All Blue Top", + "url": "/product/C-UG-I4-A3027", + "addToCartUrl": "/product/C-UG-I4-A3027", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2675_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2675_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2675_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You ever have the feeling that you’re –supposed- to be treasured, admired, and Adored By All? Well maybe that’s just the universe trying to tell you how special you are. Men should be bowing at your feet, just for the blessing of being in your presence. And women should want to be you. But then again, something tells me that you’re just the right top away from making that happen (assuming it hasn’t already). Model is wearing a small. • 65% Cotton 35% Polyester • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Umgee", + "popularity": "701", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d2c04f102fff9263e16d66285d14d86a", + "intellisuggestData": "eJyyKK0sMcplYGBw1g111_U00XU0NjAyZzBkMDRhMGAwNzVlSC_KTAEEAAD__6WwCDc", + "intellisuggestSignature": "13f7bc9fc62fb6f6c9f0322006b4b530f1e783548202914508405177648cfdeb", + "product_type_unigram": "top", + "sales_rank": [ + "701" + ] + }, + "children": [] + }, + { + "id": "176896", + "mappings": { + "core": { + "uid": "176896", + "sku": "C-JJ-I4-Q578", + "name": "Adventure Ready Blue Striped Dress", + "url": "/product/C-JJ-I4-Q578", + "addToCartUrl": "/product/C-JJ-I4-Q578", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3623_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3623_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rdb_studio_2_3623_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Some people are content to live their lives in the safety and security of their own living rooms, wrapped snugly in their sofas while binge watching the entire Netflix catalog. But you were made for more than a life of molding a couch cushion to your perfectly sculpted heiny. And you don’t need a fedora or bull whip to be an adventurer; to dress the part, you need nothing more than this adorable dress. Whether you belong in the great outdoors, or you “belong in a museum,” you’ll be adventure ready in no time. Model is wearing a small. • 90% Cotton 10% Polyester • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "JJ's Fairyland", + "popularity": "4018", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ef362c66e4bc980c1fffd2c914bcf4e6", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXy0vU00Q00NbdgMGQwNGUwYDA3NWVIL8pMAQQAAP__npkIGA", + "intellisuggestSignature": "992eae0669288ae94bd0f2042b1abf19285dcf2eadca70e66ee3d046e92e9670", + "product_type_unigram": "dress", + "sales_rank": [ + "4018" + ] + }, + "children": [] + }, + { + "id": "179563", + "mappings": { + "core": { + "uid": "179563", + "sku": "C-MB-I6-16029", + "name": "Air Of Elegance Navy Lace Dress", + "url": "/product/C-MB-I6-16029", + "addToCartUrl": "/product/C-MB-I6-16029", + "price": 62, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_03_20_studio_26391_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_03_20_studio_26391_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/17_03_20_studio_26391_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Instead of having an air of arrogance (which we’ve all had enough of seeing in other people to last us a lifetime) why not give off an Air Of Elegance of your own? With another one of our winning lace dresses, that is sure to stun any one of your gentleman suitors, and frankly, everyone who sees you. Great for parties, dates, nights out with the girls, brunches, you name it! Navy lace midi dress features a nude lining and sheer neckline. Has an invisible back zipper topped with a hook and eye closure. Model is wearing a small. • 100% Polyester • Dry Clean Only • Unlined • Made in the USA • Imported", + "stockMessage": "In stock", + "brand": "Marine", + "popularity": "2723", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2d07ba95159aa5c527c18cc2eaddb673", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10vU00zU0MzCyZDBkMDRjMGAwNzVlSC_KTAEEAAD__6OqCCM", + "intellisuggestSignature": "099013df5d479ef4d62f90fe7543692a798a80adde7c86708aa020265336f9cf", + "product_type_unigram": "dress", + "sales_rank": [ + "2723" + ] + }, + "children": [] + }, + { + "id": "180923", + "mappings": { + "core": { + "uid": "180923", + "sku": "C-TY-I4-T2331", + "name": "All Hail Turquoise Top", + "url": "/product/C-TY-I4-T2331", + "addToCartUrl": "/product/C-TY-I4-T2331", + "price": 29, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0846_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0846_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0846_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Wouldn't it be awesome if you landed in some far off land in some place you've never heard of, where they've never seen clothing before ... but they've been waiting for this item to arrive in the form of what amounts to a Turquoise Top, to somehow deliver them from depression and make all of their lives better? So when you arrive they mistake you for a goddess and worship your top as as a deity and you as its divine messenger? You know, All Hail Turquoise Top? Why do I see Steve Martin playing a role in the movie version of narrative? Anyway, if that were ever to happen, this would totally be the top they would choose. It is totally worthy of being adored. Sleeveless top features a layered hemline with a single button closure on a keyhole cut-out. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "Tyche", + "popularity": "2725", + "caption": "Captions!" + } + }, + "attributes": { + "id": "26bd4483b82567b4589a35941331b2b8", + "intellisuggestData": "eJyyKK0sMcplYGBw1g2J1PU00Q0xMjY2ZDBkMDRnMGAwNzVlSC_KTAEEAAD__6jtCFs", + "intellisuggestSignature": "0f37a951b8c92adc7bbd18ac98a85cb8fd897174258b56be827d84c9c1e7da74", + "product_type_unigram": "top", + "sales_rank": [ + "2725" + ] + }, + "children": [] + }, + { + "id": "145587", + "mappings": { + "core": { + "uid": "145587", + "sku": "C-JDF-I6-J1745", + "name": "All I Got Blue Ruffle Top", + "url": "/product/C-JDF-I6-J1745", + "addToCartUrl": "/product/C-JDF-I6-J1745", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6588_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6588_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a6588_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "In everything you do, you give it All I Got, and style is obviously one of those things when you’re wearing this beautiful Blue Ruffle Top. We admire your all or nothing attitude and know you’d look amazing in this top. This sleeveless top features a crew neckline with a tie and a ruffled hemline. Model is wearing a small. • 100% Rayon • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Jodifl", + "popularity": "2219", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ccfc65a4f1b78fc394435cf1fc196e2b", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVycdP1NNP1MjQ3MWUwZDC0YDBgMDc1ZUgvykwBBAAA__-wBwiD", + "intellisuggestSignature": "40d916a4888f69cccb10c060695551c2e13535bddbd18749691c0885b137ea9e", + "product_type_unigram": "top", + "sales_rank": [ + "2219" + ] + }, + "children": [] + }, + { + "id": "177366", + "mappings": { + "core": { + "uid": "177366", + "sku": "C-BB-I1-16137", + "name": "All In Favor Light Blue Sweater", + "url": "/product/C-BB-I1-16137", + "addToCartUrl": "/product/C-BB-I1-16137", + "price": 79, + "msrp": 100, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/42_0053_copyright_reddressboutique_2016_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/42_0053_copyright_reddressboutique_2016_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/42_0053_copyright_reddressboutique_2016_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What would life be like if there were an audience helping you get dressed every single morning? You could hold up an outfit and the viewers could vote yes or no depending on whether or not they liked it. Creepy or cool? However you view the idea, we're sure that they'd vote 'All In Favor' for this gorgeous red sweater! It's a sure fire winner! Model is wearing an x-small. • 100% Polyester • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "BB Dakota", + "popularity": "4050", + "caption": "Captions!" + } + }, + "attributes": { + "id": "5189a543a8329eaed11d3ef753458e99", + "intellisuggestData": "eJyyKK0sMcplYGBw1nVy0vU01DU0MzQ2ZzBkMLRkMGAwNzVlSC_KTAEEAAD__6I1CBY", + "intellisuggestSignature": "84ac27a8fda2dd4653d8593ce88fd9bf9ceee6b75a1f64d5f042367ce940d1e5", + "product_type_unigram": "sweater", + "sales_rank": [ + "4050" + ] + }, + "children": [] + }, + { + "id": "129650", + "mappings": { + "core": { + "uid": "129650", + "sku": "C-HM-I7-81GOF", + "name": "All In Fun Dress", + "url": "/product/C-HM-I7-81GOF", + "addToCartUrl": "/product/C-HM-I7-81GOF", + "price": 40, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5712_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5712_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5712_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You love to tease siblings and close friends because they know it’s “All In Fun”. That’s how you know you’re comfortable with someone; you give them a hard time and they bounce it right back. Those type of relationships are irreplaceable. Get together with some of them and have a good time because if you’re wearing this lively dress, you’re going to have “Fun”. A-line print dress with a triangle bodice, double spaghetti straps leading to a small keyhole on the back, and a removable matching tie around the waist. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined Length: Small measures 33\\\", Medium measures 34\\\", Large measures 35\\\" Bust: Small measures 36\\\", Medium measures 38\\\", Large measures 40\\\" Hips: Small measures 44\\\", Medium measures 46\\\", Large measures 48\\\"", + "stockMessage": "In stock", + "brand": "Hello Miss", + "popularity": "3460", + "caption": "Captions!" + } + }, + "attributes": { + "id": "0484805965d05bb13072205cd1789021", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXw1fU017UwdPd3YzBkMDJgMGAwNzVlSC_KTAEEAAD__6joCGg", + "intellisuggestSignature": "9fbc8519b3e6fe33b61f4a3a9aa8ed6898f6bd6a998ccecb58036ec492574b66", + "product_type_unigram": "dress", + "sales_rank": [ + "3460" + ] + }, + "children": [] + }, + { + "id": "133740", + "mappings": { + "core": { + "uid": "133740", + "sku": "C-LR-I7-0933G", + "name": "All My Love Dress", + "url": "/product/C-LR-I7-0933G", + "addToCartUrl": "/product/C-LR-I7-0933G", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8627_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8627_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a8627_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Let him know that you are saving “All My Love”! However, he may be a little unnerved to find out about the love affair that you have with fashion! Step out in this number and he’ll truly get the hint that he may be love of your life, but you refuse to part with style that loves you in the way that you deserve to be loved!! Sleeveless A-line dress features a beaded collar and keyhole on the front, and a large keyhole on the back with a button loop closure. • 100% Polyester • Machine Wash Cold on Gentle • Fully Lined", + "stockMessage": "In stock", + "brand": "Love Riche", + "popularity": "2571", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a76a58fc0ca40b07937c088179ba10e9", + "intellisuggestData": "eJyyKK0sMcplYGBw1vUJ0vU01zWwNDZ2ZzBkMDJkMGAwNzVlSC_KTAEEAAD__6Z3CEM", + "intellisuggestSignature": "e9a270b5993013350948e51895519252c5f4b430c4db3cff5bed3f67f0d9c6c5", + "product_type_unigram": "dress", + "sales_rank": [ + "2571" + ] + }, + "children": [] + }, + { + "id": "157610", + "mappings": { + "core": { + "uid": "157610", + "sku": "C-OLV-I3-612LD", + "name": "All She Wants Blue Print Dress", + "url": "/product/C-OLV-I3-612LD", + "addToCartUrl": "/product/C-OLV-I3-612LD", + "price": 46, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3494_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3494_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3494_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "All She Wants is another beautiful dress, so get this brilliant Blue Print Dress before it’s gone tomorrow! This lovely number will have her wanting no more! This sleeveless dress features a mock neck with double hook and eye closure and a keyhole on the front and back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "3215", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2d2eb707caba98af0e82d475a477f288", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdP1NNY1MzTycWEwZDAyYjBgMDc1ZUgvykwBBAAA__-zNwim", + "intellisuggestSignature": "b3383094f88438697144817f34db50e3d423cfe9e95fba87e501971f122beb90", + "product_type_unigram": "dress", + "sales_rank": [ + "3215" + ] + }, + "children": [] + }, + { + "id": "148247", + "mappings": { + "core": { + "uid": "148247", + "sku": "C-MAC-I4-66302", + "name": "All Summer Long Aqua Print Pants", + "url": "/product/C-MAC-I4-66302", + "addToCartUrl": "/product/C-MAC-I4-66302", + "price": 48, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9524_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9524_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a9524_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A summer filled with cutoffs needs a little spark, so you need our All Summer Long Aqua Print Pants! They’re so cute and comfy that you’ll be coming back to them All Summer Long! These print bootcut pants feature a drawstring waist. Model is wearing an x-small. • 96% Cotton, 4% Spandex • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Macbeth", + "popularity": "3111", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b77a5a0b4e763c9e18dc4bcff11d3092", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV1dNb1NNE1MzM2MGIwZDAyZjBgMDc1ZUgvykwBBAAA__-tWAhg", + "intellisuggestSignature": "45999c18f5ea51001e8efb2060fee3db1b02bf1a21340bff77b2cf223401c4ec", + "product_type_unigram": "pants", + "sales_rank": [ + "3111" + ] + }, + "children": [] + }, + { + "id": "175332", + "mappings": { + "core": { + "uid": "175332", + "sku": "C-CLO-I7-10466", + "name": "All The Stripe Navy And White Top", + "url": "/product/C-CLO-I7-10466", + "addToCartUrl": "/product/C-CLO-I7-10466", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/4148_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/4148_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/4148_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "The classic dilemma ... what to wear? You've got a whole closet full of clothes, but here you are on the internet, searching for something new to bring a spark of life to your wardrobe. Face the truth: You're bored with your stuff. Good news!! We've got a simple answer: US! You can start with this awesome top. It's simple, timeless, will go with anything, and keep you nice and toasty. Plus it's affordable, and it will look fantastic on you! Just picture it with your favorite pair of booties, and that new purse you've been eyeing for the last half hour. Go on, add them to your cart and then go watch the mailbox. You'll feel like a kid again. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "Coalition", + "popularity": "2823", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d01e6c413523774a063d033a79cdf782", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX28df1NNc1NDAxM2MwZDAyYTBgMDc1ZUgvykwBBAAA__-u1Ahx", + "intellisuggestSignature": "a704f74d28219a317a0cd9c5de45af34063b9dfcbdba7f37e9f29480dbcbe53c", + "product_type_unigram": "top", + "sales_rank": [ + "2823" + ] + }, + "children": [] + }, + { + "id": "144927", + "mappings": { + "core": { + "uid": "144927", + "sku": "C-UG-I7-B5624", + "name": "All Things Beautiful Navy Print Top", + "url": "/product/C-UG-I7-B5624", + "addToCartUrl": "/product/C-UG-I7-B5624", + "price": 32.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3300_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3300_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3300_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If All Things Beautiful compel you towards this Navy Print Top, then it would fair game to assume that you are quite knowledgeable on the subject!! Stepping out in this is sure to have more than a few people exclaiming “Bellissima”!! This sleeveless shift dress features a hi-lo hemline and triangle cutout on the front with a button closure. Model is wearing a small. • 60% Cotton, 40% Polyester • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Umgee", + "popularity": "130", + "caption": "Captions!" + } + }, + "attributes": { + "id": "971819aa83f53dbcfe6e5dfa56e38827", + "intellisuggestData": "eJyyKK0sMcplYGBw1g111_U013UyNTMyYTBkMDJlMGAwNzVlSC_KTAEEAAD__6aKCEI", + "intellisuggestSignature": "9724e8791d522a8b71761c060d5103d0eaf76a6e7a2ced6bf085fa293a620606", + "product_type_unigram": "top", + "sales_rank": [ + "130" + ] + }, + "children": [] + }, + { + "id": "152679", + "mappings": { + "core": { + "uid": "152679", + "sku": "C-OLV-I5-272LD", + "name": "All Wrapped Up Blue Floral Print Maxi Dress", + "url": "/product/C-OLV-I5-272LD", + "addToCartUrl": "/product/C-OLV-I5-272LD", + "price": 62, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4931_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4931_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4931_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Get All Wrapped Up and everywhere to go in this beautiful Blue Floral Print Maxi Dress! This fine floral number deserves to be seen, and you’ll make sure it gets what it deserves. Get ready to make your appearance(s)! This wrap maxi dress features short sleeves, a tie at the waist, and the waist is cinched at the back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Faintly Sheer • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "1309", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2053b18763f1a7c237ae5d1c7c57eae6", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdP1NNU1MjfycWEwZDAyYzBgMDc1ZUgvykwBBAAA__-zuQiu", + "intellisuggestSignature": "4ccf8c5c1a5c46ad458c8c601b1b489a26b05acbb88a3635c306e4403bfb9cae", + "product_type_unigram": "dress", + "sales_rank": [ + "1309" + ] + }, + "children": [] + }, + { + "id": "132089", + "mappings": { + "core": { + "uid": "132089", + "sku": "C-SA-I2-2077A", + "name": "Almost A Love Song Dress", + "url": "/product/C-SA-I2-2077A", + "addToCartUrl": "/product/C-SA-I2-2077A", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7773_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7773_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7773_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Expressing your thoughts in ways you couldn’t and making you feel warm and fuzzy inside, this lovely dress is “Almost A Love Song”. A-line dress features adjustable spaghetti straps that cross in the back and an open back with a hidden zipper. Model is wearing a small. • 90% Polyester, 10% Spandex • Hand Wash Cold • Fully Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "Sage", + "popularity": "3061", + "caption": "Captions!" + } + }, + "attributes": { + "id": "4865ab4c35e3285b368b3c201bb5e157", + "intellisuggestData": "eJyyKK0sMcplYGBw1g121PU00jUyMDd3ZDBkMDJnMGAwNzVlSC_KTAEEAAD__6TzCDU", + "intellisuggestSignature": "65feb6b63bbb5e93d7296bcd829af556c5a032073dd499ce00836196bf4e8173", + "product_type_unigram": "dress", + "sales_rank": [ + "3061" + ] + }, + "children": [] + }, + { + "id": "178742", + "mappings": { + "core": { + "uid": "178742", + "sku": "A-FR-I4-10319", + "name": "Almost Famous Blue And Green Sunglasses", + "url": "/product/A-FR-I4-10319", + "addToCartUrl": "/product/A-FR-I4-10319", + "price": 14, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2m4a3750_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2m4a3750_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2m4a3750_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Feel like a celebrity and dodge the sun (and paparazzi) in these chic retro sunglasses. • Imported", + "stockMessage": "In stock", + "popularity": "219", + "caption": "Captions!" + } + }, + "attributes": { + "id": "160b850755a63dcc09f1d6939434e65e", + "intellisuggestData": "eJyyKK0sMcplYGBw1HUL0vU00TU0MDa0ZDBkMLJgMGAwNzVlSC_KTAEEAAD__6P5CCc", + "intellisuggestSignature": "6c8bd2deba96eb8ead7f956177f2dc5dcb45bcbe74d8680cc2130504c5469394", + "product_type_unigram": "sunglasses", + "sales_rank": [ + "219" + ] + }, + "children": [] + }, + { + "id": "155421", + "mappings": { + "core": { + "uid": "155421", + "sku": "C-HM-O6-09DS2", + "name": "Always Be Your Girl Blue Print Dress", + "url": "/product/C-HM-O6-09DS2", + "addToCartUrl": "/product/C-HM-O6-09DS2", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/23_lcp_9603_copyright_loganpotterf_2016_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/23_lcp_9603_copyright_loganpotterf_2016_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/23_lcp_9603_copyright_loganpotterf_2016_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "He’ll love to hear you say I‘ll Always Be Your Girl, especially if you’re in this darling Blue Print Dress! And if there’s not a special someone in your life, you can at least say that to the dress! You’ll be wanting this dress to stick around for good! This print dress features a scoop neckline, a keyhole on the front with a button loop closure, and long sleeves with elastic cuffs. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "Hello Miss", + "popularity": "2995", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b8b804db129bb3eb8eba7fe8ddbef75e", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXw1fU30zWwdAk2YjBkMLJkMGAwNzVlSC_KTAEEAAD__6iACGM", + "intellisuggestSignature": "a5357439aa8f3f29525598215e9e996b9a7230fc249c8ad6ac289d81a93a97af", + "product_type_unigram": "dress", + "sales_rank": [ + "2995" + ] + }, + "children": [] + }, + { + "id": "164329", + "mappings": { + "core": { + "uid": "164329", + "sku": "C-STC-I5-70313", + "name": "Always The Favorite Medium Wash Chambray Button Up Tunic", + "url": "/product/C-STC-I5-70313", + "addToCartUrl": "/product/C-STC-I5-70313", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/7154_copyright_reddressboutique_2017_-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/7154_copyright_reddressboutique_2017_-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/7154_copyright_reddressboutique_2017_-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "No matter what time of year, this Medium Wash Chambray Button Up Tunic is Always The Favorite! Worn alone with sandals or layered with a scarf, leggings, and boots, this chic chambray can be worn as a top or dress and when it’s warm or cold! Say what?! It’s a year-long winner! This chambray top features a spread collar, a button-up front, 2 functional breast pockets, long roll tab sleeves with a single button cuff, a shirttail hemline, and a yoke and inverted pleat on the back. Model is wearing a small. • 100% Tencel • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Staccato", + "popularity": "1130", + "caption": "Captions!" + } + }, + "attributes": { + "id": "99fe963823c39f4e5d550c8177a1fa46", + "intellisuggestData": "eJyyKK0sMcplYGBw1g0Ocdb1NNU1NzA2NGYwZDA2YDBgMDc1ZUgvykwBBAAA__-vwQh1", + "intellisuggestSignature": "20e08c2287787f327ec2f04f59b9681bbe9df1919b9f925bb87e771bd962bdc0", + "product_type_unigram": "tunic", + "sales_rank": [ + "1130" + ] + }, + "children": [] + } + ], + "filters": [ + { + "type": "value", + "field": "color_family", + "label": "Blue", + "value": "Blue" + } + ], + "facets": [ + { + "field": "brand", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "4 Sienna", + "label": "4 Sienna", + "count": 5 + }, + { + "filtered": false, + "value": "5th Avenue", + "label": "5th Avenue", + "count": 3 + }, + { + "filtered": false, + "value": "12 PM by Mon Ami", + "label": "12 PM by Mon Ami", + "count": 4 + }, + { + "filtered": false, + "value": "36point5", + "label": "36point5", + "count": 1 + }, + { + "filtered": false, + "value": "143 Story", + "label": "143 Story", + "count": 1 + }, + { + "filtered": false, + "value": "Aakaa", + "label": "Aakaa", + "count": 8 + }, + { + "filtered": false, + "value": "Activusa", + "label": "Activusa", + "count": 1 + }, + { + "filtered": false, + "value": "Adrienne", + "label": "Adrienne", + "count": 32 + }, + { + "filtered": false, + "value": "After Market", + "label": "After Market", + "count": 1 + }, + { + "filtered": false, + "value": "Amazing Sport", + "label": "Amazing Sport", + "count": 1 + }, + { + "filtered": false, + "value": "American Bazi", + "label": "American Bazi", + "count": 2 + }, + { + "filtered": false, + "value": "Anama", + "label": "Anama", + "count": 4 + }, + { + "filtered": false, + "value": "Anzell", + "label": "Anzell", + "count": 4 + }, + { + "filtered": false, + "value": "Ark & Co", + "label": "Ark & Co", + "count": 2 + }, + { + "filtered": false, + "value": "Aryeh", + "label": "Aryeh", + "count": 2 + }, + { + "filtered": false, + "value": "Audrey 3+1", + "label": "Audrey 3+1", + "count": 2 + }, + { + "filtered": false, + "value": "Aura L'atiste", + "label": "Aura L'atiste", + "count": 11 + }, + { + "filtered": false, + "value": "Bamboo", + "label": "Bamboo", + "count": 1 + }, + { + "filtered": false, + "value": "Banana", + "label": "Banana", + "count": 1 + }, + { + "filtered": false, + "value": "BB Dakota", + "label": "BB Dakota", + "count": 1 + }, + { + "filtered": false, + "value": "Beach Joy", + "label": "Beach Joy", + "count": 4 + }, + { + "filtered": false, + "value": "Blu Pepper", + "label": "Blu Pepper", + "count": 5 + }, + { + "filtered": false, + "value": "Bozzolo", + "label": "Bozzolo", + "count": 1 + }, + { + "filtered": false, + "value": "Breckelle's", + "label": "Breckelle's", + "count": 3 + }, + { + "filtered": false, + "value": "Buddy Love", + "label": "Buddy Love", + "count": 1 + }, + { + "filtered": false, + "value": "Caramela", + "label": "Caramela", + "count": 1 + }, + { + "filtered": false, + "value": "Caribbean Queen", + "label": "Caribbean Queen", + "count": 4 + }, + { + "filtered": false, + "value": "Catch Me", + "label": "Catch Me", + "count": 1 + }, + { + "filtered": false, + "value": "Celebrity", + "label": "Celebrity", + "count": 2 + }, + { + "filtered": false, + "value": "Cello Jeans", + "label": "Cello Jeans", + "count": 1 + }, + { + "filtered": false, + "value": "Ces Femme", + "label": "Ces Femme", + "count": 6 + }, + { + "filtered": false, + "value": "Cezanne", + "label": "Cezanne", + "count": 2 + }, + { + "filtered": false, + "value": "Cherish", + "label": "Cherish", + "count": 1 + }, + { + "filtered": false, + "value": "Ciffy Classified", + "label": "Ciffy Classified", + "count": 1 + }, + { + "filtered": false, + "value": "City Classified", + "label": "City Classified", + "count": 1 + }, + { + "filtered": false, + "value": "Coalition", + "label": "Coalition", + "count": 1 + }, + { + "filtered": false, + "value": "Color Thread", + "label": "Color Thread", + "count": 1 + }, + { + "filtered": false, + "value": "Colorfully Yours", + "label": "Colorfully Yours", + "count": 9 + }, + { + "filtered": false, + "value": "Cotton Candy", + "label": "Cotton Candy", + "count": 2 + }, + { + "filtered": false, + "value": "Creative Group", + "label": "Creative Group", + "count": 4 + }, + { + "filtered": false, + "value": "Dance & Marvel", + "label": "Dance & Marvel", + "count": 3 + }, + { + "filtered": false, + "value": "David & Young", + "label": "David & Young", + "count": 1 + }, + { + "filtered": false, + "value": "Depri", + "label": "Depri", + "count": 2 + }, + { + "filtered": false, + "value": "Dippin' Daisy's", + "label": "Dippin' Daisy's", + "count": 1 + }, + { + "filtered": false, + "value": "Do+Be", + "label": "Do+Be", + "count": 4 + }, + { + "filtered": false, + "value": "Dreamers", + "label": "Dreamers", + "count": 3 + }, + { + "filtered": false, + "value": "Dresscode", + "label": "Dresscode", + "count": 1 + }, + { + "filtered": false, + "value": "E2 Clothing", + "label": "E2 Clothing", + "count": 7 + }, + { + "filtered": false, + "value": "Ellison", + "label": "Ellison", + "count": 2 + }, + { + "filtered": false, + "value": "Emory Park", + "label": "Emory Park", + "count": 1 + } + ] + }, + { + "field": "color_family", + "type": "value", + "filtered": true, + "values": [ + { + "filtered": true, + "value": "Blue", + "label": "Blue", + "count": 755 + }, + { + "filtered": false, + "value": "White", + "label": "White", + "count": 673 + }, + { + "filtered": false, + "value": "Pink", + "label": "Pink", + "count": 530 + }, + { + "filtered": false, + "value": "Beige", + "label": "Beige", + "count": 316 + }, + { + "filtered": false, + "value": "Black", + "label": "Black", + "count": 366 + }, + { + "filtered": false, + "value": "Gray", + "label": "Gray", + "count": 303 + }, + { + "filtered": false, + "value": "Brown", + "label": "Brown", + "count": 174 + }, + { + "filtered": false, + "value": "Red", + "label": "Red", + "count": 261 + }, + { + "filtered": false, + "value": "Green", + "label": "Green", + "count": 237 + }, + { + "filtered": false, + "value": "Yellow", + "label": "Yellow", + "count": 202 + }, + { + "filtered": false, + "value": "Orange", + "label": "Orange", + "count": 97 + }, + { + "filtered": false, + "value": "Purple", + "label": "Purple", + "count": 79 + }, + { + "filtered": false, + "value": "Black, Grey", + "label": "Black, Grey", + "count": 2 + }, + { + "filtered": false, + "value": "Black, Orange", + "label": "Black, Orange", + "count": 2 + } + ] + }, + { + "field": "size", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 591 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 592 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 590 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 44 + }, + { + "filtered": false, + "value": "26", + "label": "26", + "count": 37 + }, + { + "filtered": false, + "value": "27", + "label": "27", + "count": 37 + }, + { + "filtered": false, + "value": "28", + "label": "28", + "count": 37 + }, + { + "filtered": false, + "value": "29", + "label": "29", + "count": 37 + }, + { + "filtered": false, + "value": "30", + "label": "30", + "count": 37 + }, + { + "filtered": false, + "value": "25", + "label": "25", + "count": 34 + }, + { + "filtered": false, + "value": "24", + "label": "24", + "count": 29 + }, + { + "filtered": false, + "value": "31", + "label": "31", + "count": 28 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 25 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 24 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 14 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 14 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 13 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 12 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 12 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 12 + }, + { + "filtered": false, + "value": "1", + "label": "1", + "count": 11 + }, + { + "filtered": false, + "value": "13", + "label": "13", + "count": 11 + }, + { + "filtered": false, + "value": "3", + "label": "3", + "count": 11 + }, + { + "filtered": false, + "value": "5", + "label": "5", + "count": 11 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 11 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 9 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 6 + }, + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 1 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 1 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 1 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 1 + } + ] + }, + { + "field": "ss_category_hierarchy", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Gifts for Her", + "label": "Gifts for Her", + "count": 755 + }, + { + "filtered": false, + "value": "Shop By Trend", + "label": "Shop By Trend", + "count": 259 + }, + { + "filtered": false, + "value": "What's New", + "label": "What's New", + "count": 95 + }, + { + "filtered": false, + "value": "All Dresses", + "label": "All Dresses", + "count": 78 + }, + { + "filtered": false, + "value": "Brands We Love", + "label": "Brands We Love", + "count": 63 + }, + { + "filtered": false, + "value": "All Tops", + "label": "All Tops", + "count": 62 + }, + { + "filtered": false, + "value": "All Bottoms", + "label": "All Bottoms", + "count": 60 + }, + { + "filtered": false, + "value": "All Jewelry", + "label": "All Jewelry", + "count": 48 + }, + { + "filtered": false, + "value": "All Accessories", + "label": "All Accessories", + "count": 44 + }, + { + "filtered": false, + "value": "Playsuits", + "label": "Playsuits", + "count": 44 + }, + { + "filtered": false, + "value": "Notify of Restock", + "label": "Notify of Restock", + "count": 35 + }, + { + "filtered": false, + "value": "Style Influencer", + "label": "Style Influencer", + "count": 33 + }, + { + "filtered": false, + "value": "Swimwear", + "label": "Swimwear", + "count": 31 + }, + { + "filtered": false, + "value": "All Sale", + "label": "All Sale", + "count": 29 + }, + { + "filtered": false, + "value": "Going Fast", + "label": "Going Fast", + "count": 23 + }, + { + "filtered": false, + "value": "Trending", + "label": "Trending", + "count": 19 + }, + { + "filtered": false, + "value": "Special Occasion", + "label": "Special Occasion", + "count": 17 + }, + { + "filtered": false, + "value": "Memorial Day Sale", + "label": "Memorial Day Sale", + "count": 15 + }, + { + "filtered": false, + "value": "Back in Stock", + "label": "Back in Stock", + "count": 11 + }, + { + "filtered": false, + "value": "White & Blue Looks", + "label": "White & Blue Looks", + "count": 11 + }, + { + "filtered": false, + "value": "Athleisure", + "label": "Athleisure", + "count": 9 + }, + { + "filtered": false, + "value": "All Pajamas", + "label": "All Pajamas", + "count": 6 + }, + { + "filtered": false, + "value": "Shop Lookbook", + "label": "Shop Lookbook", + "count": 6 + }, + { + "filtered": false, + "value": "Valentine's Day", + "label": "Valentine's Day", + "count": 6 + }, + { + "filtered": false, + "value": "All Shoes", + "label": "All Shoes", + "count": 5 + }, + { + "filtered": false, + "value": "Home & Office Decor", + "label": "Home & Office Decor", + "count": 2 + }, + { + "filtered": false, + "value": "Top Rated", + "label": "Top Rated", + "count": 1 + } + ] + }, + { + "field": "price", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": 20, + "high": 30, + "label": "$20 to $30", + "count": 90 + }, + { + "filtered": false, + "low": 30, + "high": 40, + "label": "$30 to $40", + "count": 305 + }, + { + "filtered": false, + "low": 40, + "high": 50, + "label": "$40 to $50", + "count": 259 + }, + { + "filtered": false, + "low": 50, + "high": 75, + "label": "$50 to $75", + "count": 73 + }, + { + "filtered": false, + "low": 75, + "high": 100, + "label": "$75 to $100", + "count": 3 + }, + { + "filtered": false, + "low": 100, + "high": 150, + "label": "$100 to $150", + "count": 5 + }, + { + "filtered": false, + "low": 150, + "high": 200, + "label": "$150 to $200", + "count": 2 + } + ] + }, + { + "field": "material", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Wool", + "label": "Wool", + "count": 1 + }, + { + "filtered": false, + "value": "Spandex", + "label": "Spandex", + "count": 64 + }, + { + "filtered": false, + "value": "Silk", + "label": "Silk", + "count": 3 + }, + { + "filtered": false, + "value": "Rubber", + "label": "Rubber", + "count": 2 + }, + { + "filtered": false, + "value": "Polyester", + "label": "Polyester", + "count": 240 + }, + { + "filtered": false, + "value": "Linen", + "label": "Linen", + "count": 12 + }, + { + "filtered": false, + "value": "Leather", + "label": "Leather", + "count": 2 + }, + { + "filtered": false, + "value": "Denim", + "label": "Denim", + "count": 50 + }, + { + "filtered": false, + "value": "Cotton", + "label": "Cotton", + "count": 169 + }, + { + "filtered": false, + "value": "", + "label": "", + "count": 212 + } + ] + }, + { + "field": "on_sale", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Yes", + "label": "Yes", + "count": 245 + }, + { + "filtered": false, + "value": "No", + "label": "No", + "count": 510 + } + ] + }, + { + "field": "ss_price", + "type": "range", + "filtered": false, + "step": 2.5, + "range": { + "low": 5, + "high": 189 + }, + "active": { + "low": 5, + "high": 189 + } + }, + { + "field": "size_dress", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 1 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 1 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 1 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 1 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 589 + }, + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 590 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 590 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 9 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 44 + } + ] + }, + { + "field": "season", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Summer", + "label": "Summer", + "count": 131 + }, + { + "filtered": false, + "value": "Spring", + "label": "Spring", + "count": 100 + }, + { + "filtered": false, + "value": "Fall", + "label": "Fall", + "count": 32 + }, + { + "filtered": false, + "value": "Winter", + "label": "Winter", + "count": 2 + } + ] + }, + { + "field": "pattern", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Print", + "label": "Print", + "count": 109 + }, + { + "filtered": false, + "value": "Stripe", + "label": "Stripe", + "count": 47 + }, + { + "filtered": false, + "value": "Floral", + "label": "Floral", + "count": 27 + }, + { + "filtered": false, + "value": "Embroidered", + "label": "Embroidered", + "count": 22 + }, + { + "filtered": false, + "value": "Plaid", + "label": "Plaid", + "count": 5 + }, + { + "filtered": false, + "value": "Paisley", + "label": "Paisley", + "count": 2 + }, + { + "filtered": false, + "value": "Dot", + "label": "Dot", + "count": 1 + } + ] + }, + { + "field": "dress_length_name", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Mini", + "label": "Mini", + "count": 41 + }, + { + "filtered": false, + "value": "Micro", + "label": "Micro", + "count": 8 + }, + { + "filtered": false, + "value": "Knee", + "label": "Knee", + "count": 14 + }, + { + "filtered": false, + "value": "Floor", + "label": "Floor", + "count": 12 + }, + { + "filtered": false, + "value": "Below Knee", + "label": "Below Knee", + "count": 2 + }, + { + "filtered": false, + "value": "Ankle", + "label": "Ankle", + "count": 9 + }, + { + "filtered": false, + "value": "Above Knee", + "label": "Above Knee", + "count": 28 + }, + { + "filtered": false, + "value": "Above knee", + "label": "Above knee", + "count": 13 + } + ] + }, + { + "field": "size_footwear", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 6 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 12 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 11 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 13 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 12 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 13 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 12 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 13 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 13 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 3 + } + ] + }, + { + "field": "collection", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Above The Fray", + "label": "Above The Fray", + "count": 1 + }, + { + "filtered": false, + "value": "Addicted To Sun", + "label": "Addicted To Sun", + "count": 1 + }, + { + "filtered": false, + "value": "Adventure Ready", + "label": "Adventure Ready", + "count": 1 + }, + { + "filtered": false, + "value": "All In Favor", + "label": "All In Favor", + "count": 1 + }, + { + "filtered": false, + "value": "All The Stripe", + "label": "All The Stripe", + "count": 1 + }, + { + "filtered": false, + "value": "Almost Famous", + "label": "Almost Famous", + "count": 1 + }, + { + "filtered": false, + "value": "Balancing Act", + "label": "Balancing Act", + "count": 1 + }, + { + "filtered": false, + "value": "Basic Instincts", + "label": "Basic Instincts", + "count": 1 + }, + { + "filtered": false, + "value": "Basics Of Love", + "label": "Basics Of Love", + "count": 1 + }, + { + "filtered": false, + "value": "Bazaar Beauty", + "label": "Bazaar Beauty", + "count": 1 + }, + { + "filtered": false, + "value": "Beauty In Believing", + "label": "Beauty In Believing", + "count": 2 + }, + { + "filtered": false, + "value": "Because Summer", + "label": "Because Summer", + "count": 2 + }, + { + "filtered": false, + "value": "Best Of Basics", + "label": "Best Of Basics", + "count": 2 + }, + { + "filtered": false, + "value": "Bloom Or Bust", + "label": "Bloom Or Bust", + "count": 1 + }, + { + "filtered": false, + "value": "Bold Streak", + "label": "Bold Streak", + "count": 1 + }, + { + "filtered": false, + "value": "Breaking Rules", + "label": "Breaking Rules", + "count": 1 + }, + { + "filtered": false, + "value": "C'est Chic", + "label": "C'est Chic", + "count": 1 + }, + { + "filtered": false, + "value": "California Roots", + "label": "California Roots", + "count": 2 + }, + { + "filtered": false, + "value": "Chart Topping", + "label": "Chart Topping", + "count": 4 + }, + { + "filtered": false, + "value": "Chasing Daydreams", + "label": "Chasing Daydreams", + "count": 1 + }, + { + "filtered": false, + "value": "Chic Cityscape", + "label": "Chic Cityscape", + "count": 1 + }, + { + "filtered": false, + "value": "City Of Stars", + "label": "City Of Stars", + "count": 1 + }, + { + "filtered": false, + "value": "Gossip Girl", + "label": "Gossip Girl", + "count": 5 + }, + { + "filtered": false, + "value": "Mine To Keep", + "label": "Mine To Keep", + "count": 1 + }, + { + "filtered": false, + "value": "Routine Favorite", + "label": "Routine Favorite", + "count": 1 + }, + { + "filtered": false, + "value": "Set To Jet", + "label": "Set To Jet", + "count": 1 + }, + { + "filtered": false, + "value": "Stories Don't End", + "label": "Stories Don't End", + "count": 1 + }, + { + "filtered": false, + "value": "Sunny State Of Mind", + "label": "Sunny State Of Mind", + "count": 1 + }, + { + "filtered": false, + "value": "Take A Dip", + "label": "Take A Dip", + "count": 1 + }, + { + "filtered": false, + "value": "The Story", + "label": "The Story", + "count": 3 + } + ] + }, + { + "field": "saturation", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "high", + "label": "high", + "count": 10 + }, + { + "filtered": false, + "value": "low", + "label": "low", + "count": 3 + }, + { + "filtered": false, + "value": "med", + "label": "med", + "count": 10 + } + ] + }, + { + "field": "size_pants", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": null, + "high": 1, + "label": "0-1", + "count": 2 + }, + { + "filtered": false, + "low": 2, + "high": 3, + "label": "2-3", + "count": 2 + }, + { + "filtered": false, + "low": 3, + "high": 4, + "label": "3-4", + "count": 2 + }, + { + "filtered": false, + "low": 4, + "high": 5, + "label": "4-5", + "count": 2 + }, + { + "filtered": false, + "low": 5, + "high": 7, + "label": "5-7", + "count": 2 + }, + { + "filtered": false, + "low": 7, + "high": null, + "label": "7 and up", + "count": 39 + } + ] + } + ], + "sorting": [], + "merchandising": { + "redirect": "", + "content": {}, + "campaigns": [] + }, + "search": { + "query": "" + } +} \ No newline at end of file diff --git a/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page1.json b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page1.json new file mode 100644 index 000000000..1fad15541 --- /dev/null +++ b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page1.json @@ -0,0 +1,2687 @@ +{ + "pagination": { + "totalResults": 4445, + "page": 1, + "pageSize": 30, + "totalPages": 149 + }, + "results": [ + { + "id": "107288", + "mappings": { + "core": { + "uid": "107288", + "sku": "C-BOZ-G7-DAWGS", + "name": "#DawgsOnTop Tank Top", + "url": "/product/C-BOZ-G7-DAWGS", + "addToCartUrl": "/product/C-BOZ-G7-DAWGS", + "price": 15, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4808_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4808_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a4808_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With the sounds of “Glory”, \\\"Hail To Georgia\\\", and the \\\"Battle Hymn of the Bulldog Nation\\\" blaring from the band in the stands and the boys taking the field in their silver britches (sure they’re tights, but tradition is real here in Bulldog Country!), show off your pride for the red and black by wearing this limited edition tank that lets everyone know who you will be rooting for on Saturdays this fall! Unlined. Faintly Sheer. 100% Rayon. Wash by hand in cold water. Lay flat to dry. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 26\\\", Medium measures 26.5\\\", Large measures 27\\\" Bust: Small measures 34\\\", Medium measures 36\\\", Large measures 38\\\"", + "stockMessage": "In stock", + "brand": "Bozzolo", + "popularity": "3968", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d18138b1713161e8e2d242dd826dacc4", + "intellisuggestData": "eJyyKK0sMcplYGBw1nXyj9J1N9d1cQx3D2YwZDBkMGAwMTExZUgvykwBBAAA__-3-gjs", + "intellisuggestSignature": "e4d77aa4e962efb97c6705dcd1e87a0f54c441c9431240206dc45233e4407a49", + "product_type_unigram": "top", + "sales_rank": [ + "3968" + ] + }, + "children": [] + }, + { + "id": "103114", + "mappings": { + "core": { + "uid": "103114", + "sku": "D-CFY00067", + "name": "#HouseGoals Square Pillow", + "url": "/product/D-CFY00067", + "addToCartUrl": "/product/D-CFY00067", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a2029_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a2029_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a2029_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Cuddle up closely with your new love, get the selfie stick out and launch your new romance out to your awaiting public and term it “Housegoals!!! Admiration and a little bit of envy may come your way, but you knew from the moment that you and this pillow laid eyes on one another that it was meant to be!! Show off just how good it really is between you two! People will not be able to get enough when they see you in bed together or out on the patio together!! #decorationinspiration Pillow cover details -Size: 18x18 inches, Material:Linen 40%, Cotton 40%, Poly 30%. Pattern: cream linen on back. All seams are surged for added durability and professional finish An invisible zipper on the bottom for a clean look and easy removal Care instruction: Hand wash or machine wash cold in mild program. Line dry or lay flat to dry. Insert: 100% pure polyester fiberfill filling, Non-allergenic, Machine Washable", + "stockMessage": "In stock", + "brand": "Colorfully Yours", + "popularity": "2587", + "caption": "Captions!" + } + }, + "attributes": { + "id": "e3585914df68ba79ed2ca1980d0b04a7", + "intellisuggestData": "eJyyKK0sMcplYGBw0XV2izQwMDAzZzBkMGIwYDAxMTFlSC_KTAEEAAD__4w5B5Q", + "intellisuggestSignature": "be17dfb70943c6d529278dc94e01883bfc9e1cba38115ce3eda20ba9653f236e", + "product_type_unigram": "pillow", + "sales_rank": [ + "2587" + ] + }, + "children": [] + }, + { + "id": "134760", + "mappings": { + "core": { + "uid": "134760", + "sku": "C-PLC-R2-15002", + "name": "A Brand New Me Blouse", + "url": "/product/C-PLC-R2-15002", + "addToCartUrl": "/product/C-PLC-R2-15002", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3278_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3278_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3278_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When you have to show off how fresh you truly are, leave the old behind and embrace the new - “A Brand New Me” you might say! And nothing goes better than and new you than some new threads! Keep it cute and classic with this blouse and let the world know that sure blouses have been around a long time, but on me, it’s totally brand new! Blouse features a scoop neckline, slight hi-lo hemline, and a V-neckline on the back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "3738", + "caption": "Captions!" + } + }, + "attributes": { + "id": "0b1d8c9710800d563bc0dde0d4e49905", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdYNMtI1NDUwMGIwZDBmMGAwMTExZUgvykwBBAAA__-uVwhq", + "intellisuggestSignature": "bf9c18fe03a2b9386f12115722608458923ebaa9f04397cf3a61bafcf67dfec1", + "product_type_unigram": "blouse", + "sales_rank": [ + "3738" + ] + }, + "children": [] + }, + { + "id": "134685", + "mappings": { + "core": { + "uid": "134685", + "sku": "C-PLC-I5-15002", + "name": "A Brand New Me Blouse", + "url": "/product/C-PLC-I5-15002", + "addToCartUrl": "/product/C-PLC-I5-15002", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3269_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3269_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3269_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When you have to show off how fresh you truly are, leave the old behind and embrace the new - “A Brand New Me” you might say! And nothing goes better than and new you than some new threads! Keep it cute and classic with this blouse and let the world know that sure blouses have been around a long time, but on me, it’s totally brand new! Blouse features a scoop neckline, slight hi-lo hemline, and a V-neckline on the back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "2982", + "caption": "Captions!" + } + }, + "attributes": { + "id": "861c86b6b5c9c5499bd7098a8742a7a1", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1NNU1NDUwMGIwZDBhMGAwMTExZUgvykwBBAAA__-t0Qhl", + "intellisuggestSignature": "58ebe3b682483f8b011e723a4f69299053b33667bd8e2cd291452a87fa68945b", + "product_type_unigram": "blouse", + "sales_rank": [ + "2982" + ] + }, + "children": [] + }, + { + "id": "149238", + "mappings": { + "core": { + "uid": "149238", + "sku": "C-MAC-E4-85306", + "name": "A Bright Idea Green Top", + "url": "/product/C-MAC-E4-85306", + "addToCartUrl": "/product/C-MAC-E4-85306", + "price": 55, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9746_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9746_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a9746_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You’re always coming up with A Bright Idea, and this grand Green Top will make you look even more brilliant! They’ll be impressed be your suggestion and your style. Get ready to blow them away! This top features a peasant style neckline with ties and cutout shoulders. Model is wearing an x-small. • 100% Polyester • Hand Wash Cold • Unlined • Semi Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Macbeth", + "popularity": "1380", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2d645ed7fc89a3281332e1c09fff07d3", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV1dNZ1NdG1MDU2MGMwZDBlMGAwMTExZUgvykwBBAAA__-s-ghh", + "intellisuggestSignature": "766af962c3e163e4cf2c223bfd8055b6baac31a795d98028de6ad7c0d1eca45c", + "product_type_unigram": "top", + "sales_rank": [ + "1380" + ] + }, + "children": [] + }, + { + "id": "132812", + "mappings": { + "core": { + "uid": "132812", + "sku": "C-MAC-P7-85305", + "name": "A Bright Idea Hot Pink Top", + "url": "/product/C-MAC-P7-85305", + "addToCartUrl": "/product/C-MAC-P7-85305", + "price": 55, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9720_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9720_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a9720_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You’re always there to save the day with A Bright Idea, so this Hot Pink Top is here to save your day of what to wear! This bright and becoming top is great for night or day and always illuminates the way! This top features a peasant style neckline with ties and cutout shoulders. Model is wearing an x-small. • 100% Polyester • Hand Wash Cold • Unlined • Semi Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Macbeth", + "popularity": "3327", + "caption": "Captions!" + } + }, + "attributes": { + "id": "56e94ffe415b0cc51684b3bbb00eab8d", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV1dNYNMNe1MDU2MGUwZDBjMGAwMTExZUgvykwBBAAA__-uQwhv", + "intellisuggestSignature": "6983ba488c9ac07d38d73226875c2b0d64c0ea0f65d62573771703757c94820c", + "product_type_unigram": "top", + "sales_rank": [ + "3327" + ] + }, + "children": [] + }, + { + "id": "141564", + "mappings": { + "core": { + "uid": "141564", + "sku": "C-MAC-O6-85304", + "name": "A Bright Idea Orange Top", + "url": "/product/C-MAC-O6-85304", + "addToCartUrl": "/product/C-MAC-O6-85304", + "price": 55, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/unspecified-5.jpeg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/unspecified-5.jpeg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/unspecified-5.jpeg", + "rating": "5", + "ratingCount": "1111", + "description": "You may have always thought it’d be cool if a lightbulb would appear over your head when you had A Bright Idea Orange Top. We think that’d be pretty sweet too. But we have a more feasible and stylish suggestion with this bright top. As often as you’re rolling out good ideas, it’d be more logical for you to just wear the “lightbulb” all day. This top features a peasant style neckline with ties and cutout shoulders. Model is wearing an x-small. • 100% Polyester • Hand Wash Cold • Unlined • Semi Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Macbeth", + "popularity": "214", + "caption": "Captions!" + } + }, + "attributes": { + "id": "6c6ff59e2069b6f928f17eafb2101309", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV1dNb1N9O1MDU2MGEwZDBnMGAwMTExZUgvykwBBAAA__-uEAht", + "intellisuggestSignature": "93145a86e03d44b7c3c77ce627d6bf8bcaa261220755e7cb008a00009c7be9a5", + "product_type_unigram": "top", + "sales_rank": [ + "214" + ] + }, + "children": [] + }, + { + "id": "135603", + "mappings": { + "core": { + "uid": "135603", + "sku": "C-PLC-E2-15601", + "name": "A Bright Spring Dress", + "url": "/product/C-PLC-E2-15601", + "addToCartUrl": "/product/C-PLC-E2-15601", + "price": 44, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4276_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4276_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4276_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a dress as radiant as this and a smile as dazzling as yours, it’s guaranteed to be “A Bright Spring.” You might want to get some shades while you’re at it. A-line dress features mock turtleneck with a keyhole at neckline. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "1080", + "caption": "Captions!" + } + }, + "attributes": { + "id": "c2bf465b2448caf446c5bbb01a711cbd", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdZ1NdI1NDUzMGQwZLBgMGAwMTExZUgvykwBBAAA__-twQhn", + "intellisuggestSignature": "5407c29a5247e2dc67d6861190897e74a34a1ac3190609815bcb7122da2f232d", + "product_type_unigram": "dress", + "sales_rank": [ + "1080" + ] + }, + "children": [] + }, + { + "id": "122354", + "mappings": { + "core": { + "uid": "122354", + "sku": "C-ARK-W8-4775T", + "name": "A Brilliant Spark Top", + "url": "/product/C-ARK-W8-4775T", + "addToCartUrl": "/product/C-ARK-W8-4775T", + "price": 53.5, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6045_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6045_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a6045_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If there is some sudden heat or a fire breaking out, then it can only be attributed to the “Brilliant Spark” of this top!! Sequined and sensational, there is no way that you will be overshadowed by anyone!! Like a diamond, you and this top together is a brilliant coincidence of VVS1 quality - pretty flawless!! Short sleeve sequin top features a keyhole on the back with a hook and eye closure. Fully Lined. 100% Polyester. Dry clean only. Made in China. Model is wearing a small. FIT: True to size. LENGTH: Crop top sits above the belly button! Size Small measures 18\\\" from shoulder to hem, Medium measures 18.5\\\", Large measures 19\\\" BUST: Contains some room for movement! Small measures 38\\\", Medium measures 40\\\", Large measures 42\\\" UNDERGARMENTS: May be worn with standard undergarments! FABRIC: Full sequins, contains no stretch.", + "stockMessage": "In stock", + "brand": "Ark & Co", + "popularity": "2496", + "caption": "Captions!" + } + }, + "attributes": { + "id": "25576e3c95ee589d0966685004739542", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUM8tYNt9A1MTc3DWEwZLBkMGAwMTExZUgvykwBBAAA__-y_Qit", + "intellisuggestSignature": "424672bfd62cf810e9113153df8ebbc4cb79dc9385db660ee2e8fe6f52a978c5", + "product_type_unigram": "top", + "sales_rank": [ + "2496" + ] + }, + "children": [] + }, + { + "id": "121613", + "mappings": { + "core": { + "uid": "121613", + "sku": "C-ARK-G7-4775T", + "name": "A Brilliant Spark Top", + "url": "/product/C-ARK-G7-4775T", + "addToCartUrl": "/product/C-ARK-G7-4775T", + "price": 53.5, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3535_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3535_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3535_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If there is some sudden heat or a fire breaking out, then it can only be attributed to the “Brilliant Spark” of this top!! Sequined and sensational, there is no way that you will be overshadowed by anyone!! Like a diamond, you and this top together is a brilliant coincidence of VVS1 quality - pretty flawless!! Short sleeve sequin top features a keyhole on the back with a hook and eye closure. Fully Lined. 100% Polyester. Dry clean only. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 18\\\", Medium measures 18.5\\\", Large measures 19\\\" Bust: Small measures 38\\\", Medium measures 40\\\", Large measures 42\\\"", + "stockMessage": "In stock", + "brand": "Ark & Co", + "popularity": "4336", + "caption": "Captions!" + } + }, + "attributes": { + "id": "0802b2480b32dbad75458c12f21c1649", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUM8tZ1N9c1MTc3DWEwZDA0YDBgMDExMWVIL8pMAQQAAP__uVsIxA", + "intellisuggestSignature": "6e36cdc3bec849a2ed939fd71d6fc8dc0ffd8addb77033f38c472adcb4260f4a", + "product_type_unigram": "top", + "sales_rank": [ + "4336" + ] + }, + "children": [] + }, + { + "id": "121787", + "mappings": { + "core": { + "uid": "121787", + "sku": "C-FT-W1-13751", + "name": "A Different Light Dress", + "url": "/product/C-FT-W1-13751", + "addToCartUrl": "/product/C-FT-W1-13751", + "price": 32.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3225_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3225_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3225_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Shift dress with embroidered detail on the front and back. Semi Lined. Faintly Sheer. Self: 100% Rayon. Contrast A: 95% Cotton, 5% Spandex. Contrast B: 65% Cotton, 35% Polyester. Lining: 100% Polyester exclusive of trim. Wash by hand in cold water. Lay flat to dry. Do not bleach. Made in China. Model is wearing a small. FIT: This garment has a loose fit and is true to size! LENGTH: Sits above the knee. Small measures 32\\\" from shoulder to hem. Medium measures 32.5\\\", Large measures 33\\\" BUST: This garment fits loose around the bust. Small measures 34\\\", Medium measures 36\\\", Large measures 38\\\" WAIST: Loose-allows room in the waist! HIP: Loose-allows room for hips! UNDERGARMENTS: May be worn with a standard bra or strapless! FABRIC: Fabric is lightweight and flowy. Little to no stretch! PRODUCT MEASUREMENTS: Each item is measured \\\"relaxed\\\" on a flat surface! Please consider the stretch of the fabric, as very stretchy fabric may give an extra inch or more!", + "stockMessage": "In stock", + "brand": "Flying Tomato", + "popularity": "15", + "caption": "Captions!" + } + }, + "attributes": { + "id": "6f3d6961bf5a9cfd8cb854a0c31cdf8e", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUL0Q031DU0Njc1ZDBkMDRkMGAwMTExZUgvykwBBAAA__-s-Ahh", + "intellisuggestSignature": "2ad40b8594dc118a8c2d328cc0b63fe9403453ae01b342e20f4ad66b57d699c1", + "product_type_unigram": "dress", + "sales_rank": [ + "15" + ] + }, + "children": [] + }, + { + "id": "126178", + "mappings": { + "core": { + "uid": "126178", + "sku": "C-LLV-G2-V9362", + "name": "A Fine Line Top", + "url": "/product/C-LLV-G2-V9362", + "addToCartUrl": "/product/C-LLV-G2-V9362", + "price": 28.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0461_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0461_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a0461_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When you have on this top, you will come to find that there is “A Fine Line” between being stylish and chic! Luckily with this on time and online top, it doesn’t matter if you pick a side as you are more than “Fine” straddling the “Line”!! Striped top features a scoop neckline, short dolman sleeves, and lace on the hemline. • 90% Cotton, 10% Polyester • Hand Wash Cold • Unlined FIT: True to size BUST: Boxy, lots of room. Size small measures 56\\\", Medium measures 58\\\", Large measures 60\\\" LENGTH: Hi-lo hem, longer in the back. Size small measures 25\\\" from shoulder to hem, Medium measures 25.5\\\", Large measures 26\\\" Back Length: Small measures 28.5\\\", Medium measures 29\\\", Large measures 29.5\\\" WAIST: Boxy, lots of room UNDERGARMENTS: Can be worn with a standard bra FABRIC: Has some give Model is 5'7\\\" and measures 32\\\" bust, 25\\\" waist. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "LLove", + "popularity": "2461", + "caption": "Captions!" + } + }, + "attributes": { + "id": "36c067d6e9a984a4a3249f4f9834530b", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXxCdN1N9INszQ2M2IwZDA0YjBgMDExMWVIL8pMAQQAAP__uzII0A", + "intellisuggestSignature": "0313f1a41bc1408356dc1392885f49019157f84650d65078f65b187a839d96c7", + "product_type_unigram": "top", + "sales_rank": [ + "2461" + ] + }, + "children": [] + }, + { + "id": "127379", + "mappings": { + "core": { + "uid": "127379", + "sku": "C-LLV-I3-V9380", + "name": "A Floral Affair Dress", + "url": "/product/C-LLV-I3-V9380", + "addToCartUrl": "/product/C-LLV-I3-V9380", + "price": 35, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7028_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7028_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7028_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If your love for anything “Floral” has made you embark on this “Affair”, well there's no turning back now for this is one dress that the love of your life is sure to want to catch you caught up with!! This may not smell like your favorite flower, yet you are going to get much more from this feminine and floral number!! Compliments that will never die and being placed on a style pedestal for all to admire are sure to be starters!! Floral dress features a V-neckline with an inverted pleat, lace detail on the sleeves, and a small keyhole on the back with a button loop closure. • 90% Cotton, 10% Polyester • Hand Wash Cold • Fully Lined • Semi Sheer Model is 5'3\\\" and measures 32\\\" bust and 26\\\" waist. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "LLove", + "popularity": "2330", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b80a11f289f77b3bad3dbc642ca32a31", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXxCdP1NNYNszS2MGAwZDA0ZjBgMDExMWVIL8pMAQQAAP__u4sI1A", + "intellisuggestSignature": "a924f429997b7ce6cf35db2c1de4ef12f6d65f3d8e2bfd3e3d1a1357721e89ed", + "product_type_unigram": "dress", + "sales_rank": [ + "2330" + ] + }, + "children": [] + }, + { + "id": "163603", + "mappings": { + "core": { + "uid": "163603", + "sku": "C-OLV-I5-127LD", + "name": "A Heart's Desire Agave Blue Dress", + "url": "/product/C-OLV-I5-127LD", + "addToCartUrl": "/product/C-OLV-I5-127LD", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5327_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5327_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5327_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You’ll be setting hearts on fire when you’ve got on the A Heart's Desire Agave Blue Dress! You’ll be dangerously hot! This sleeveless dress features a mock neck with hook and eye closure and a keyhole on the front and back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "1018", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d4311de608feda3e65ec7abf47644eac", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdP1NNU1NDL3cWEwZDA0YTBgMDExMWVIL8pMAQQAAP__u5II2g", + "intellisuggestSignature": "3f9cee03f06925270548829e9bd8e1b0bba3ba8fca99ef3ac0efa01d8e8691a9", + "product_type_unigram": "dress", + "sales_rank": [ + "1018" + ] + }, + "children": [] + }, + { + "id": "162907", + "mappings": { + "core": { + "uid": "162907", + "sku": "C-OLV-Y6-127LD", + "name": "A Heart's Desire Mustard Yellow Dress", + "url": "/product/C-OLV-Y6-127LD", + "addToCartUrl": "/product/C-OLV-Y6-127LD", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5282_3_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5282_3_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5282_3_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A Heart's Desire will keep on longing, so you might as well satisfy it with this lovely Mustard Yellow Dress! You’ll be able to ease your mind and look amazing! It’s a win-win! This sleeveless dress features a mock neck with hook and eye closure and a keyhole on the front and back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "627", + "caption": "Captions!" + } + }, + "attributes": { + "id": "dc236f748362d50b06512d16c3d4ddf0", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdONNNM1NDL3cWEwZDA0ZTBgMDExMWVIL8pMAQQAAP__vUcI7A", + "intellisuggestSignature": "254703092f8b617a8e7baa33ba31b8ef7f4485661c92f2b41c67a0fc995aeb6f", + "product_type_unigram": "dress", + "sales_rank": [ + "627" + ] + }, + "children": [] + }, + { + "id": "161290", + "mappings": { + "core": { + "uid": "161290", + "sku": "C-OLV-V6-127LD", + "name": "A Heart's Desire Plum Purple Dress", + "url": "/product/C-OLV-V6-127LD", + "addToCartUrl": "/product/C-OLV-V6-127LD", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a2209_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a2209_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a2209_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "As gorgeous as you’ll look in this Dress In Plum Purple, he’ll be calling you A Heart's Desire because he’s always thinking of you! You’re always on his mind and keeping him up late, and he can’t even speak when you walk by! This sleeveless dress features a mock neck with hook and eye closure and a keyhole on the front and back. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Imported", + "stockMessage": "In stock", + "brand": "Olivaceous", + "popularity": "1386", + "caption": "Captions!" + } + }, + "attributes": { + "id": "bc070e0e3ead53c20b90f83bc3abc0fb", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX3CdMNM9M1NDL3cWEwZDA0YzBgMDExMWVIL8pMAQQAAP__vQkI6g", + "intellisuggestSignature": "b09ed300fe618ccb381d2cc5fef35ec1cbf0c8187f20c4e7a8d5ce2405502c88", + "product_type_unigram": "dress", + "sales_rank": [ + "1386" + ] + }, + "children": [] + }, + { + "id": "153969", + "mappings": { + "core": { + "uid": "153969", + "sku": "C-PLC-P5-57301", + "name": "A Little Sun Pink Floral Print Off-The-Shoulder Top", + "url": "/product/C-PLC-P5-57301", + "addToCartUrl": "/product/C-PLC-P5-57301", + "price": 36, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5396_4_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5396_4_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5396_4_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Soak up A Little Sun and lots of style in this Pink Floral Print Off-The-Shoulder Top. This crop top features an off-the-shoulder neckline and short sleeves. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "3361", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b8a747752563067f4d4533ff7fda8380", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdYNMNU1NTc2MGQwZDA0ZzBgMDExMWVIL8pMAQQAAP__t4sIqA", + "intellisuggestSignature": "b7906b4ba7e81b4eb2109dac1c80a64f251a26463e1067fc88ce05ce5ca97d65", + "product_type_unigram": "top", + "sales_rank": [ + "3361" + ] + }, + "children": [] + }, + { + "id": "111858", + "mappings": { + "core": { + "uid": "111858", + "sku": "H-ICO-Y7-H3105", + "name": "A Perfect Knit Headband", + "url": "/product/H-ICO-Y7-H3105", + "addToCartUrl": "/product/H-ICO-Y7-H3105", + "price": 12, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4566_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4566_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4566_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Why go for something fab yet flopulous when you can wear this headband that is a “Perfect Knit”! Not only does it fit good, it feels and goods amazing as well! Open knit, braided headband. Made in China. Circumference measures 18\\\" Width measures 3\\\"", + "stockMessage": "In stock", + "brand": "i.cco", + "popularity": "3443", + "caption": "Captions!" + } + }, + "attributes": { + "id": "333701be176296ea5b4bf4b10fe0c2b2", + "intellisuggestData": "eJyyKK0sMcplYGDw0PV09teNNNf1MDY0MGUwZDC0YDBgMDExMWVIL8pMAQQAAP__ui8Ixg", + "intellisuggestSignature": "ded785c4d0230deb082edc4816674648cc29955af1abced8c1be182746488483", + "product_type_unigram": "headband", + "sales_rank": [ + "3443" + ] + }, + "children": [] + }, + { + "id": "176943", + "mappings": { + "core": { + "uid": "176943", + "sku": "D-UT-38430", + "name": "A Pineapple A Day Keeps The Doctor Away Large Gold Shelfie", + "url": "/product/D-UT-38430", + "addToCartUrl": "/product/D-UT-38430", + "price": 54, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_5627_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_5627_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_3_5627_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "It's true, eating your fruits will keep you in good health but decorating with fruit is the true key to happiness! Decorate a bookshelf or side table with our A Pineapple A Day Keeps The Doctor Away shelfie ! Finished in glossy white, this decorative pineapple is simple, yet striking. Display it among tropical decor as a fun accent piece. Porcelain pineapple with dimpled finish. Measures 6.00\\\"x11.00\\\"H", + "stockMessage": "In stock", + "brand": "Urban Trends", + "popularity": "1785", + "caption": "Captions!" + } + }, + "attributes": { + "id": "7387100c358b03b377195231d50275e1", + "intellisuggestData": "eJyyKK0sMcplYGBw0Q0N0TW2MDE2YDBkMLRkMGAwMTExZUgvykwBBAAA__-TngfF", + "intellisuggestSignature": "fe50737b623f5862e78435dea34694f655ef97ba0e43f295efa2a0712cc5f8c4", + "product_type_unigram": "shelfie", + "sales_rank": [ + "1785" + ] + }, + "children": [] + }, + { + "id": "125453", + "mappings": { + "core": { + "uid": "125453", + "sku": "C-HAY-I3-H3107", + "name": "A Previous Love Tunic Dress", + "url": "/product/C-HAY-I3-H3107", + "addToCartUrl": "/product/C-HAY-I3-H3107", + "price": 34.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a7401_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a7401_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a7401_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Like no other and always worth holding on to, “A Precious Love” like this is something that everyone you comes across the two of you cannot help but notice! Step out on the street in this embroidered and chic tunic dress, it will be evident that you are totally dressed up in love!!! Tunic features a lace up front with a tie at the neckline, embroidered chest panel, and long sleeves with elastic wrists. • 55% Cotton, 45% Polyester • Hand Wash Cold • Unlined • Faintly Sheer", + "stockMessage": "In stock", + "brand": "Hayden", + "popularity": "3522", + "caption": "Captions!" + } + }, + "attributes": { + "id": "b3672677e4f507dab1fcfb2657407d42", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVwjNT1NNb1MDY0MGcwZDAyYDBgMDExMWVIL8pMAQQAAP__uCcIrw", + "intellisuggestSignature": "6b99f59ccd28ef7cba1ff62ac5261835231dd94130fe65f632661f6a04184510", + "product_type_unigram": "dress", + "sales_rank": [ + "3522" + ] + }, + "children": [] + }, + { + "id": "107085", + "mappings": { + "core": { + "uid": "107085", + "sku": "C-EC-G7-673BZ", + "name": "A Print In My Eye Dress", + "url": "/product/C-EC-G7-673BZ", + "addToCartUrl": "/product/C-EC-G7-673BZ", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a0594_4_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a0594_4_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a0594_4_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "No your eyes will not be playing any tricks on you as you see “A Print In My Eye”! Graphic and stylish, you will be the one that everyone turns to look and see as you strut down the street in the carefree and pleasing to the eye dress!!! Dress features a V-neckline with an inverted pleat and darted bust, and adjustable spaghetti straps leading to a strappy back. Unlined. Shell: 100% Polyester. Contrast: 100% Rayon. Wash by hand in cold water. Lay flat to dry. Iron low. Do not bleach. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 28.5\\\", Medium measures 28.5\\\", Large measures 29\\\" Bust: Small measures 35\\\", Medium measures 37\\\", Large measures 42\\\"", + "stockMessage": "In stock", + "brand": "En Creme", + "popularity": "1362", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2ecf5491f9183bc85d76dfc0078563ad", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV11nU31zUzN3aKYjBkMDJkMGAwMTExZUgvykwBBAAA__-uagiB", + "intellisuggestSignature": "12e14bed1fd48358eefee7f7ad327d0e5936e822bb7bcbdc31aa2941e3f1ec23", + "product_type_unigram": "dress", + "sales_rank": [ + "1362" + ] + }, + "children": [] + }, + { + "id": "148566", + "mappings": { + "core": { + "uid": "148566", + "sku": "C-EAS-W1-T2353", + "name": "A Sense Of Serenity White Top", + "url": "/product/C-EAS-W1-T2353", + "addToCartUrl": "/product/C-EAS-W1-T2353", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0836_3_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0836_3_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0836_3_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Bring A Sense of Serenity with you wherever you go with this ethereal White Top. You’ll look and feel as divine as a sweet dream. Whimsical and heavenly, you’ll be a breath of fresh air. This short sleeve top features a scoop neckline with crochet trim and ruffle sleeves. Model is wearing a small. • Self: 100% Rayon • Contrast: 100% Cotton • Hand Wash Cold • Unlined • Sheer • Imported", + "stockMessage": "In stock", + "brand": "Easel", + "popularity": "921", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a7ca5877b9d518d64144416f20c62dac", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV1DNYNN9QNMTI2NWYwZDAyYjBgMDExMWVIL8pMAQQAAP__uagIwg", + "intellisuggestSignature": "e0b0402911569a5f47d826df0616e7bd96531da3c95f5d1339a04c641104d3c0", + "product_type_unigram": "top", + "sales_rank": [ + "921" + ] + }, + "children": [] + }, + { + "id": "132305", + "mappings": { + "core": { + "uid": "132305", + "sku": "H-JO-T3-18064", + "name": "A Simple Feeling Hat", + "url": "/product/H-JO-T3-18064", + "addToCartUrl": "/product/H-JO-T3-18064", + "price": 23, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0131_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0131_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a0131_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "“A Simple Feeling” often holds a lot of weight. Not to be overlooked, your gut instinct won’t lead you astray. Taking a leap of faith often starts with one of these little feelings. So when you have a feeling that today is going to be a drag, put on something cute and turn that prediction around. Slip this hat on and go out the door knowing that you’re in charge of how the day goes (or at least how you react to it). Fedora hat features a band with a buckle around the brim.", + "stockMessage": "In stock", + "brand": "Joia", + "popularity": "2506", + "caption": "Captions!" + } + }, + "attributes": { + "id": "f479887d5ba75053943c6f3adab68bcc", + "intellisuggestData": "eJyyKK0sMcplYGDw0PXy1w0x1jW0MDAzYTBkMDJmMGAwMTExZUgvykwBBAAA__-tqghp", + "intellisuggestSignature": "14d87ca8a564625c5d93a8eefca7d3651c4b6f1dd09ae6b8f018669f697349a2", + "product_type_unigram": "hat", + "sales_rank": [ + "2506" + ] + }, + "children": [] + }, + { + "id": "99688", + "mappings": { + "core": { + "uid": "99688", + "sku": "C-BP-G7-B1469", + "name": "A Simple Necessity Slip", + "url": "/product/C-BP-G7-B1469", + "addToCartUrl": "/product/C-BP-G7-B1469", + "price": 22, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a1004_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a1004_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a1004_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Perfume. Lipstick. One good set of pearls. A pair of killer black heels. A Little Black Dress. There are some things in a woman's life that are on an elite list titled, 'The Bare Essentials' You know, in case anyone of the opposite sex is to question the need for such items. Our Simple Necessity Slip, is right up there alongside a backup bottle of expensive red wine, and a great versatile handbag. This fitted slip is faintly sheer and features a scoop neckline and spaghetti straps. Unlined. 95% Polyester, 5% Spandex. Wash by hand in cold water. Lay flat to dry. Made in the U.S.A. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 33\\\", Medium measures 33.5\\\", Large measures 35\\\" Bust: Small measures 32\\\", Medium measures 34\\\", Large measures 36\\\" Hips: Small measures 34\\\", Medium measures 36\\\", Large measures 38\\\"", + "stockMessage": "In stock", + "brand": "Blu Pepper", + "popularity": "2045", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2ac66c1a89da3a8fd2c112b1a845608c", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUK0HU313UyNDGzZDBkMDJhMGAwMTExZUgvykwBBAAA__-tBAho", + "intellisuggestSignature": "43b9a93cfccd623f244e54e1294870d5b4861811ce97d69e8f56a3a71bc4e198", + "product_type_unigram": "slip", + "sales_rank": [ + "2045" + ] + }, + "children": [] + }, + { + "id": "165574", + "mappings": { + "core": { + "uid": "165574", + "sku": "F-BAM-B3-SH60S", + "name": "A Step Ahead Cognac Caged Heels", + "url": "/product/F-BAM-B3-SH60S", + "addToCartUrl": "/product/F-BAM-B3-SH60S", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a2767_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a2767_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a2767_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A Step Ahead and never looking back is how you’ll be in these cute Cognac Caged Heels. You’re always ahead of the game! These caged heels feature a strappy laser cut design, open toe, zipper on the heel cuff, and a stacked heel. • Padded Insole • Non-Skid Sole • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "Bamboo", + "popularity": "391", + "caption": "Captions!" + } + }, + "attributes": { + "id": "300dea62006a674b3b9c46f296708749", + "intellisuggestData": "eJyyKK0sMcplYGBw03Vy9NV1MtYN9jAzCGYwZDAyZTBgMDExMWVIL8pMAQQAAP__uysI3w", + "intellisuggestSignature": "b405c67bb368e81c55d911183f17df9cc250f5dabdc502b745de3d7835329524", + "product_type_unigram": "heels", + "sales_rank": [ + "391" + ] + }, + "children": [] + }, + { + "id": "165322", + "mappings": { + "core": { + "uid": "165322", + "sku": "F-BAM-T2-SH60S", + "name": "A Step Ahead Tan Caged Heels", + "url": "/product/F-BAM-T2-SH60S", + "addToCartUrl": "/product/F-BAM-T2-SH60S", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3145_3_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3145_3_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a3145_3_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Even if you’ve got small strides, you’ll always be A Step Ahead when you’re wearing these high on style and height Tan Caged Heels! They’ll be struggling to keep up with you! My, how the tables have turned! These caged heels feature a strappy laser cut design, open toe, zipper on the heel cuff, and a stacked heel. • Padded Insole • Non-Skid Sole • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "Bamboo", + "popularity": "1256", + "caption": "Captions!" + } + }, + "attributes": { + "id": "fa271cd6457f54b8e966dd59b8f94a89", + "intellisuggestData": "eJyyKK0sMcplYGBw03Vy9NUNMdIN9jAzCGYwZDAyYzBgMDExMWVIL8pMAQQAAP__vOII8Q", + "intellisuggestSignature": "93d6cc677023c986ad5db588a6bdd521bd1c3899630f71568c39d50afb32db4e", + "product_type_unigram": "heels", + "sales_rank": [ + "1256" + ] + }, + "children": [] + }, + { + "id": "114127", + "mappings": { + "core": { + "uid": "114127", + "sku": "A-JO-I4-H1031", + "name": "A Stitch In Time Leg Warmers", + "url": "/product/A-JO-I4-H1031", + "addToCartUrl": "/product/A-JO-I4-H1031", + "price": 22, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7914_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7914_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7914_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Time is long but life is short. In time things will fall into place, and by that we mean in A Stitch In Time these leg warmers will be giving your ankles the attention they have always deserved. Leg warmers feature open knit with knit detail. 65% Acrylic, 35% Wool. Length measures 16\\\"", + "stockMessage": "In stock", + "brand": "Joia", + "popularity": "2522", + "caption": "Captions!" + } + }, + "attributes": { + "id": "cc5c6af0c4b8e4bc2785ecb7490f58b9", + "intellisuggestData": "eJyyKK0sMcplYGBw1PXy1_U00fUwNDA2ZDBkMDJnMGAwMTExZUgvykwBBAAA__-tCQhm", + "intellisuggestSignature": "478a492054ddd9ea1f573b6a0f16acd2b4258dd3544a3dcffc6f13641f448bf9", + "product_type_unigram": "warmers", + "sales_rank": [ + "2522" + ] + }, + "children": [] + }, + { + "id": "108958", + "mappings": { + "core": { + "uid": "108958", + "sku": "C-FT-W2-J1410", + "name": "A Sudden Chill Vest", + "url": "/product/C-FT-W2-J1410", + "addToCartUrl": "/product/C-FT-W2-J1410", + "price": 48, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6180_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6180_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a6180_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "As “A Sudden Chill” overtakes you this season, feel free to bring this striped vest to keep you warm! Keeping it chic and graphic in its color combo, you are sure to heat to any style situation!! Striped faux fur vest. Fully Lined. Self: 80% Acrylic, 20% Polyester. Lining: 100% Polyester. Wash by hand in cold water. Lay flat to dry. Do not bleach. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 21\\\", Medium measures 22\\\", Large measures 23\\\" Bust: Small measures 40\\\", Medium measures 42\\\", Large measures 44\\\"", + "stockMessage": "In stock", + "brand": "Flying Tomato", + "popularity": "2662", + "caption": "Captions!" + } + }, + "attributes": { + "id": "1ed3988bec40ee9747b7be8a3db793ab", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUL0Q030vUyNDE0YDBkMLJgMGAwMTExZUgvykwBBAAA__-u2wh5", + "intellisuggestSignature": "3ed643efad315ef25a8ca9a57dfdcd714c93e5feb36fa718482fe5bf51b0ce2f", + "product_type_unigram": "vest", + "sales_rank": [ + "2662" + ] + }, + "children": [] + }, + { + "id": "111822", + "mappings": { + "core": { + "uid": "111822", + "sku": "F-BMR-T5-YLA11", + "name": "A Vogue Idea Booties", + "url": "/product/F-BMR-T5-YLA11", + "addToCartUrl": "/product/F-BMR-T5-YLA11", + "price": 32.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5206_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5206_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5206_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Forget about opening up your favorite novel for an idea about style, when you can look to fashion’s Bible for “A Vogue Idea”! Along with hemlines dropping and outright glamour being ideas for the season, look to this bootie to be the one that will get you through the season without being out of style! From the first time this is on your feet, you will find yourself to subscribe to this bootie over and over again! Faux suede bootie features elastic in the sides, a chunky heel, and lined with faux fur. All manmade materials. Made in China. Shaft measures 8\\\" Platform measures 0.5\\\" Heel measures 4\\\"", + "stockMessage": "In stock", + "brand": "Bella Marie", + "popularity": "458", + "caption": "Captions!" + } + }, + "attributes": { + "id": "10e2c35fb2d58ecc1dea272efb25835f", + "intellisuggestData": "eJyyKK0sMcplYGBw03XyDdINMdWN9HE0NGQwZDCyZDBgMDExMWVIL8pMAQQAAP__vosI_A", + "intellisuggestSignature": "ef3e7ad6e304a63f1c9fb5889848e73ab4fd3605bd369df4d9b56ae93308211a", + "product_type_unigram": "booties", + "sales_rank": [ + "458" + ] + }, + "children": [] + }, + { + "id": "106829", + "mappings": { + "core": { + "uid": "106829", + "sku": "F-MDS-R6-ARIVA", + "name": "A-list Platform Heels", + "url": "/product/F-MDS-R6-ARIVA", + "addToCartUrl": "/product/F-MDS-R6-ARIVA", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3168_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3168_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a3168_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A few starlets and pop icons will have to step to the side as you take your place on the “A-List” and be the most sought after woman in the world! And with having your every move followed, make sure that you look the part! Speaking of follow, let the paparazzi and your faithful fashion get a glance at your shoe game! With these on your feet you may not be able to get too far without your feet giving in, but you truly will be at the top of your game and look good while doing it! Suede heels feature and open toe and adjustable ankle strap. All manmade materials. Made in China. Heel measures 5.5\\\" Platform measures 1.5\\\"", + "stockMessage": "In stock", + "brand": "My Delicious", + "popularity": "2737", + "caption": "Captions!" + } + }, + "attributes": { + "id": "0c3b5f44f2fa329ed0492bdf672b01e4", + "intellisuggestData": "eJyyKK0sMcplYGBw0_V1CdYNMtN1DPIMc2QwZDA2YDBgMDExMWVIL8pMAQQAAP__wVUJIQ", + "intellisuggestSignature": "e1751654470db6d0a4592164f0d7247ad80770e3efb9e2101d6f26b2ac614fd2", + "product_type_unigram": "heels", + "sales_rank": [ + "2737" + ] + }, + "children": [] + } + ], + "filters": [], + "facets": [ + { + "field": "brand", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "2B Clothing", + "label": "2B Clothing", + "count": 6 + }, + { + "filtered": false, + "value": "2Hearts", + "label": "2Hearts", + "count": 1 + }, + { + "filtered": false, + "value": "4 Sienna", + "label": "4 Sienna", + "count": 11 + }, + { + "filtered": false, + "value": "5th Avenue", + "label": "5th Avenue", + "count": 34 + }, + { + "filtered": false, + "value": "12 PM by Mon Ami", + "label": "12 PM by Mon Ami", + "count": 10 + }, + { + "filtered": false, + "value": "36point5", + "label": "36point5", + "count": 1 + }, + { + "filtered": false, + "value": "143 Story", + "label": "143 Story", + "count": 6 + }, + { + "filtered": false, + "value": "Aakaa", + "label": "Aakaa", + "count": 25 + }, + { + "filtered": false, + "value": "Activusa", + "label": "Activusa", + "count": 3 + }, + { + "filtered": false, + "value": "Adriana", + "label": "Adriana", + "count": 1 + }, + { + "filtered": false, + "value": "Adrienne", + "label": "Adrienne", + "count": 153 + }, + { + "filtered": false, + "value": "After Market", + "label": "After Market", + "count": 15 + }, + { + "filtered": false, + "value": "Amazing Grace", + "label": "Amazing Grace", + "count": 1 + }, + { + "filtered": false, + "value": "Amazing Spirit", + "label": "Amazing Spirit", + "count": 3 + }, + { + "filtered": false, + "value": "Amazing Sport", + "label": "Amazing Sport", + "count": 8 + }, + { + "filtered": false, + "value": "American Bazi", + "label": "American Bazi", + "count": 3 + }, + { + "filtered": false, + "value": "Amor Us", + "label": "Amor Us", + "count": 1 + }, + { + "filtered": false, + "value": "Anama", + "label": "Anama", + "count": 11 + }, + { + "filtered": false, + "value": "Andrea Bijoux", + "label": "Andrea Bijoux", + "count": 2 + }, + { + "filtered": false, + "value": "ANM", + "label": "ANM", + "count": 4 + }, + { + "filtered": false, + "value": "Anne Michelle", + "label": "Anne Michelle", + "count": 14 + }, + { + "filtered": false, + "value": "Anzell", + "label": "Anzell", + "count": 11 + }, + { + "filtered": false, + "value": "Ark & Co", + "label": "Ark & Co", + "count": 11 + }, + { + "filtered": false, + "value": "Aryeh", + "label": "Aryeh", + "count": 11 + }, + { + "filtered": false, + "value": "Audrey 3+1", + "label": "Audrey 3+1", + "count": 15 + }, + { + "filtered": false, + "value": "Audry 3+1", + "label": "Audry 3+1", + "count": 2 + }, + { + "filtered": false, + "value": "Aura L'atiste", + "label": "Aura L'atiste", + "count": 49 + }, + { + "filtered": false, + "value": "Ayepeach", + "label": "Ayepeach", + "count": 14 + }, + { + "filtered": false, + "value": "B. Sharp", + "label": "B. Sharp", + "count": 3 + }, + { + "filtered": false, + "value": "Bamboo", + "label": "Bamboo", + "count": 71 + }, + { + "filtered": false, + "value": "Ban.do", + "label": "Ban.do", + "count": 3 + }, + { + "filtered": false, + "value": "ban.do", + "label": "ban.do", + "count": 12 + }, + { + "filtered": false, + "value": "Banana", + "label": "Banana", + "count": 4 + }, + { + "filtered": false, + "value": "BB Dakota", + "label": "BB Dakota", + "count": 21 + }, + { + "filtered": false, + "value": "BB Daktota", + "label": "BB Daktota", + "count": 1 + }, + { + "filtered": false, + "value": "Beach Joy", + "label": "Beach Joy", + "count": 20 + }, + { + "filtered": false, + "value": "Beautifully", + "label": "Beautifully", + "count": 1 + }, + { + "filtered": false, + "value": "Beauty Creations", + "label": "Beauty Creations", + "count": 2 + }, + { + "filtered": false, + "value": "Bella Marie", + "label": "Bella Marie", + "count": 5 + }, + { + "filtered": false, + "value": "Bien Bien", + "label": "Bien Bien", + "count": 1 + }, + { + "filtered": false, + "value": "Blu Pepper", + "label": "Blu Pepper", + "count": 18 + }, + { + "filtered": false, + "value": "Blushing Heart", + "label": "Blushing Heart", + "count": 1 + }, + { + "filtered": false, + "value": "BLVD", + "label": "BLVD", + "count": 7 + }, + { + "filtered": false, + "value": "Bo Bel/Hello Miss", + "label": "Bo Bel/Hello Miss", + "count": 1 + }, + { + "filtered": false, + "value": "Bozzolo", + "label": "Bozzolo", + "count": 12 + }, + { + "filtered": false, + "value": "Breckelle's", + "label": "Breckelle's", + "count": 91 + }, + { + "filtered": false, + "value": "Brekelle's", + "label": "Brekelle's", + "count": 10 + }, + { + "filtered": false, + "value": "BSharp", + "label": "BSharp", + "count": 2 + }, + { + "filtered": false, + "value": "Buddy Love", + "label": "Buddy Love", + "count": 9 + }, + { + "filtered": false, + "value": "Cals Collection", + "label": "Cals Collection", + "count": 1 + } + ] + }, + { + "field": "color_family", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Blue", + "label": "Blue", + "count": 755 + }, + { + "filtered": false, + "value": "White", + "label": "White", + "count": 673 + }, + { + "filtered": false, + "value": "Pink", + "label": "Pink", + "count": 530 + }, + { + "filtered": false, + "value": "Beige", + "label": "Beige", + "count": 316 + }, + { + "filtered": false, + "value": "Black", + "label": "Black", + "count": 366 + }, + { + "filtered": false, + "value": "Gray", + "label": "Gray", + "count": 303 + }, + { + "filtered": false, + "value": "Brown", + "label": "Brown", + "count": 174 + }, + { + "filtered": false, + "value": "Red", + "label": "Red", + "count": 261 + }, + { + "filtered": false, + "value": "Green", + "label": "Green", + "count": 237 + }, + { + "filtered": false, + "value": "Yellow", + "label": "Yellow", + "count": 202 + }, + { + "filtered": false, + "value": "Orange", + "label": "Orange", + "count": 97 + }, + { + "filtered": false, + "value": "Purple", + "label": "Purple", + "count": 79 + }, + { + "filtered": false, + "value": "Black, Grey", + "label": "Black, Grey", + "count": 2 + }, + { + "filtered": false, + "value": "Black, Orange", + "label": "Black, Orange", + "count": 2 + } + ] + }, + { + "field": "size", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2791 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2791 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2779 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 521 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 519 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 509 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 504 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 497 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 109 + }, + { + "filtered": false, + "value": "26", + "label": "26", + "count": 72 + }, + { + "filtered": false, + "value": "27", + "label": "27", + "count": 72 + }, + { + "filtered": false, + "value": "28", + "label": "28", + "count": 72 + }, + { + "filtered": false, + "value": "29", + "label": "29", + "count": 72 + }, + { + "filtered": false, + "value": "30", + "label": "30", + "count": 72 + }, + { + "filtered": false, + "value": "25", + "label": "25", + "count": 69 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "24", + "label": "24", + "count": 63 + }, + { + "filtered": false, + "value": "31", + "label": "31", + "count": 58 + }, + { + "filtered": false, + "value": "5", + "label": "5", + "count": 46 + }, + { + "filtered": false, + "value": "1", + "label": "1", + "count": 14 + }, + { + "filtered": false, + "value": "13", + "label": "13", + "count": 14 + }, + { + "filtered": false, + "value": "3", + "label": "3", + "count": 14 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "2", + "label": "2", + "count": 2 + }, + { + "filtered": false, + "value": "4", + "label": "4", + "count": 2 + }, + { + "filtered": false, + "value": "15", + "label": "15", + "count": 1 + } + ] + }, + { + "field": "ss_category_hierarchy", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Gifts for Her", + "label": "Gifts for Her", + "count": 4445 + }, + { + "filtered": false, + "value": "Shop By Trend", + "label": "Shop By Trend", + "count": 1237 + }, + { + "filtered": false, + "value": "What's New", + "label": "What's New", + "count": 573 + }, + { + "filtered": false, + "value": "All Accessories", + "label": "All Accessories", + "count": 473 + }, + { + "filtered": false, + "value": "All Dresses", + "label": "All Dresses", + "count": 400 + }, + { + "filtered": false, + "value": "All Sale", + "label": "All Sale", + "count": 365 + }, + { + "filtered": false, + "value": "All Jewelry", + "label": "All Jewelry", + "count": 342 + }, + { + "filtered": false, + "value": "All Tops", + "label": "All Tops", + "count": 319 + }, + { + "filtered": false, + "value": "Brands We Love", + "label": "Brands We Love", + "count": 274 + }, + { + "filtered": false, + "value": "Notify of Restock", + "label": "Notify of Restock", + "count": 239 + }, + { + "filtered": false, + "value": "Home & Office Decor", + "label": "Home & Office Decor", + "count": 220 + }, + { + "filtered": false, + "value": "All Shoes", + "label": "All Shoes", + "count": 213 + }, + { + "filtered": false, + "value": "Swimwear", + "label": "Swimwear", + "count": 169 + }, + { + "filtered": false, + "value": "Going Fast", + "label": "Going Fast", + "count": 157 + }, + { + "filtered": false, + "value": "All Bottoms", + "label": "All Bottoms", + "count": 140 + }, + { + "filtered": false, + "value": "Playsuits", + "label": "Playsuits", + "count": 139 + }, + { + "filtered": false, + "value": "Special Occasion", + "label": "Special Occasion", + "count": 125 + }, + { + "filtered": false, + "value": "Athleisure", + "label": "Athleisure", + "count": 116 + }, + { + "filtered": false, + "value": "Style Influencer", + "label": "Style Influencer", + "count": 112 + }, + { + "filtered": false, + "value": "Trending", + "label": "Trending", + "count": 112 + }, + { + "filtered": false, + "value": "Memorial Day Sale", + "label": "Memorial Day Sale", + "count": 103 + }, + { + "filtered": false, + "value": "Back in Stock", + "label": "Back in Stock", + "count": 64 + }, + { + "filtered": false, + "value": "Valentine's Day", + "label": "Valentine's Day", + "count": 55 + }, + { + "filtered": false, + "value": "Shop Lookbook", + "label": "Shop Lookbook", + "count": 30 + }, + { + "filtered": false, + "value": "All Intimates", + "label": "All Intimates", + "count": 20 + }, + { + "filtered": false, + "value": "All Pajamas", + "label": "All Pajamas", + "count": 20 + }, + { + "filtered": false, + "value": "White & Blue Looks", + "label": "White & Blue Looks", + "count": 20 + }, + { + "filtered": false, + "value": "Top Rated", + "label": "Top Rated", + "count": 9 + }, + { + "filtered": false, + "value": "Shop By Outfit", + "label": "Shop By Outfit", + "count": 3 + } + ] + }, + { + "field": "price", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": 20, + "high": 30, + "label": "$20 to $30", + "count": 846 + }, + { + "filtered": false, + "low": 30, + "high": 40, + "label": "$30 to $40", + "count": 1618 + }, + { + "filtered": false, + "low": 40, + "high": 50, + "label": "$40 to $50", + "count": 1160 + }, + { + "filtered": false, + "low": 50, + "high": 75, + "label": "$50 to $75", + "count": 435 + }, + { + "filtered": false, + "low": 75, + "high": 100, + "label": "$75 to $100", + "count": 59 + }, + { + "filtered": false, + "low": 100, + "high": 150, + "label": "$100 to $150", + "count": 22 + }, + { + "filtered": false, + "low": 150, + "high": 200, + "label": "$150 to $200", + "count": 4 + }, + { + "filtered": false, + "low": 200, + "high": null, + "label": " over $200", + "count": 3 + } + ] + }, + { + "field": "material", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Wool", + "label": "Wool", + "count": 11 + }, + { + "filtered": false, + "value": "Vegan Leather", + "label": "Vegan Leather", + "count": 6 + }, + { + "filtered": false, + "value": "Spandex", + "label": "Spandex", + "count": 375 + }, + { + "filtered": false, + "value": "Silk", + "label": "Silk", + "count": 16 + }, + { + "filtered": false, + "value": "Rubber", + "label": "Rubber", + "count": 20 + }, + { + "filtered": false, + "value": "Polyester", + "label": "Polyester", + "count": 1353 + }, + { + "filtered": false, + "value": "Linen", + "label": "Linen", + "count": 65 + }, + { + "filtered": false, + "value": "Leather", + "label": "Leather", + "count": 47 + }, + { + "filtered": false, + "value": "Faux Leather", + "label": "Faux Leather", + "count": 39 + }, + { + "filtered": false, + "value": "Denim", + "label": "Denim", + "count": 67 + }, + { + "filtered": false, + "value": "Cotton", + "label": "Cotton", + "count": 657 + }, + { + "filtered": false, + "value": "", + "label": "", + "count": 1789 + } + ] + }, + { + "field": "on_sale", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Yes", + "label": "Yes", + "count": 1500 + }, + { + "filtered": false, + "value": "No", + "label": "No", + "count": 2946 + } + ] + }, + { + "field": "ss_price", + "type": "range", + "filtered": false, + "step": 5, + "range": { + "low": 0, + "high": 280 + }, + "active": { + "low": 0, + "high": 280 + } + }, + { + "field": "size_dress", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2777 + }, + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2789 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2789 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + } + ] + }, + { + "field": "season", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Summer", + "label": "Summer", + "count": 577 + }, + { + "filtered": false, + "value": "Spring", + "label": "Spring", + "count": 444 + }, + { + "filtered": false, + "value": "Fall", + "label": "Fall", + "count": 252 + }, + { + "filtered": false, + "value": "Winter", + "label": "Winter", + "count": 39 + } + ] + }, + { + "field": "pattern", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Print", + "label": "Print", + "count": 353 + }, + { + "filtered": false, + "value": "Floral", + "label": "Floral", + "count": 146 + }, + { + "filtered": false, + "value": "Stripe", + "label": "Stripe", + "count": 128 + }, + { + "filtered": false, + "value": "Embroidered", + "label": "Embroidered", + "count": 89 + }, + { + "filtered": false, + "value": "Plaid", + "label": "Plaid", + "count": 20 + }, + { + "filtered": false, + "value": "Paisley", + "label": "Paisley", + "count": 7 + }, + { + "filtered": false, + "value": "Polka Dot", + "label": "Polka Dot", + "count": 7 + }, + { + "filtered": false, + "value": "Camo", + "label": "Camo", + "count": 6 + }, + { + "filtered": false, + "value": "Dot", + "label": "Dot", + "count": 6 + }, + { + "filtered": false, + "value": "Herringbone", + "label": "Herringbone", + "count": 2 + } + ] + }, + { + "field": "dress_length_name", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Mini", + "label": "Mini", + "count": 192 + }, + { + "filtered": false, + "value": "Micro", + "label": "Micro", + "count": 50 + }, + { + "filtered": false, + "value": "Knee", + "label": "Knee", + "count": 40 + }, + { + "filtered": false, + "value": "Floor", + "label": "Floor", + "count": 54 + }, + { + "filtered": false, + "value": "Calf", + "label": "Calf", + "count": 11 + }, + { + "filtered": false, + "value": "Below Knee", + "label": "Below Knee", + "count": 7 + }, + { + "filtered": false, + "value": "Below knee", + "label": "Below knee", + "count": 3 + }, + { + "filtered": false, + "value": "Ankle", + "label": "Ankle", + "count": 29 + }, + { + "filtered": false, + "value": "Above Knee", + "label": "Above Knee", + "count": 109 + }, + { + "filtered": false, + "value": "Above knee", + "label": "Above knee", + "count": 55 + } + ] + }, + { + "field": "size_footwear", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "5", + "label": "5", + "count": 27 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 498 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 498 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 498 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 497 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 92 + } + ] + }, + { + "field": "collection", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Above The Fray", + "label": "Above The Fray", + "count": 2 + }, + { + "filtered": false, + "value": "Addicted To Love", + "label": "Addicted To Love", + "count": 1 + }, + { + "filtered": false, + "value": "Addicted To Sun", + "label": "Addicted To Sun", + "count": 2 + }, + { + "filtered": false, + "value": "Adore Me", + "label": "Adore Me", + "count": 1 + }, + { + "filtered": false, + "value": "Adventure Ready", + "label": "Adventure Ready", + "count": 1 + }, + { + "filtered": false, + "value": "After Midnight", + "label": "After Midnight", + "count": 3 + }, + { + "filtered": false, + "value": "Ahead Of The Curve", + "label": "Ahead Of The Curve", + "count": 3 + }, + { + "filtered": false, + "value": "All Day Fun", + "label": "All Day Fun", + "count": 2 + }, + { + "filtered": false, + "value": "All In Favor", + "label": "All In Favor", + "count": 3 + }, + { + "filtered": false, + "value": "All Purpose", + "label": "All Purpose", + "count": 3 + }, + { + "filtered": false, + "value": "All The Stripe", + "label": "All The Stripe", + "count": 2 + }, + { + "filtered": false, + "value": "All To Myself", + "label": "All To Myself", + "count": 2 + }, + { + "filtered": false, + "value": "Almost Famous", + "label": "Almost Famous", + "count": 6 + }, + { + "filtered": false, + "value": "Answer To Your Layers", + "label": "Answer To Your Layers", + "count": 4 + }, + { + "filtered": false, + "value": "Around The Track", + "label": "Around The Track", + "count": 2 + }, + { + "filtered": false, + "value": "At My Best", + "label": "At My Best", + "count": 3 + }, + { + "filtered": false, + "value": "Back To The Basics", + "label": "Back To The Basics", + "count": 3 + }, + { + "filtered": false, + "value": "Balancing Act", + "label": "Balancing Act", + "count": 3 + }, + { + "filtered": false, + "value": "Basic Instincts", + "label": "Basic Instincts", + "count": 2 + }, + { + "filtered": false, + "value": "Basically Perfect", + "label": "Basically Perfect", + "count": 4 + }, + { + "filtered": false, + "value": "Basics Of Love", + "label": "Basics Of Love", + "count": 3 + }, + { + "filtered": false, + "value": "Bazaar Beauty", + "label": "Bazaar Beauty", + "count": 6 + }, + { + "filtered": false, + "value": "Beach Please", + "label": "Beach Please", + "count": 4 + }, + { + "filtered": false, + "value": "Beauty In Believing", + "label": "Beauty In Believing", + "count": 4 + }, + { + "filtered": false, + "value": "Because Summer", + "label": "Because Summer", + "count": 2 + }, + { + "filtered": false, + "value": "Best Of Basics", + "label": "Best Of Basics", + "count": 7 + }, + { + "filtered": false, + "value": "Better Than Basic", + "label": "Better Than Basic", + "count": 2 + }, + { + "filtered": false, + "value": "Better Than Flowers", + "label": "Better Than Flowers", + "count": 2 + }, + { + "filtered": false, + "value": "Bloom Or Bust", + "label": "Bloom Or Bust", + "count": 3 + }, + { + "filtered": false, + "value": "Bold Streak", + "label": "Bold Streak", + "count": 6 + }, + { + "filtered": false, + "value": "Breaking Rules", + "label": "Breaking Rules", + "count": 3 + }, + { + "filtered": false, + "value": "Bright This Way", + "label": "Bright This Way", + "count": 2 + }, + { + "filtered": false, + "value": "Bronzed Beauty", + "label": "Bronzed Beauty", + "count": 2 + }, + { + "filtered": false, + "value": "C'est Chic", + "label": "C'est Chic", + "count": 2 + }, + { + "filtered": false, + "value": "California Roots", + "label": "California Roots", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Be Tamed", + "label": "Can't Be Tamed", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Miss Me", + "label": "Can't Miss Me", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Stop The Feeling", + "label": "Can't Stop The Feeling", + "count": 2 + }, + { + "filtered": false, + "value": "Chart Topping", + "label": "Chart Topping", + "count": 4 + }, + { + "filtered": false, + "value": "Chasing Daydreams", + "label": "Chasing Daydreams", + "count": 2 + }, + { + "filtered": false, + "value": "Chic And Easy", + "label": "Chic And Easy", + "count": 2 + }, + { + "filtered": false, + "value": "Chic Cityscape", + "label": "Chic Cityscape", + "count": 3 + }, + { + "filtered": false, + "value": "Chill Girl", + "label": "Chill Girl", + "count": 4 + }, + { + "filtered": false, + "value": "City Of Stars", + "label": "City Of Stars", + "count": 8 + }, + { + "filtered": false, + "value": "Downtown Chic", + "label": "Downtown Chic", + "count": 2 + }, + { + "filtered": false, + "value": "Dream On", + "label": "Dream On", + "count": 3 + }, + { + "filtered": false, + "value": "Dream Street", + "label": "Dream Street", + "count": 4 + }, + { + "filtered": false, + "value": "Feeling Accomplished", + "label": "Feeling Accomplished", + "count": 2 + }, + { + "filtered": false, + "value": "Gossip Girl", + "label": "Gossip Girl", + "count": 20 + }, + { + "filtered": false, + "value": "Got it Bad", + "label": "Got it Bad", + "count": 2 + } + ] + }, + { + "field": "saturation", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "high", + "label": "high", + "count": 39 + }, + { + "filtered": false, + "value": "low", + "label": "low", + "count": 56 + }, + { + "filtered": false, + "value": "med", + "label": "med", + "count": 40 + } + ] + }, + { + "field": "size_pants", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": null, + "high": 1, + "label": "0-1", + "count": 2 + }, + { + "filtered": false, + "low": 2, + "high": 3, + "label": "2-3", + "count": 3 + }, + { + "filtered": false, + "low": 3, + "high": 4, + "label": "3-4", + "count": 3 + }, + { + "filtered": false, + "low": 4, + "high": 5, + "label": "4-5", + "count": 3 + }, + { + "filtered": false, + "low": 5, + "high": 7, + "label": "5-7", + "count": 3 + }, + { + "filtered": false, + "low": 7, + "high": null, + "label": "7 and up", + "count": 75 + } + ] + } + ], + "sorting": [], + "merchandising": { + "redirect": "", + "content": {}, + "campaigns": [] + }, + "search": { + "query": "" + } +} \ No newline at end of file diff --git a/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page2.json b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page2.json new file mode 100644 index 000000000..18ca40d6d --- /dev/null +++ b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page2.json @@ -0,0 +1,2687 @@ +{ + "pagination": { + "totalResults": 4445, + "page": 2, + "pageSize": 30, + "totalPages": 149 + }, + "results": [ + { + "id": "128804", + "mappings": { + "core": { + "uid": "128804", + "sku": "C-ANM-I7-16148", + "name": "ANAMÁ: Destination Anywhere Blouse", + "url": "/product/C-ANM-I7-16148", + "addToCartUrl": "/product/C-ANM-I7-16148", + "price": 45, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6909_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6909_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a6909_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Always up for an adventure, your plane ticket says “Destination Anywhere”. You may have a “Destination Anywhere”, but you’re styling everywhere. Let this blouse make a good first impression wherever you may go. The stylish jet-setter is the life for you. Top features a scoop neckline with lace up tie, peek-a-boo shoulders, and bell sleeves. • 100% Viscose • Machine Wash Cold • Unlined • Sheer FIT: True to size BUST: Works for most bust sizes! Size Small measures 38\\\", Medium measures 41\\\", Large measures 44\\\" LENGTH: Size Small measures 25\\\", Medium measures 26\\\", Large measures 27\\\" WAIST: Loose fitting waist, great for those with a trouble waist area. HIPS: Loose fitting, plenty of room for movement. UNDERGARMENTS: Standard bra works perfectly! FABRIC: Fabric contains no stretch. Model is 5'7\\\" and measures 34\\\" bust, 27.5\\\" waist and 38\\\" hips. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "2604", + "caption": "Captions!" + } + }, + "attributes": { + "id": "8860d7fa39bd87eebba46fcb89fe7510", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089X1NNc1NDM0sWAwYjA2ZDBgMDExMWVIL8pMAQQAAP__trIIoQ", + "intellisuggestSignature": "92fc7d2369eaa076ee4316a067fd83cfdc559d8d8e38759c3dcac9993ce54814", + "product_type_unigram": "blouse", + "sales_rank": [ + "2604" + ] + }, + "children": [] + }, + { + "id": "133092", + "mappings": { + "core": { + "uid": "133092", + "sku": "C-ANM-W1-16007", + "name": "ANAMÁ: In The Breeze Blouse", + "url": "/product/C-ANM-W1-16007", + "addToCartUrl": "/product/C-ANM-W1-16007", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7099_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7099_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7099_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Spring is here! You can smell it “In The Breeze”. Get ready to wear this becoming blouse to pretty picnics, backyard bbqs, or walks in the park, because it’ll have you looking and feeling as sweet as a fresh “Breeze.” Flutter sleeve top features a square neckline with crocheted detail, and beaded ties on the sides. Model is wearing a small. • 100% Rayon • Machine Wash Cold • Unlined • Faintly Sheer", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "1974", + "caption": "Captions!" + } + }, + "attributes": { + "id": "07d299ffaac9b76596dfaaedb1fce9f5", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089UNN9Q1NDMwMGcwYjA2YjBgMDExMWVIL8pMAQQAAP__txsIpA", + "intellisuggestSignature": "2cdbf87abca10beb466013297d5c28eb3476d36ed0a67364d81465917b131c35", + "product_type_unigram": "blouse", + "sales_rank": [ + "1974" + ] + }, + "children": [] + }, + { + "id": "108014", + "mappings": { + "core": { + "uid": "108014", + "sku": "C-ANM-G5-15104", + "name": "ANAMÁ: Never Go Back Vest", + "url": "/product/C-ANM-G5-15104", + "addToCartUrl": "/product/C-ANM-G5-15104", + "price": 106, + "msrp": 125, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4383_1_4_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4383_1_4_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a4383_1_4_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Even after reconciling the emotions and getting over the all you know that you will “Never Go Back”! Keep it moving and look back as the situation as a lesson learned! Something that you not turn your back on is this vest that is going to be there for all the times that you need a comforting cover up to give the world a view going forward that looking behind is for a girl with regrets and this choice of vest there is no chance of that happening! Open front vest features a floral print, racer back, and knotted tassel hemline. Unlined. 80% Cotton, 20% Polyester. Wash by hand in cold water separately. Lay flat to dry. Iron low. Do not tumble dry, bleach, or dry clean. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length: Small measures 40\\\", Medium measures 41\\\", Large measures 42\\\"", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "2929", + "caption": "Captions!" + } + }, + "attributes": { + "id": "51233642da61f81854a274531108fe26", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089V1N9U1NDU0MGEwYjA2ZjBgMDExMWVIL8pMAQQAAP__tcEIlg", + "intellisuggestSignature": "6db1a2079f21c1564667f937d772bb0961fa08ff162bcbc0497afc73d92ae644", + "product_type_unigram": "vest", + "sales_rank": [ + "2929" + ] + }, + "children": [] + }, + { + "id": "135303", + "mappings": { + "core": { + "uid": "135303", + "sku": "C-ANM-E3-16123", + "name": "ANAMÁ: Trouble In Mind Top", + "url": "/product/C-ANM-E3-16123", + "addToCartUrl": "/product/C-ANM-E3-16123", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3080_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3080_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3080_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When you’ve got “Trouble In Mind,” make sure you look cute in hopes that punishment doesn’t come full force. As adorable as you’ll look in this darling top (plus some puppy dog eyes), who could be against you? So lace-up and find something to get into. Tank with a scoop neckline and lace up sides. Model is wearing a small. • 100% Cotton • Machine Wash Cold on Gentle Cycle • Unlined", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "990", + "caption": "Captions!" + } + }, + "attributes": { + "id": "611c6a9e3a3f0a597891611a3dfdce21", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089V1NdY1NDM0MmYwYjA2YTBgMDExMWVIL8pMAQQAAP__tZUIlQ", + "intellisuggestSignature": "f9c97cc62072e3fd09b390aa7feca51d71108c196425cbbaf87b94ed785c79e2", + "product_type_unigram": "top", + "sales_rank": [ + "990" + ] + }, + "children": [] + }, + { + "id": "126548", + "mappings": { + "core": { + "uid": "126548", + "sku": "C-ANM-I2-16034", + "name": "ANAMÁ: Wonderful Unknown Dress", + "url": "/product/C-ANM-I2-16034", + "addToCartUrl": "/product/C-ANM-I2-16034", + "price": 51, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4366_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4366_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4366_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Heading off into the “Wonderful Unknown” could lead to a cause for concern, but with this dress on your back you have nothing to worry about!! What is well “Known” about this dress is the girl who wears it is sure to have a “Wonderful” time and look chic headed to any and every place, even if she is clueless to the destination!! Sleeveless A-line dress features tattered hemline. • 100% Cotton • Machine Wash Cold on Gentle • Fully Lined FIT: True to size BUST: Works for most bust sizes! Size Small measures 36\\\", Medium measures 38\\\", Large measures 40\\\" LENGTH: Above the knee. Asymmetrical hem. Longer on the sides. Size Small measures 34\\\", Medium measures 35\\\", Large measures 36\\\" WAIST: Loose fitting waist, great for those with a trouble waist area. HIPS: Loose fitting, plenty of room for movement. UNDERGARMENTS: Standard bra works perfectly! FABRIC: Fabric contains no stretch. Model is 5'7\\\" and measures 32\\\" bust and 25\\\" waist. She is wearing a size small.", + "stockMessage": "In stock", + "brand": "Anama", + "popularity": "2728", + "caption": "Captions!" + } + }, + "attributes": { + "id": "fa6d0bae53447aca99469b40fde4e31a", + "intellisuggestData": "eJyyKK0sMcplYGBw1nX089X1NNI1NDMwNmEwYjA2ZTBgMDExMWVIL8pMAQQAAP__tf8Img", + "intellisuggestSignature": "91591450461941cb691886395cf3759c8064b2941dbbf24c601d71faffad8058", + "product_type_unigram": "dress", + "sales_rank": [ + "2728" + ] + }, + "children": [] + }, + { + "id": "135132", + "mappings": { + "core": { + "uid": "135132", + "sku": "C-PLC-G2-0020N", + "name": "Above All Else Top", + "url": "/product/C-PLC-G2-0020N", + "addToCartUrl": "/product/C-PLC-G2-0020N", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3467_3_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a3467_3_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a3467_3_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a love for faith, family, and friends, sometimes you have to be reminded that “Above All Else”, you gotta put yourself first!! Make that startling revelation a reality with this top that is “Tops”! You'll be swinging in the springtime breeze as this flowy frock will have you coming out as best dressed! Short sleeve top features a crew neckline and ruffles along the bottom hemline. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined Model is 5'3\\\" and measures 32\\\" bust and a 26\\\" waist. She is wearing a small.", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "259", + "caption": "Captions!" + } + }, + "attributes": { + "id": "26d90680a4a0856970e7f1f5f6d19982", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdZ1N9I1MDAy8GMwYjA2YzBgMDExMWVIL8pMAQQAAP__t3YIrg", + "intellisuggestSignature": "29bd5be204e6ef77e6aeb8cf0aade0dcf72f67c813fcfadfaf1157669878cc08", + "product_type_unigram": "top", + "sales_rank": [ + "259" + ] + }, + "children": [] + }, + { + "id": "132494", + "mappings": { + "core": { + "uid": "132494", + "sku": "C-PLC-I2-0020N", + "name": "Above All Else Top", + "url": "/product/C-PLC-I2-0020N", + "addToCartUrl": "/product/C-PLC-I2-0020N", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0034_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0034_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a0034_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a love for faith, family, and friends, sometimes you have to be reminded that “Above All Else”, you gotta put yourself first!! Make that startling revelation a reality with this top that is “Tops”!! You be swinging in the Springtime breeze as this flowy frock with have you coming out as best dressed!! Short sleeve top features a crew neckline and ruffles along the bottom hemline. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined Model is 5'3\\\" and measures 32\\\" bust and a 26\\\" waist. She is wearing a small.", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "3091", + "caption": "Captions!" + } + }, + "attributes": { + "id": "250ef2a9a934b88bc88881e080b6df2a", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1NNI1MDAy8GMwYjA2ZzBgMDExMWVIL8pMAQQAAP__t7UIsQ", + "intellisuggestSignature": "c84c09fcfce957c14fb02d3c9bd3e36ed55ff50e4718b96be2b63dfe47b62f5d", + "product_type_unigram": "top", + "sales_rank": [ + "3091" + ] + }, + "children": [] + }, + { + "id": "126422", + "mappings": { + "core": { + "uid": "126422", + "sku": "C-PLC-O2-0020N", + "name": "Above All Else Top", + "url": "/product/C-PLC-O2-0020N", + "addToCartUrl": "/product/C-PLC-O2-0020N", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4215_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4215_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4215_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With a love for faith, family, and friends, sometimes you have to be reminded that “Above All Else”, you gotta put yourself first!! Make that startling revelation a reality with this top that is “Tops”!! You be swinging in the Springtime breeze as this flowy frock with have you coming out as best dressed!! Short sleeve top features a crew neckline and ruffles along the bottom hemline. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined Model is 5'6\\\" and measures 34\\\" bust and a 25\\\" waist. She is wearing a small.", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "3255", + "caption": "Captions!" + } + }, + "attributes": { + "id": "41c8f1f923c586dbea6f7c0f41a6b740", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1N9I1MDAy8GMwYjC2YDBgMDExMWVIL8pMAQQAAP__uFgIuA", + "intellisuggestSignature": "4d7493157d99b1b5a27771312bc94a4ac6c8a9a4ea021f293c77c85bdb9c3764", + "product_type_unigram": "top", + "sales_rank": [ + "3255" + ] + }, + "children": [] + }, + { + "id": "124067", + "mappings": { + "core": { + "uid": "124067", + "sku": "A-FAM-P5-W2033", + "name": "Above Par Wallet", + "url": "/product/A-FAM-P5-W2033", + "addToCartUrl": "/product/A-FAM-P5-W2033", + "price": 8.5, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a9005_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a9005_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a9005_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If your accessory game needs an improvement, get to swinging with this wallet! Not only good to hold your essentials, it is sure to always have you “Above Par”!! Wallet features a magnetic snap closure, multiple slots on inside with an ID holder, and a separate zipper pocket for change. All manmade materials.", + "stockMessage": "In stock", + "brand": "Fame", + "popularity": "2187", + "caption": "Captions!" + } + }, + "attributes": { + "id": "c43dffe279793dcfb2a42f8c3a75eb03", + "intellisuggestData": "eJyyKK0sMcplYGBw1HVz9NUNMNUNNzIwNmYwYjC2ZDBgMDExMWVIL8pMAQQAAP__uO8Ivw", + "intellisuggestSignature": "ccacf7da9ba32347f32a4405499da4c175b18e1e7ffeb30bc76a58531a72dc95", + "product_type_unigram": "wallet", + "sales_rank": [ + "2187" + ] + }, + "children": [] + }, + { + "id": "123749", + "mappings": { + "core": { + "uid": "123749", + "sku": "A-FAM-P7-W2033", + "name": "Above Par Wallet", + "url": "/product/A-FAM-P7-W2033", + "addToCartUrl": "/product/A-FAM-P7-W2033", + "price": 8.5, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a9038_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a9038_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a9038_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "If your accessory game needs an improvement, get to swinging with this wallet! Not only good to hold your essentials, it is sure to always have you “Above Par”!! Wallet features a magnetic snap closure, multiple slots on inside with an ID holder, and a separate zipper pocket for change. All manmade materials. Made in China.", + "stockMessage": "In stock", + "brand": "Fame", + "popularity": "512", + "caption": "Captions!" + } + }, + "attributes": { + "id": "f6c94f2f055a39d86844c432c72f5325", + "intellisuggestData": "eJyyKK0sMcplYGBw1HVz9NUNMNcNNzIwNmYwYjAxYDBgMDExMWVIL8pMAQQAAP__uLgIuQ", + "intellisuggestSignature": "4ac17ff06e42bd1708d7afb53cf733f1b66180e579e3528c91ec3d95dab03dde", + "product_type_unigram": "wallet", + "sales_rank": [ + "512" + ] + }, + "children": [] + }, + { + "id": "178121", + "mappings": { + "core": { + "uid": "178121", + "sku": "C-SNK-I5-P9469", + "name": "Above The Fray Dark Wash Distressed Skinny Jeans", + "url": "/product/C-SNK-I5-P9469", + "addToCartUrl": "/product/C-SNK-I5-P9469", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3281_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3281_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a3281_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "The versatility of distressed skinny jeans is one of the greatest things on earth--right next to oxford button down shirts and cardigans. This pair in particular is a favorite of ours. It's trendy, but will stay in style for years to come. It can be dressed up and down, and frankly, it looks cool as all get out. They're the kind of jeans we can see ourselves falling asleep on the couch in after a few too many drinks (and likely will, if girls' night goes as planned). Model is wearing a size 1. • 98% Cotton 2% Spandex • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Sneak Peek", + "popularity": "1295", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a81817178f826329fba4b7d5c4ff2110", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3289b1NNUNsDQxs2QwYjAxZDBgMDExMWVIL8pMAQQAAP__u8EI2A", + "intellisuggestSignature": "f7873bfbd5d398494d60d4a7485fa6d43e1350ca8bcd12cba099cb790da37746", + "product_type_unigram": "jeans", + "sales_rank": [ + "1295" + ] + }, + "children": [] + }, + { + "id": "182922", + "mappings": { + "core": { + "uid": "182922", + "sku": "C-SNK-W1-P9535", + "name": "Above The Fray White Distressed Skinny Jeans", + "url": "/product/C-SNK-W1-P9535", + "addToCartUrl": "/product/C-SNK-W1-P9535", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5506_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5506_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5506_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "The versatility of distressed skinny jeans is one of the greatest things on earth--right next to oxford button down shirts and cardigans. This pair in particular is a favorite of ours. It's trendy, but will stay in style for years to come. It can be dressed up and down, and frankly, it looks cool as all get out. They're the kind of jeans we can see ourselves falling asleep on the couch in after a few too many drinks (and likely will, if girls' night goes as planned). Model is wearing a size 1. • 98% Cotton 2% Spandex • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Sneak Peek", + "popularity": "2990", + "caption": "Captions!" + } + }, + "attributes": { + "id": "7b03e5573501c91ae419c8ef4712fdaf", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3289YNN9QNsDQ1NmUwYjAxYjBgMDExMWVIL8pMAQQAAP__vF8I3Q", + "intellisuggestSignature": "241ffb1e20394e19f80c395ab07be6502abaafe84ddd1333e6aa6d0a2a202ae3", + "product_type_unigram": "jeans", + "sales_rank": [ + "2990" + ] + }, + "children": [] + }, + { + "id": "147443", + "mappings": { + "core": { + "uid": "147443", + "sku": "C-EZ-R4-T6797", + "name": "Ace The Test Red Top", + "url": "/product/C-EZ-R4-T6797", + "addToCartUrl": "/product/C-EZ-R4-T6797", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/mmmmm_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/mmmmm_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/mmmmm_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Get ready to Ace The Test and take the cake when you wear this divine Red Top. This red blouse features a V-neckline with a tie and long sleeves with elastic cuffs. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "Ezra", + "popularity": "62", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d672b17777e03ff12ebb27714f30cb65", + "intellisuggestData": "eJyyKK0sMcplYGBw1nWN0g0y0Q0xM7c0ZzBiMDFmMGAwMTExZUgvykwBBAAA__-xlgia", + "intellisuggestSignature": "42538006729cd24fb700fe0e62dbc952397b194b063dcc5ccdd6c8eb2805330e", + "product_type_unigram": "top", + "sales_rank": [ + "62" + ] + }, + "children": [] + }, + { + "id": "145905", + "mappings": { + "core": { + "uid": "145905", + "sku": "C-EZ-W1-T6797", + "name": "Ace The Test White Polka Dot Top", + "url": "/product/C-EZ-W1-T6797", + "addToCartUrl": "/product/C-EZ-W1-T6797", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7993_4_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7993_4_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7993_4_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "There’s no doubt that you’ll Ace The Test when you’re wearing this impeccable White Polka Dot Top, especially if it’s a style test! Don’t stress because you’ve got this! This adorable polka dot blouse features a V-neckline with a tie and long sleeves with elastic cuffs. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Ezra", + "popularity": "3975", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ab50334664cc3e8eef94e26b9dddd4f0", + "intellisuggestData": "eJyyKK0sMcplYGBw1nWN0g031A0xM7c0ZzBiMDFhMGAwMTExZUgvykwBBAAA__-x2Aid", + "intellisuggestSignature": "dd7b83467c8b7d0660355cbaeb968e6ac0b743192958a2d46f9e4c77949d8102", + "product_type_unigram": "top", + "sales_rank": [ + "3975" + ] + }, + "children": [] + }, + { + "id": "110161", + "mappings": { + "core": { + "uid": "110161", + "sku": "F-BAM-B7-ANA65", + "name": "Across The Pond Boots", + "url": "/product/F-BAM-B7-ANA65", + "addToCartUrl": "/product/F-BAM-B7-ANA65", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0780_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0780_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0780_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Lace up boots feature a zipper on the instep, two decorative straps with buckles at the top, and a strap that buckles over the foot. All manmade materials. Heel Height: 1\\\" Shaft Length: 14\\\" Top Opening Circumference: 13\\\"", + "stockMessage": "In stock", + "brand": "Bamboo", + "popularity": "4083", + "caption": "Captions!" + } + }, + "attributes": { + "id": "4ad06b641ea18b5e8038957eeadd4470", + "intellisuggestData": "eJyyKK0sMcplYGBw03Vy9NV1Mtd19HM0M2UwYjAxZTBgMDExMWVIL8pMAQQAAP__udsIzQ", + "intellisuggestSignature": "c848295707a028636273739c8d8272e2ad3db52cd7f646106be1cd5e8655fe73", + "product_type_unigram": "boots", + "sales_rank": [ + "4083" + ] + }, + "children": [] + }, + { + "id": "177727", + "mappings": { + "core": { + "uid": "177727", + "sku": "J-GS-I4-75478", + "name": "Add Intrigue Turquoise Cuff Bracelet", + "url": "/product/J-GS-I4-75478", + "addToCartUrl": "/product/J-GS-I4-75478", + "price": 24, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_6796_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_3_6796_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_3_6796_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "A recipe for a good date: A colorful top for a pinch of playfulness. A flowy skirt for a dash of bohemian free-spiritness. And dangly earrings for a sprinkling of fun. Now to just Add Intrigue, with a splash of turquoise, and you’re all set. Ready for date in two hours, and you’ll know it’s ready when your spirits rise. No easier instructions to follow than close eyes and kiss. • Imported", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "3387", + "caption": "Captions!" + } + }, + "attributes": { + "id": "09835880ab4d7731d983ee75aa75e5ac", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1vU00TU3NTG3YDBiMDFjMGAwMTExZUgvykwBBAAA__-uRgh0", + "intellisuggestSignature": "b8effaccbbe9749a6087f182e8a8b68bb0090e653a5fc6ba414799f363245f8d", + "product_type_unigram": "bracelet", + "sales_rank": [ + "3387" + ] + }, + "children": [] + }, + { + "id": "134892", + "mappings": { + "core": { + "uid": "134892", + "sku": "J-GS-I3-35603", + "name": "Add Some Whimsy Headband", + "url": "/product/J-GS-I3-35603", + "addToCartUrl": "/product/J-GS-I3-35603", + "price": 18, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a1749_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a1749_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a1749_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Simple and sophisticated and then “Add Some Whimsy” and you’ve got the perfect combination of your winning style. This heavenly headband is just what you need to add that whimsical touch to any outfit. Elastic beaded headband. Circumference measures 20\\\"", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "2499", + "caption": "Captions!" + } + }, + "attributes": { + "id": "74a8bab58fcfab1f4194221254113ac7", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1vU01jU2NTMwZjBiMDFnMGAwMTExZUgvykwBBAAA__-tLAhm", + "intellisuggestSignature": "31b1eea0390bc5b79c00e15d5c39d00a7d0f19f2e398624e4c2db54c8708d23d", + "product_type_unigram": "headband", + "sales_rank": [ + "2499" + ] + }, + "children": [] + }, + { + "id": "175130", + "mappings": { + "core": { + "uid": "175130", + "sku": "C-MNJ-P3-24230", + "name": "Addicted To Love Blush Pink Maxi Dress", + "url": "/product/C-MNJ-P3-24230", + "addToCartUrl": "/product/C-MNJ-P3-24230", + "price": 62, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_holiday_2_588_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_holiday_2_588_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_12_holiday_2_588_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Some are addicted to illicit substances. Others, to attention. But you, like so many women before you, have a much more intoxicating, and far more difficult addiction to grapple with; you’re addicted to love, and the only cure is being wooed and pursued like the precious prize you are. And like the knights errant, donning their armor as they prepare to win your heart, your armor is your wardrobe, and this dress far more essential than chain mail (without all the chafing). Maxi dress features hidden back zipper, half lined, v-back, belt detail at waist, embroidered bodice. Model is wearing a small. • 93% Polyester 7% Spandex • Hand Wash Cold • Lined • Imported", + "stockMessage": "In stock", + "brand": "Maniju", + "popularity": "1817", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ef21be06c46ba702f6267f7a01ed62d9", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX189INMNY1MjEyNmAwYjCxYDBgMDExMWVIL8pMAQQAAP__t9IIrA", + "intellisuggestSignature": "6ae8a221f5b3a15fcf8a55e38e6633c1ecff8962c37471c2543419506a0937d9", + "product_type_unigram": "dress", + "sales_rank": [ + "1817" + ] + }, + "children": [] + }, + { + "id": "181271", + "mappings": { + "core": { + "uid": "181271", + "sku": "H-DY-I2-P957P", + "name": "Addicted To Sun Blue Pom Hat", + "url": "/product/H-DY-I2-P957P", + "addToCartUrl": "/product/H-DY-I2-P957P", + "price": 18, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2863_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2863_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2863_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "For all of you ladies who are addicted to sun, this hat is perfect for poolside lounging and beach sun bathing! When you need just a little shade, this cutie will provide! Say hello to pom pom perfection! One size fits most. • 100% Paper • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "David & Young", + "popularity": "294", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ce109b1af8d47c3a27d903c61e3766fe", + "intellisuggestData": "eJyyKK0sMcplYGDw0HWJ1PU00g2wNDUPYDBiMLFkMGAwMTExZUgvykwBBAAA__-yjQis", + "intellisuggestSignature": "8aada07940b0936ba41c9bf40f9178bdaddf2c68f97867c4da4109415650fb5c", + "product_type_unigram": "hat", + "sales_rank": [ + "294" + ] + }, + "children": [] + }, + { + "id": "181270", + "mappings": { + "core": { + "uid": "181270", + "sku": "H-DY-P3-731PS", + "name": "Addicted To Sun Pink Pom Hat", + "url": "/product/H-DY-P3-731PS", + "addToCartUrl": "/product/H-DY-P3-731PS", + "price": 18, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0089_copyright_reddressboutique_2017_-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0089_copyright_reddressboutique_2017_-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0089_copyright_reddressboutique_2017_-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "For all of you ladies who are addicted to sun, this hat is perfect for poolside lounging and beach sun bathing! When you need just a little shade, this cutie will provide! Say hello to pom pom perfection! One size fits most. • 100% Paper • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "David & Young", + "popularity": "1763", + "caption": "Captions!" + } + }, + "attributes": { + "id": "fe1d262a12245ab7a55e1c27fbb2e23c", + "intellisuggestData": "eJyyKK0sMcplYGDw0HWJ1A0w1jU3NgwIZjBiMDVgMGAwMTExZUgvykwBBAAA__-yCgil", + "intellisuggestSignature": "2b0534692f46e37d07dea8dfed38fd851b59ee578170f9b876e5f82d9d36d7d7", + "product_type_unigram": "hat", + "sales_rank": [ + "1763" + ] + }, + "children": [] + }, + { + "id": "160153", + "mappings": { + "core": { + "uid": "160153", + "sku": "C-AD-I7-707ST", + "name": "Addicted To You Navy Striped Swing Dress", + "url": "/product/C-AD-I7-707ST", + "addToCartUrl": "/product/C-AD-I7-707ST", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/284_3852_copyright_reddressboutique_2016_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/284_3852_copyright_reddressboutique_2016_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/284_3852_copyright_reddressboutique_2016_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You might as well face it and tell this Navy Striped Swing Dress that I'm Addicted To You! It's irresistibly cute and classic! This striped sleeveless swing dress features a crew neck. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Adrienne", + "popularity": "1453", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ff8631a1cd6ec3654f15e7c6512f1624", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV00fU01zU3MA8OYTBiMDVkMGAwMTExZUgvykwBBAAA__-vKwiN", + "intellisuggestSignature": "a276b74247ccea3eaa1d47ab6733256fc1dab5bfb9a5a339399a730987be9112", + "product_type_unigram": "dress", + "sales_rank": [ + "1453" + ] + }, + "children": [] + }, + { + "id": "158960", + "mappings": { + "core": { + "uid": "158960", + "sku": "C-AD-W2-707ST", + "name": "Addicted To You Striped Swing Dress", + "url": "/product/C-AD-W2-707ST", + "addToCartUrl": "/product/C-AD-W2-707ST", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a7966_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a7966_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a7966_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Addicted To You because your style is nothing but true, this Striped Swing Dress will have you falling hard! It’ll have you looking and feeling fine all the time! This striped sleeveless swing dress features a crew neck. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Adrienne", + "popularity": "1359", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a8a8c07b44d5ab5b85312f9fb3fb31b3", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV00Q030jU3MA8OYTBiMDViMGAwMTExZUgvykwBBAAA__-wHgiX", + "intellisuggestSignature": "b0f64036ae74de4ef5ff7470555d6e8ff82007c3d19c1c2ba9cba3688067cee7", + "product_type_unigram": "dress", + "sales_rank": [ + "1359" + ] + }, + "children": [] + }, + { + "id": "179369", + "mappings": { + "core": { + "uid": "179369", + "sku": "J-GS-G7-65670", + "name": "Admit It Black Choker Necklace", + "url": "/product/J-GS-G7-65670", + "addToCartUrl": "/product/J-GS-G7-65670", + "price": 16, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0423__copyright_reddressboutique-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0423__copyright_reddressboutique-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0423__copyright_reddressboutique-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You've pretended that you don't like the return of the choker, but this one's caught your eye. Admit It. We won't make fun of you, promise. Admittedly, there was a time when we too didn't think this particular decade of styles (the 90s) would ever return, especially not with the vengeance that it seems to have returned with. But they're here, and they're much improved over the originals, as is often the case with fashion do-overs. Just be glad we're not wearing paper pants (yet). If you don't know what I'm talking about, then lucky you. Wear your choker and enjoy your not-a-slap-bracelet in blissful ignorance, for you have been spared. Thick black velvet choker necklace features crystal embellishment and a lobster closure with a 4\\\" extender chain. • Choker measures 10.25\\\" • Lobster clasp closure • Imported", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "4244", + "caption": "Captions!" + } + }, + "attributes": { + "id": "41c3e5c44588613b586ddd7f39d3bfd7", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1nU31zUzNTM3YDBiMDVmMGAwMTExZUgvykwBBAAA__-txQhs", + "intellisuggestSignature": "897340bcb995c4932104c08bc2afdffd25e76f4bd2c7138ff1aae364b36891e6", + "product_type_unigram": "necklace", + "sales_rank": [ + "4244" + ] + }, + "children": [] + }, + { + "id": "181447", + "mappings": { + "core": { + "uid": "181447", + "sku": "C-MIT-W1-8580C", + "name": "Adore Me White Floral Print Dress", + "url": "/product/C-MIT-W1-8580C", + "addToCartUrl": "/product/C-MIT-W1-8580C", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2014_copyright_reddressboutique_2017__1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2014_copyright_reddressboutique_2017__1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2014_copyright_reddressboutique_2017__1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Even though you won't be actually saying it, wearing this dress simply says Adore Me. Boasting a sweet floral pattern on a white fabric, you'll be the brightest bloom in sight. Swing dress has a high mock neckline and two functional pockets. Model is wearing a small. • 62% Polyester 33% Rayon 5% Spandex • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "Mitto Shop", + "popularity": "4261", + "caption": "Captions!" + } + }, + "attributes": { + "id": "f5cdaebb036d5bbb1a5eccc817fdf426", + "intellisuggestData": "eJyyKK0sMcplYGBw1vX1DNENN9S1MLUwcGYwYjA1YTBgMDExMWVIL8pMAQQAAP__utsI0A", + "intellisuggestSignature": "23d2d1940d5b7da488096898ae63aae9e22f309007c2616769399cc8b6c55437", + "product_type_unigram": "dress", + "sales_rank": [ + "4261" + ] + }, + "children": [] + }, + { + "id": "113677", + "mappings": { + "core": { + "uid": "113677", + "sku": "F-ANN-T9-OVE01", + "name": "Adore-A-Ball Nude Ankle-Strap Heels", + "url": "/product/F-ANN-T9-OVE01", + "addToCartUrl": "/product/F-ANN-T9-OVE01", + "price": 24.5, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a6675_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a6675_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a6675_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With these gracing your feet, the only expression worthy will be “Adore-A-Ball”! Whether you are dancing the night away at a ball, sitting court side at a basketball game with your girls, or ballin’ out of control, this is the only shoe you need to get all the attention that you adore!! Patent heels feature an adjustable ankle strap and a thin strap across the toes. Heel measures 4\\\"", + "stockMessage": "In stock", + "brand": "Anne Michelle", + "popularity": "699", + "caption": "Captions!" + } + }, + "attributes": { + "id": "5dc46a644645f6440eec8dfff90c5b1c", + "intellisuggestData": "eJyyKK0sMcplYGBw03X089MNsdT1D3M1MGQwYjA1ZTBgMDExMWVIL8pMAQQAAP__vrcI_w", + "intellisuggestSignature": "10b14694efa9684437d3a46b13c4bd7ed4e1d5aab81f68b51ff1c547293856f8", + "product_type_unigram": "heels", + "sales_rank": [ + "699" + ] + }, + "children": [] + }, + { + "id": "106142", + "mappings": { + "core": { + "uid": "106142", + "sku": "F-ANN-T2-OVE01", + "name": "Adore-A-Ball Nude Ankle-Strap Heels", + "url": "/product/F-ANN-T2-OVE01", + "addToCartUrl": "/product/F-ANN-T2-OVE01", + "price": 24.5, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/new_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/new_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/new_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "With these Nude Ankle Strap Heels gracing your feet, the only expression worthy will be Adore-A-Ball! Whether you are dancing the night away at a ball, sitting courtside at a basketball game with your girls, or ballin’ out of control, this is the only shoe you need to get all the attention that you adore!! These heels feature an adjustable ankle strap and a thin strap across the toes. Made in China. Heel measures 4\\\"", + "stockMessage": "In stock", + "brand": "Anne Michelle", + "popularity": "2846", + "caption": "Captions!" + } + }, + "attributes": { + "id": "cec7d881797fc7e3db805512b64a2f17", + "intellisuggestData": "eJyyKK0sMcplYGBw03X089MNMdL1D3M1MGQwYjA1YzBgMDExMWVIL8pMAQQAAP__vhwI-Q", + "intellisuggestSignature": "ae1e55f2c0d2170b53dce587047b4c2d470adf1b98d766fd055ae142b566d201", + "product_type_unigram": "heels", + "sales_rank": [ + "2846" + ] + }, + "children": [] + }, + { + "id": "181403", + "mappings": { + "core": { + "uid": "181403", + "sku": "C-UG-I4-A3027", + "name": "Adored By All Blue Top", + "url": "/product/C-UG-I4-A3027", + "addToCartUrl": "/product/C-UG-I4-A3027", + "price": 39, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2675_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2675_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2675_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You ever have the feeling that you’re –supposed- to be treasured, admired, and Adored By All? Well maybe that’s just the universe trying to tell you how special you are. Men should be bowing at your feet, just for the blessing of being in your presence. And women should want to be you. But then again, something tells me that you’re just the right top away from making that happen (assuming it hasn’t already). Model is wearing a small. • 65% Cotton 35% Polyester • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Umgee", + "popularity": "701", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d2c04f102fff9263e16d66285d14d86a", + "intellisuggestData": "eJyyKK0sMcplYGBw1g111_U00XU0NjAyZzBiMDVnMGAwMTExZUgvykwBBAAA__-txAhv", + "intellisuggestSignature": "2e06c47fcb45f0c6ab84bb5bdc6ad566773e5fc9f5933070efa9f0be8eef47bd", + "product_type_unigram": "top", + "sales_rank": [ + "701" + ] + }, + "children": [] + }, + { + "id": "137103", + "mappings": { + "core": { + "uid": "137103", + "sku": "C-PLC-P7-14701", + "name": "Adventure Awaits Tie-Dye Long Sleeve Dress", + "url": "/product/C-PLC-P7-14701", + "addToCartUrl": "/product/C-PLC-P7-14701", + "price": 44, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4619_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4619_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4619_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Go ahead and put this alluring Tie-Dye Long Sleeve Dress on because Adventure Awaits! With a fun and funky tie-dye print and flowy sleeves, it’s impossible not to have a good time in this stunner. With a low scoop back and showing just enough leg, this pleasing print pretty is begging to be taken on a venture. A-line dress features a V-neckline, deep scoop back with a strap across the shoulder blades, and long flowy sleeves. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "642", + "caption": "Captions!" + } + }, + "attributes": { + "id": "a693dc6b12b875188777ca512b8b7c88", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdYNMNc1NDE3MGQwYjC1YDBgMDExMWVIL8pMAQQAAP__t8kIrQ", + "intellisuggestSignature": "8583afc39ae408bd1d85fbc3a5df7ff5bb79de9e1213620e2b0e2e09bc1fe244", + "product_type_unigram": "dress", + "sales_rank": [ + "642" + ] + }, + "children": [] + }, + { + "id": "176896", + "mappings": { + "core": { + "uid": "176896", + "sku": "C-JJ-I4-Q578", + "name": "Adventure Ready Blue Striped Dress", + "url": "/product/C-JJ-I4-Q578", + "addToCartUrl": "/product/C-JJ-I4-Q578", + "price": 34, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3623_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3623_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rdb_studio_2_3623_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Some people are content to live their lives in the safety and security of their own living rooms, wrapped snugly in their sofas while binge watching the entire Netflix catalog. But you were made for more than a life of molding a couch cushion to your perfectly sculpted heiny. And you don’t need a fedora or bull whip to be an adventurer; to dress the part, you need nothing more than this adorable dress. Whether you belong in the great outdoors, or you “belong in a museum,” you’ll be adventure ready in no time. Model is wearing a small. • 90% Cotton 10% Polyester • Machine Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "JJ's Fairyland", + "popularity": "4018", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ef362c66e4bc980c1fffd2c914bcf4e6", + "intellisuggestData": "eJyyKK0sMcplYGBw1vXy0vU00Q00NbdgMGIwtWQwYDAxMTFlSC_KTAEEAAD__6abCFE", + "intellisuggestSignature": "3a1842e55d80ec439aacc97903d8a12d407a4bf3b05b396950514bced8dae7e0", + "product_type_unigram": "dress", + "sales_rank": [ + "4018" + ] + }, + "children": [] + }, + { + "id": "170995", + "mappings": { + "core": { + "uid": "170995", + "sku": "C-AD-R6-774BR", + "name": "After All Rust Orange Dress", + "url": "/product/C-AD-R6-774BR", + "addToCartUrl": "/product/C-AD-R6-774BR", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/02_lcp_7947_copyright_loganpotterf_2016_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/02_lcp_7947_copyright_loganpotterf_2016_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/02_lcp_7947_copyright_loganpotterf_2016_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "After All, comfort reigns supreme when it comes to clothes, and this Rust Orange Dress has got the comfy and cute factor to the fullest! It’s a win-win! This swing sweater dress features a rounded V neck and long sleeves. Model is wearing a small. • 85% Polyester, 10% Rayon, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA", + "stockMessage": "In stock", + "brand": "Adrienne", + "popularity": "452", + "caption": "Captions!" + } + }, + "attributes": { + "id": "5e34633b324d2346b71e5ffd57e34875", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV00Q0y0zU3N3EKYjBiMDNgMGAwMTExZUgvykwBBAAA__-u5QiG", + "intellisuggestSignature": "b1bf002aef57ced0c2e22f46fe110159af784d1ab5544ee80ea0987c37016c0e", + "product_type_unigram": "dress", + "sales_rank": [ + "452" + ] + }, + "children": [] + } + ], + "filters": [], + "facets": [ + { + "field": "brand", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "2B Clothing", + "label": "2B Clothing", + "count": 6 + }, + { + "filtered": false, + "value": "2Hearts", + "label": "2Hearts", + "count": 1 + }, + { + "filtered": false, + "value": "4 Sienna", + "label": "4 Sienna", + "count": 11 + }, + { + "filtered": false, + "value": "5th Avenue", + "label": "5th Avenue", + "count": 34 + }, + { + "filtered": false, + "value": "12 PM by Mon Ami", + "label": "12 PM by Mon Ami", + "count": 10 + }, + { + "filtered": false, + "value": "36point5", + "label": "36point5", + "count": 1 + }, + { + "filtered": false, + "value": "143 Story", + "label": "143 Story", + "count": 6 + }, + { + "filtered": false, + "value": "Aakaa", + "label": "Aakaa", + "count": 25 + }, + { + "filtered": false, + "value": "Activusa", + "label": "Activusa", + "count": 3 + }, + { + "filtered": false, + "value": "Adriana", + "label": "Adriana", + "count": 1 + }, + { + "filtered": false, + "value": "Adrienne", + "label": "Adrienne", + "count": 153 + }, + { + "filtered": false, + "value": "After Market", + "label": "After Market", + "count": 15 + }, + { + "filtered": false, + "value": "Amazing Grace", + "label": "Amazing Grace", + "count": 1 + }, + { + "filtered": false, + "value": "Amazing Spirit", + "label": "Amazing Spirit", + "count": 3 + }, + { + "filtered": false, + "value": "Amazing Sport", + "label": "Amazing Sport", + "count": 8 + }, + { + "filtered": false, + "value": "American Bazi", + "label": "American Bazi", + "count": 3 + }, + { + "filtered": false, + "value": "Amor Us", + "label": "Amor Us", + "count": 1 + }, + { + "filtered": false, + "value": "Anama", + "label": "Anama", + "count": 11 + }, + { + "filtered": false, + "value": "Andrea Bijoux", + "label": "Andrea Bijoux", + "count": 2 + }, + { + "filtered": false, + "value": "ANM", + "label": "ANM", + "count": 4 + }, + { + "filtered": false, + "value": "Anne Michelle", + "label": "Anne Michelle", + "count": 14 + }, + { + "filtered": false, + "value": "Anzell", + "label": "Anzell", + "count": 11 + }, + { + "filtered": false, + "value": "Ark & Co", + "label": "Ark & Co", + "count": 11 + }, + { + "filtered": false, + "value": "Aryeh", + "label": "Aryeh", + "count": 11 + }, + { + "filtered": false, + "value": "Audrey 3+1", + "label": "Audrey 3+1", + "count": 15 + }, + { + "filtered": false, + "value": "Audry 3+1", + "label": "Audry 3+1", + "count": 2 + }, + { + "filtered": false, + "value": "Aura L'atiste", + "label": "Aura L'atiste", + "count": 49 + }, + { + "filtered": false, + "value": "Ayepeach", + "label": "Ayepeach", + "count": 14 + }, + { + "filtered": false, + "value": "B. Sharp", + "label": "B. Sharp", + "count": 3 + }, + { + "filtered": false, + "value": "Bamboo", + "label": "Bamboo", + "count": 71 + }, + { + "filtered": false, + "value": "Ban.do", + "label": "Ban.do", + "count": 3 + }, + { + "filtered": false, + "value": "ban.do", + "label": "ban.do", + "count": 12 + }, + { + "filtered": false, + "value": "Banana", + "label": "Banana", + "count": 4 + }, + { + "filtered": false, + "value": "BB Dakota", + "label": "BB Dakota", + "count": 21 + }, + { + "filtered": false, + "value": "BB Daktota", + "label": "BB Daktota", + "count": 1 + }, + { + "filtered": false, + "value": "Beach Joy", + "label": "Beach Joy", + "count": 20 + }, + { + "filtered": false, + "value": "Beautifully", + "label": "Beautifully", + "count": 1 + }, + { + "filtered": false, + "value": "Beauty Creations", + "label": "Beauty Creations", + "count": 2 + }, + { + "filtered": false, + "value": "Bella Marie", + "label": "Bella Marie", + "count": 5 + }, + { + "filtered": false, + "value": "Bien Bien", + "label": "Bien Bien", + "count": 1 + }, + { + "filtered": false, + "value": "Blu Pepper", + "label": "Blu Pepper", + "count": 18 + }, + { + "filtered": false, + "value": "Blushing Heart", + "label": "Blushing Heart", + "count": 1 + }, + { + "filtered": false, + "value": "BLVD", + "label": "BLVD", + "count": 7 + }, + { + "filtered": false, + "value": "Bo Bel/Hello Miss", + "label": "Bo Bel/Hello Miss", + "count": 1 + }, + { + "filtered": false, + "value": "Bozzolo", + "label": "Bozzolo", + "count": 12 + }, + { + "filtered": false, + "value": "Breckelle's", + "label": "Breckelle's", + "count": 91 + }, + { + "filtered": false, + "value": "Brekelle's", + "label": "Brekelle's", + "count": 10 + }, + { + "filtered": false, + "value": "BSharp", + "label": "BSharp", + "count": 2 + }, + { + "filtered": false, + "value": "Buddy Love", + "label": "Buddy Love", + "count": 9 + }, + { + "filtered": false, + "value": "Cals Collection", + "label": "Cals Collection", + "count": 1 + } + ] + }, + { + "field": "color_family", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Blue", + "label": "Blue", + "count": 755 + }, + { + "filtered": false, + "value": "White", + "label": "White", + "count": 673 + }, + { + "filtered": false, + "value": "Pink", + "label": "Pink", + "count": 530 + }, + { + "filtered": false, + "value": "Beige", + "label": "Beige", + "count": 316 + }, + { + "filtered": false, + "value": "Black", + "label": "Black", + "count": 366 + }, + { + "filtered": false, + "value": "Gray", + "label": "Gray", + "count": 303 + }, + { + "filtered": false, + "value": "Brown", + "label": "Brown", + "count": 174 + }, + { + "filtered": false, + "value": "Red", + "label": "Red", + "count": 261 + }, + { + "filtered": false, + "value": "Green", + "label": "Green", + "count": 237 + }, + { + "filtered": false, + "value": "Yellow", + "label": "Yellow", + "count": 202 + }, + { + "filtered": false, + "value": "Orange", + "label": "Orange", + "count": 97 + }, + { + "filtered": false, + "value": "Purple", + "label": "Purple", + "count": 79 + }, + { + "filtered": false, + "value": "Black, Grey", + "label": "Black, Grey", + "count": 2 + }, + { + "filtered": false, + "value": "Black, Orange", + "label": "Black, Orange", + "count": 2 + } + ] + }, + { + "field": "size", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2791 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2791 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2779 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 521 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 519 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 509 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 504 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 497 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 109 + }, + { + "filtered": false, + "value": "26", + "label": "26", + "count": 72 + }, + { + "filtered": false, + "value": "27", + "label": "27", + "count": 72 + }, + { + "filtered": false, + "value": "28", + "label": "28", + "count": 72 + }, + { + "filtered": false, + "value": "29", + "label": "29", + "count": 72 + }, + { + "filtered": false, + "value": "30", + "label": "30", + "count": 72 + }, + { + "filtered": false, + "value": "25", + "label": "25", + "count": 69 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "24", + "label": "24", + "count": 63 + }, + { + "filtered": false, + "value": "31", + "label": "31", + "count": 58 + }, + { + "filtered": false, + "value": "5", + "label": "5", + "count": 46 + }, + { + "filtered": false, + "value": "1", + "label": "1", + "count": 14 + }, + { + "filtered": false, + "value": "13", + "label": "13", + "count": 14 + }, + { + "filtered": false, + "value": "3", + "label": "3", + "count": 14 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "2", + "label": "2", + "count": 2 + }, + { + "filtered": false, + "value": "4", + "label": "4", + "count": 2 + }, + { + "filtered": false, + "value": "15", + "label": "15", + "count": 1 + } + ] + }, + { + "field": "ss_category_hierarchy", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Gifts for Her", + "label": "Gifts for Her", + "count": 4445 + }, + { + "filtered": false, + "value": "Shop By Trend", + "label": "Shop By Trend", + "count": 1237 + }, + { + "filtered": false, + "value": "What's New", + "label": "What's New", + "count": 573 + }, + { + "filtered": false, + "value": "All Accessories", + "label": "All Accessories", + "count": 473 + }, + { + "filtered": false, + "value": "All Dresses", + "label": "All Dresses", + "count": 400 + }, + { + "filtered": false, + "value": "All Sale", + "label": "All Sale", + "count": 365 + }, + { + "filtered": false, + "value": "All Jewelry", + "label": "All Jewelry", + "count": 342 + }, + { + "filtered": false, + "value": "All Tops", + "label": "All Tops", + "count": 319 + }, + { + "filtered": false, + "value": "Brands We Love", + "label": "Brands We Love", + "count": 274 + }, + { + "filtered": false, + "value": "Notify of Restock", + "label": "Notify of Restock", + "count": 239 + }, + { + "filtered": false, + "value": "Home & Office Decor", + "label": "Home & Office Decor", + "count": 220 + }, + { + "filtered": false, + "value": "All Shoes", + "label": "All Shoes", + "count": 213 + }, + { + "filtered": false, + "value": "Swimwear", + "label": "Swimwear", + "count": 169 + }, + { + "filtered": false, + "value": "Going Fast", + "label": "Going Fast", + "count": 157 + }, + { + "filtered": false, + "value": "All Bottoms", + "label": "All Bottoms", + "count": 140 + }, + { + "filtered": false, + "value": "Playsuits", + "label": "Playsuits", + "count": 139 + }, + { + "filtered": false, + "value": "Special Occasion", + "label": "Special Occasion", + "count": 125 + }, + { + "filtered": false, + "value": "Athleisure", + "label": "Athleisure", + "count": 116 + }, + { + "filtered": false, + "value": "Style Influencer", + "label": "Style Influencer", + "count": 112 + }, + { + "filtered": false, + "value": "Trending", + "label": "Trending", + "count": 112 + }, + { + "filtered": false, + "value": "Memorial Day Sale", + "label": "Memorial Day Sale", + "count": 103 + }, + { + "filtered": false, + "value": "Back in Stock", + "label": "Back in Stock", + "count": 64 + }, + { + "filtered": false, + "value": "Valentine's Day", + "label": "Valentine's Day", + "count": 55 + }, + { + "filtered": false, + "value": "Shop Lookbook", + "label": "Shop Lookbook", + "count": 30 + }, + { + "filtered": false, + "value": "All Intimates", + "label": "All Intimates", + "count": 20 + }, + { + "filtered": false, + "value": "All Pajamas", + "label": "All Pajamas", + "count": 20 + }, + { + "filtered": false, + "value": "White & Blue Looks", + "label": "White & Blue Looks", + "count": 20 + }, + { + "filtered": false, + "value": "Top Rated", + "label": "Top Rated", + "count": 9 + }, + { + "filtered": false, + "value": "Shop By Outfit", + "label": "Shop By Outfit", + "count": 3 + } + ] + }, + { + "field": "price", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": 20, + "high": 30, + "label": "$20 to $30", + "count": 846 + }, + { + "filtered": false, + "low": 30, + "high": 40, + "label": "$30 to $40", + "count": 1618 + }, + { + "filtered": false, + "low": 40, + "high": 50, + "label": "$40 to $50", + "count": 1160 + }, + { + "filtered": false, + "low": 50, + "high": 75, + "label": "$50 to $75", + "count": 435 + }, + { + "filtered": false, + "low": 75, + "high": 100, + "label": "$75 to $100", + "count": 59 + }, + { + "filtered": false, + "low": 100, + "high": 150, + "label": "$100 to $150", + "count": 22 + }, + { + "filtered": false, + "low": 150, + "high": 200, + "label": "$150 to $200", + "count": 4 + }, + { + "filtered": false, + "low": 200, + "high": null, + "label": " over $200", + "count": 3 + } + ] + }, + { + "field": "material", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Wool", + "label": "Wool", + "count": 11 + }, + { + "filtered": false, + "value": "Vegan Leather", + "label": "Vegan Leather", + "count": 6 + }, + { + "filtered": false, + "value": "Spandex", + "label": "Spandex", + "count": 375 + }, + { + "filtered": false, + "value": "Silk", + "label": "Silk", + "count": 16 + }, + { + "filtered": false, + "value": "Rubber", + "label": "Rubber", + "count": 20 + }, + { + "filtered": false, + "value": "Polyester", + "label": "Polyester", + "count": 1353 + }, + { + "filtered": false, + "value": "Linen", + "label": "Linen", + "count": 65 + }, + { + "filtered": false, + "value": "Leather", + "label": "Leather", + "count": 47 + }, + { + "filtered": false, + "value": "Faux Leather", + "label": "Faux Leather", + "count": 39 + }, + { + "filtered": false, + "value": "Denim", + "label": "Denim", + "count": 67 + }, + { + "filtered": false, + "value": "Cotton", + "label": "Cotton", + "count": 657 + }, + { + "filtered": false, + "value": "", + "label": "", + "count": 1789 + } + ] + }, + { + "field": "on_sale", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Yes", + "label": "Yes", + "count": 1500 + }, + { + "filtered": false, + "value": "No", + "label": "No", + "count": 2946 + } + ] + }, + { + "field": "ss_price", + "type": "range", + "filtered": false, + "step": 5, + "range": { + "low": 0, + "high": 280 + }, + "active": { + "low": 0, + "high": 280 + } + }, + { + "field": "size_dress", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2777 + }, + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2789 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2789 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + } + ] + }, + { + "field": "season", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Summer", + "label": "Summer", + "count": 577 + }, + { + "filtered": false, + "value": "Spring", + "label": "Spring", + "count": 444 + }, + { + "filtered": false, + "value": "Fall", + "label": "Fall", + "count": 252 + }, + { + "filtered": false, + "value": "Winter", + "label": "Winter", + "count": 39 + } + ] + }, + { + "field": "pattern", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Print", + "label": "Print", + "count": 353 + }, + { + "filtered": false, + "value": "Floral", + "label": "Floral", + "count": 146 + }, + { + "filtered": false, + "value": "Stripe", + "label": "Stripe", + "count": 128 + }, + { + "filtered": false, + "value": "Embroidered", + "label": "Embroidered", + "count": 89 + }, + { + "filtered": false, + "value": "Plaid", + "label": "Plaid", + "count": 20 + }, + { + "filtered": false, + "value": "Paisley", + "label": "Paisley", + "count": 7 + }, + { + "filtered": false, + "value": "Polka Dot", + "label": "Polka Dot", + "count": 7 + }, + { + "filtered": false, + "value": "Camo", + "label": "Camo", + "count": 6 + }, + { + "filtered": false, + "value": "Dot", + "label": "Dot", + "count": 6 + }, + { + "filtered": false, + "value": "Herringbone", + "label": "Herringbone", + "count": 2 + } + ] + }, + { + "field": "dress_length_name", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Mini", + "label": "Mini", + "count": 192 + }, + { + "filtered": false, + "value": "Micro", + "label": "Micro", + "count": 50 + }, + { + "filtered": false, + "value": "Knee", + "label": "Knee", + "count": 40 + }, + { + "filtered": false, + "value": "Floor", + "label": "Floor", + "count": 54 + }, + { + "filtered": false, + "value": "Calf", + "label": "Calf", + "count": 11 + }, + { + "filtered": false, + "value": "Below Knee", + "label": "Below Knee", + "count": 7 + }, + { + "filtered": false, + "value": "Below knee", + "label": "Below knee", + "count": 3 + }, + { + "filtered": false, + "value": "Ankle", + "label": "Ankle", + "count": 29 + }, + { + "filtered": false, + "value": "Above Knee", + "label": "Above Knee", + "count": 109 + }, + { + "filtered": false, + "value": "Above knee", + "label": "Above knee", + "count": 55 + } + ] + }, + { + "field": "size_footwear", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "5", + "label": "5", + "count": 27 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 498 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 498 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 498 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 497 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 92 + } + ] + }, + { + "field": "collection", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Above The Fray", + "label": "Above The Fray", + "count": 2 + }, + { + "filtered": false, + "value": "Addicted To Love", + "label": "Addicted To Love", + "count": 1 + }, + { + "filtered": false, + "value": "Addicted To Sun", + "label": "Addicted To Sun", + "count": 2 + }, + { + "filtered": false, + "value": "Adore Me", + "label": "Adore Me", + "count": 1 + }, + { + "filtered": false, + "value": "Adventure Ready", + "label": "Adventure Ready", + "count": 1 + }, + { + "filtered": false, + "value": "After Midnight", + "label": "After Midnight", + "count": 3 + }, + { + "filtered": false, + "value": "Ahead Of The Curve", + "label": "Ahead Of The Curve", + "count": 3 + }, + { + "filtered": false, + "value": "All Day Fun", + "label": "All Day Fun", + "count": 2 + }, + { + "filtered": false, + "value": "All In Favor", + "label": "All In Favor", + "count": 3 + }, + { + "filtered": false, + "value": "All Purpose", + "label": "All Purpose", + "count": 3 + }, + { + "filtered": false, + "value": "All The Stripe", + "label": "All The Stripe", + "count": 2 + }, + { + "filtered": false, + "value": "All To Myself", + "label": "All To Myself", + "count": 2 + }, + { + "filtered": false, + "value": "Almost Famous", + "label": "Almost Famous", + "count": 6 + }, + { + "filtered": false, + "value": "Answer To Your Layers", + "label": "Answer To Your Layers", + "count": 4 + }, + { + "filtered": false, + "value": "Around The Track", + "label": "Around The Track", + "count": 2 + }, + { + "filtered": false, + "value": "At My Best", + "label": "At My Best", + "count": 3 + }, + { + "filtered": false, + "value": "Back To The Basics", + "label": "Back To The Basics", + "count": 3 + }, + { + "filtered": false, + "value": "Balancing Act", + "label": "Balancing Act", + "count": 3 + }, + { + "filtered": false, + "value": "Basic Instincts", + "label": "Basic Instincts", + "count": 2 + }, + { + "filtered": false, + "value": "Basically Perfect", + "label": "Basically Perfect", + "count": 4 + }, + { + "filtered": false, + "value": "Basics Of Love", + "label": "Basics Of Love", + "count": 3 + }, + { + "filtered": false, + "value": "Bazaar Beauty", + "label": "Bazaar Beauty", + "count": 6 + }, + { + "filtered": false, + "value": "Beach Please", + "label": "Beach Please", + "count": 4 + }, + { + "filtered": false, + "value": "Beauty In Believing", + "label": "Beauty In Believing", + "count": 4 + }, + { + "filtered": false, + "value": "Because Summer", + "label": "Because Summer", + "count": 2 + }, + { + "filtered": false, + "value": "Best Of Basics", + "label": "Best Of Basics", + "count": 7 + }, + { + "filtered": false, + "value": "Better Than Basic", + "label": "Better Than Basic", + "count": 2 + }, + { + "filtered": false, + "value": "Better Than Flowers", + "label": "Better Than Flowers", + "count": 2 + }, + { + "filtered": false, + "value": "Bloom Or Bust", + "label": "Bloom Or Bust", + "count": 3 + }, + { + "filtered": false, + "value": "Bold Streak", + "label": "Bold Streak", + "count": 6 + }, + { + "filtered": false, + "value": "Breaking Rules", + "label": "Breaking Rules", + "count": 3 + }, + { + "filtered": false, + "value": "Bright This Way", + "label": "Bright This Way", + "count": 2 + }, + { + "filtered": false, + "value": "Bronzed Beauty", + "label": "Bronzed Beauty", + "count": 2 + }, + { + "filtered": false, + "value": "C'est Chic", + "label": "C'est Chic", + "count": 2 + }, + { + "filtered": false, + "value": "California Roots", + "label": "California Roots", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Be Tamed", + "label": "Can't Be Tamed", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Miss Me", + "label": "Can't Miss Me", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Stop The Feeling", + "label": "Can't Stop The Feeling", + "count": 2 + }, + { + "filtered": false, + "value": "Chart Topping", + "label": "Chart Topping", + "count": 4 + }, + { + "filtered": false, + "value": "Chasing Daydreams", + "label": "Chasing Daydreams", + "count": 2 + }, + { + "filtered": false, + "value": "Chic And Easy", + "label": "Chic And Easy", + "count": 2 + }, + { + "filtered": false, + "value": "Chic Cityscape", + "label": "Chic Cityscape", + "count": 3 + }, + { + "filtered": false, + "value": "Chill Girl", + "label": "Chill Girl", + "count": 4 + }, + { + "filtered": false, + "value": "City Of Stars", + "label": "City Of Stars", + "count": 8 + }, + { + "filtered": false, + "value": "Downtown Chic", + "label": "Downtown Chic", + "count": 2 + }, + { + "filtered": false, + "value": "Dream On", + "label": "Dream On", + "count": 3 + }, + { + "filtered": false, + "value": "Dream Street", + "label": "Dream Street", + "count": 4 + }, + { + "filtered": false, + "value": "Feeling Accomplished", + "label": "Feeling Accomplished", + "count": 2 + }, + { + "filtered": false, + "value": "Gossip Girl", + "label": "Gossip Girl", + "count": 20 + }, + { + "filtered": false, + "value": "Got it Bad", + "label": "Got it Bad", + "count": 2 + } + ] + }, + { + "field": "saturation", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "high", + "label": "high", + "count": 39 + }, + { + "filtered": false, + "value": "low", + "label": "low", + "count": 56 + }, + { + "filtered": false, + "value": "med", + "label": "med", + "count": 40 + } + ] + }, + { + "field": "size_pants", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": null, + "high": 1, + "label": "0-1", + "count": 2 + }, + { + "filtered": false, + "low": 2, + "high": 3, + "label": "2-3", + "count": 3 + }, + { + "filtered": false, + "low": 3, + "high": 4, + "label": "3-4", + "count": 3 + }, + { + "filtered": false, + "low": 4, + "high": 5, + "label": "4-5", + "count": 3 + }, + { + "filtered": false, + "low": 5, + "high": 7, + "label": "5-7", + "count": 3 + }, + { + "filtered": false, + "low": 7, + "high": null, + "label": "7 and up", + "count": 75 + } + ] + } + ], + "sorting": [], + "merchandising": { + "redirect": "", + "content": {}, + "campaigns": [] + }, + "search": { + "query": "" + } +} \ No newline at end of file diff --git a/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page3.json b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page3.json new file mode 100644 index 000000000..d4715f7bc --- /dev/null +++ b/packages/snap-shared/src/MockData/search/8uyt2m/infinite.page3.json @@ -0,0 +1,2687 @@ +{ + "pagination": { + "totalResults": 4445, + "page": 3, + "pageSize": 30, + "totalPages": 149 + }, + "results": [ + { + "id": "177092", + "mappings": { + "core": { + "uid": "177092", + "sku": "C-MB-P3-16107", + "name": "After Midnight Blush Pink Dress", + "url": "/product/C-MB-P3-16107", + "addToCartUrl": "/product/C-MB-P3-16107", + "price": 58, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5211_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5211_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_5211_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What happens After Midnight, stays After Midnight ... unless you're Cinderella, in which case then you've got a really tricky shoe to contend with after the fact, but we're going to assume that you're a lot more responsible with your footwear than she was. And a lot more aware of the time (hello, who knows their dress is going to turn into rags and doesn't high tail it out of there before that happens? Just saying), but that's all beside the point. This gorgeous dress is beyond what any fairy godmother could provide because a) it won't turn into produce at any time of day or night and b) it doesn't come with any strings attached. It's just good fashion, pure and simple. Model is wearing a small. ***Convertible Dress*** • 100% Polyester • Dry Clean Only • Lined • Imported", + "stockMessage": "In stock", + "brand": "Marine", + "popularity": "1647", + "caption": "Captions!" + } + }, + "attributes": { + "id": "355a5a4530fe1c572d9d35c9c423a0af", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10g0w1jU0MzQwZzBmMDNkMGAwMTExZUgvykwBBAAA__-rkQhW", + "intellisuggestSignature": "d43c158c6c86bf92cf0f6ca956523b778c440d40b8df67eb59a9757f6144752d", + "product_type_unigram": "dress", + "sales_rank": [ + "1647" + ] + }, + "children": [] + }, + { + "id": "177087", + "mappings": { + "core": { + "uid": "177087", + "sku": "C-MB-W2-16107", + "name": "After Midnight Ivory Dress", + "url": "/product/C-MB-W2-16107", + "addToCartUrl": "/product/C-MB-W2-16107", + "price": 58, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5190_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5190_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_5190_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What happens After Midnight, stays After Midnight ... unless you're Cinderella, in which case then you've got a really tricky shoe to contend with after the fact, but we're going to assume that you're a lot more responsible with your footwear than she was. And a lot more aware of the time (hello, who knows their dress is going to turn into rags and doesn't high tail it out of there before that happens? Just saying), but that's all beside the point. This gorgeous dress is beyond what any fairy godmother could provide because a) it won't turn into produce at any time of day or night and b) it doesn't come with any strings attached. It's just good fashion, pure and simple. Model is wearing a small. ***Convertible Dress*** • 100% Polyester • Dry Clean Only • Lined • Imported", + "stockMessage": "In stock", + "brand": "Marine", + "popularity": "3785", + "caption": "Captions!" + } + }, + "attributes": { + "id": "f42b9328c21bea563a92a2f0fcc41dde", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10g030jU0MzQwZzBmMDNiMGAwMTExZUgvykwBBAAA__-sNQhd", + "intellisuggestSignature": "b524b39316a6c2c7dad01eaa049a8dc88accd423bc197f3c5b7315410116ec52", + "product_type_unigram": "dress", + "sales_rank": [ + "3785" + ] + }, + "children": [] + }, + { + "id": "177097", + "mappings": { + "core": { + "uid": "177097", + "sku": "C-MB-E3-16107", + "name": "After Midnight Light Sage Dress", + "url": "/product/C-MB-E3-16107", + "addToCartUrl": "/product/C-MB-E3-16107", + "price": 58, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5220-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_5220-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_5220-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What happens After Midnight, stays After Midnight ... unless you're Cinderella, in which case then you've got a really tricky shoe to contend with after the fact, but we're going to assume that you're a lot more responsible with your footwear than she was. And a lot more aware of the time (hello, who knows their dress is going to turn into rags and doesn't high tail it out of there before that happens? Just saying), but that's all beside the point. This gorgeous dress is beyond what any fairy godmother could provide because a) it won't turn into produce at any time of day or night and b) it doesn't come with any strings attached. It's just good fashion, pure and simple. Model is wearing a small. ***Convertible Dress*** • 100% Polyester • Dry Clean Only • Lined • Imported", + "stockMessage": "In stock", + "brand": "Marine", + "popularity": "1561", + "caption": "Captions!" + } + }, + "attributes": { + "id": "aaa9cd46d93ab9b2abdf8e2250284ee4", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10nU11jU0MzQwZzBmMDNmMGAwMTExZUgvykwBBAAA__-qmAhN", + "intellisuggestSignature": "ab014b56b3e55bc9ca06352e5185675443bd699626059fa679d62def77d51549", + "product_type_unigram": "dress", + "sales_rank": [ + "1561" + ] + }, + "children": [] + }, + { + "id": "182562", + "mappings": { + "core": { + "uid": "182562", + "sku": "C-TI-R5-00232", + "name": "Afternoon Date Red Gingham Off-The-Shoulder Top", + "url": "/product/C-TI-R5-00232", + "addToCartUrl": "/product/C-TI-R5-00232", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3215_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3215_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3215_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Got my afternoon packed and I'm ready to go! My books, bottle of fine wine and expensive cheeses (cause that's how I roll) are nicely tucked into this vintage basket that I scored at my favorite antique store, and I'm wearing my favorite Afternoon Date Gingham Off The Shoulder Top! If anything, I'm the cutest sight in the entire world! And yes, I am a sight to behold. A wonder if ever there were... Model is wearing an small. • 97% Cotton 3% Spandex • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Timing", + "popularity": "2633", + "caption": "Captions!" + } + }, + "attributes": { + "id": "39af9dbaff02d3126494afe25e81a25e", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3x1A0y1TUwMDI2YjBmMDNhMGAwMTExZUgvykwBBAAA__-s-ghj", + "intellisuggestSignature": "c6ecf3afeba8d04e54ca6104ef5a5455318766d2bb3f04d174c5c7bcbe4aced7", + "product_type_unigram": "top", + "sales_rank": [ + "2633" + ] + }, + "children": [] + }, + { + "id": "133331", + "mappings": { + "core": { + "uid": "133331", + "sku": "C-PLC-I2-04601", + "name": "Afternoon Dreaming Dress", + "url": "/product/C-PLC-I2-04601", + "addToCartUrl": "/product/C-PLC-I2-04601", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0673_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0673_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0673_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Get ready for some “Afternoon Dreaming” because this mesmerizing dress will make you look so ethereal it must be an illusion. Pinch yourself because you’re not dreaming. You’re a ravishing reality. A-line sleeveless dress with a scoop neckline and a keyhole at the back with a button loop closure. • 100% Polyester • Hand Wash Cold • Fully Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "PLC", + "popularity": "981", + "caption": "Captions!" + } + }, + "attributes": { + "id": "8e842fddbb9c2fdc2bb3b498d99f469e", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3wcdb1NNI1MDEzMGQwZjAzZTBgMDExMWVIL8pMAQQAAP__tm8Ing", + "intellisuggestSignature": "4bed401a624e8c5e32c2c55d415f787aa59b1eb1d92ba9e6c74a7f5cb14ae257", + "product_type_unigram": "dress", + "sales_rank": [ + "981" + ] + }, + "children": [] + }, + { + "id": "124160", + "mappings": { + "core": { + "uid": "124160", + "sku": "C-LAT-I5-9573J", + "name": "Afternoon Tea Dress", + "url": "/product/C-LAT-I5-9573J", + "addToCartUrl": "/product/C-LAT-I5-9573J", + "price": 53.5, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8134_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8134_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a8134_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Give the ladies who lunch something to talk about over “Afternoon Tea” when you show up wearing this dress!! Chic and absolutely girly, the printed spots on this dress are sure to give you standout style as you have a spot of tea and beyond!! Apron style dress features a midi skirt, functional side pocket slits, and an open back with a hidden zipper. Fully Lined. 60% Polyester, 40% Cotton. Wash by hand in cold water. Hang to dry. Do not bleach. Made in China. Model is wearing a small.", + "stockMessage": "In stock", + "brand": "L'Atiste", + "popularity": "1227", + "caption": "Captions!" + } + }, + "attributes": { + "id": "68af69a1f0ee1eaadb95fb6b3ba708c5", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVxDNH1NNW1NDU39mIwZjAzYzBgMDExMWVIL8pMAQQAAP__udEIyw", + "intellisuggestSignature": "b013b52fa4af8a1e40e04e955647c5fbc436f389f96d41387c3aac56a0b17732", + "product_type_unigram": "dress", + "sales_rank": [ + "1227" + ] + }, + "children": [] + }, + { + "id": "183251", + "mappings": { + "core": { + "uid": "183251", + "sku": "F-QPD-G7-DEN26", + "name": "Ahead Of The Curve Black Ankle-Strap Heels", + "url": "/product/F-QPD-G7-DEN26", + "addToCartUrl": "/product/F-QPD-G7-DEN26", + "price": 28, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/shoesession0052_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/shoesession0052_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/shoesession0052_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You might have been one of those super smart types who was always Ahead Of The Curve in school, but even if you weren't, you can be now in these adorable heels. RDB Stylists recommended sizing down a half size. Heel Height 2\\\" • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "Qupid", + "popularity": "545", + "caption": "Captions!" + } + }, + "attributes": { + "id": "8408530a669ccb531707656016a86341", + "intellisuggestData": "eJyyKK0sMcplYGBw0w0McNF1N9d1cfUzMmMwZjAzZzBgMDExMWVIL8pMAQQAAP__vVEI8A", + "intellisuggestSignature": "4e89f77aeea2da0f31c6fabe3d7b97773e4b164cdcc44c84daae9942daea6db3", + "product_type_unigram": "heels", + "sales_rank": [ + "545" + ] + }, + "children": [] + }, + { + "id": "174552", + "mappings": { + "core": { + "uid": "174552", + "sku": "F-QPD-P1-DEN26", + "name": "Ahead Of The Curve Dusty Peach Ankle-Strap Heels", + "url": "/product/F-QPD-P1-DEN26", + "addToCartUrl": "/product/F-QPD-P1-DEN26", + "price": 28, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a1575_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a1575_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a1575_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You might have been one of those super smart types who was always Ahead Of The Curve in school, but even if you weren't, you can be now in these adorable heels. RDB Stylists recommended sizing down a half size. Heel Height 2\\\" • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "Qupid", + "popularity": "4", + "caption": "Captions!" + } + }, + "attributes": { + "id": "e34b60abcd0536bfbcace3381d6a063d", + "intellisuggestData": "eJyyKK0sMcplYGBw0w0McNENMNR1cfUzMmMwZjCzYDBgMDExMWVIL8pMAQQAAP__va8I9A", + "intellisuggestSignature": "4a8a2f37bb1e81536c1f0b2b15e7fa4ec0dcef483039614723065517353167c5", + "product_type_unigram": "heels", + "sales_rank": [ + "4" + ] + }, + "children": [] + }, + { + "id": "175831", + "mappings": { + "core": { + "uid": "175831", + "sku": "F-QPD-G1-DEN26", + "name": "Ahead Of The Curve Gray Ankle-Strap Heels", + "url": "/product/F-QPD-G1-DEN26", + "addToCartUrl": "/product/F-QPD-G1-DEN26", + "price": 28, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_1_13_accessories_2452_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_1_13_accessories_2452_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/17_1_13_accessories_2452_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You might have been one of those super smart types who was always Ahead Of The Curve in school, but even if you weren't, you can be now in these adorable heels. RDB Stylists recommended sizing down a half size. Heel Height 2\\\" • Vegan friendly, man made materials • Imported", + "stockMessage": "In stock", + "brand": "Qupid", + "popularity": "1526", + "caption": "Captions!" + } + }, + "attributes": { + "id": "3929bd3e75705abf2962822f93359d20", + "intellisuggestData": "eJyyKK0sMcplYGBw0w0McNF1N9R1cfUzMmMwZjCzZDBgMDExMWVIL8pMAQQAAP__vNsI7A", + "intellisuggestSignature": "9c7bab4ac93b2c0e6c560f61ea83d92151feec90776b9a0b73d93a3071ed7b66", + "product_type_unigram": "heels", + "sales_rank": [ + "1526" + ] + }, + "children": [] + }, + { + "id": "128959", + "mappings": { + "core": { + "uid": "128959", + "sku": "C-PE-P1-3462G", + "name": "Ain't She Sweet Dress", + "url": "/product/C-PE-P1-3462G", + "addToCartUrl": "/product/C-PE-P1-3462G", + "price": 36, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6236_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6236_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a6236_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Sugar and spice and everything nice, you’re the girl next door with a smile that lights up the room. Strolling down the street, you’re sure to overhear someone singing, “sugar, sugar, how’d you get so fine?” To which you just reply with that delectable smile. Sleeveless shift dress with a mock turtleneck. Model is wearing a small. • 95% Polyester, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA Length: Small measures 32\\\", Medium measures 32.5\\\", Large measures 33\\\" Bust: Small measures 42\\\", Medium measures 43\\\", Large measures 44\\\"", + "stockMessage": "In stock", + "brand": "Pepper", + "popularity": "2266", + "caption": "Captions!" + } + }, + "attributes": { + "id": "61602747c7496bdbaf550334521d604b", + "intellisuggestData": "eJyyKK0sMcplYGBw1g1w1Q0w1DU2MTNyZzBmMDdgMGAwMTExZUgvykwBBAAA__-tswhx", + "intellisuggestSignature": "98edd9bee42293b74d2bad9f676fd9d2e702a6463df01dcf220234564775b052", + "product_type_unigram": "dress", + "sales_rank": [ + "2266" + ] + }, + "children": [] + }, + { + "id": "128920", + "mappings": { + "core": { + "uid": "128920", + "sku": "C-PE-E2-3462G", + "name": "Ain't She Sweet Dress", + "url": "/product/C-PE-E2-3462G", + "addToCartUrl": "/product/C-PE-E2-3462G", + "price": 36, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6320_1_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6320_1_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a6320_1_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Sugar and spice and everything nice, you’re the girl next door with a smile that lights up the room. Strolling down the street, you’re sure to overhear someone singing, “sugar, sugar, how’d you get so fine?” To which you just reply with that delectable smile. Sleeveless shift dress with a mock turtleneck. Model is wearing a small. • 95% Polyester, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA Length: Small measures 32\\\", Medium measures 32.5\\\", Large measures 33\\\" Bust: Small measures 42\\\", Medium measures 43\\\", Large measures 44\\\"", + "stockMessage": "In stock", + "brand": "Pepper", + "popularity": "4058", + "caption": "Captions!" + } + }, + "attributes": { + "id": "e04088a74b5ace17e028342411381fed", + "intellisuggestData": "eJyyKK0sMcplYGBw1g1w1XU10jU2MTNyZzBmMDdkMGAwMTExZUgvykwBBAAA__-sxQho", + "intellisuggestSignature": "9199cb9f01ab52bbc59f036d4f94fc8814a12aca2f9b71ab2e3055749ed2f1de", + "product_type_unigram": "dress", + "sales_rank": [ + "4058" + ] + }, + "children": [] + }, + { + "id": "128887", + "mappings": { + "core": { + "uid": "128887", + "sku": "C-PE-V3-3462G", + "name": "Ain't She Sweet Dress", + "url": "/product/C-PE-V3-3462G", + "addToCartUrl": "/product/C-PE-V3-3462G", + "price": 36, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6348_2_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a6348_2_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a6348_2_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Sugar and spice and everything nice, you’re the girl next door with a smile that lights up the room. Strolling down the street, you’re sure to overhear someone singing, “sugar, sugar, how’d you get so fine?” To which you just reply with that delectable smile. Sleeveless shift dress with a mock turtleneck. Model is wearing a small. • 95% Polyester, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA Length: Small measures 32\\\", Medium measures 32.5\\\", Large measures 33\\\" Bust: Small measures 42\\\", Medium measures 43\\\", Large measures 44\\\"", + "stockMessage": "In stock", + "brand": "Pepper", + "popularity": "2953", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d699eaa463362b408c3adc53287ac335", + "intellisuggestData": "eJyyKK0sMcplYGBw1g1w1Q0z1jU2MTNyZzBmMDdiMGAwMTExZUgvykwBBAAA__-ukwh7", + "intellisuggestSignature": "e34b4fb9f02a9fbb0458510312fe0ac2e400968b63d6d1e46b95adde5aab7589", + "product_type_unigram": "dress", + "sales_rank": [ + "2953" + ] + }, + "children": [] + }, + { + "id": "179563", + "mappings": { + "core": { + "uid": "179563", + "sku": "C-MB-I6-16029", + "name": "Air Of Elegance Navy Lace Dress", + "url": "/product/C-MB-I6-16029", + "addToCartUrl": "/product/C-MB-I6-16029", + "price": 62, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_03_20_studio_26391_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/17_03_20_studio_26391_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/17_03_20_studio_26391_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Instead of having an air of arrogance (which we’ve all had enough of seeing in other people to last us a lifetime) why not give off an Air Of Elegance of your own? With another one of our winning lace dresses, that is sure to stun any one of your gentleman suitors, and frankly, everyone who sees you. Great for parties, dates, nights out with the girls, brunches, you name it! Navy lace midi dress features a nude lining and sheer neckline. Has an invisible back zipper topped with a hook and eye closure. Model is wearing a small. • 100% Polyester • Dry Clean Only • Unlined • Made in the USA • Imported", + "stockMessage": "In stock", + "brand": "Marine", + "popularity": "2723", + "caption": "Captions!" + } + }, + "attributes": { + "id": "2d07ba95159aa5c527c18cc2eaddb673", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10vU00zU0MzCyZDBmMDdmMGAwMTExZUgvykwBBAAA__-riAhY", + "intellisuggestSignature": "086dcad5419184d0c03c80ed4d2b2b99a51c9a2e22ec6504620e32ac9a683939", + "product_type_unigram": "dress", + "sales_rank": [ + "2723" + ] + }, + "children": [] + }, + { + "id": "168563", + "mappings": { + "core": { + "uid": "168563", + "sku": "C-DB-P2-86QCU", + "name": "Air Of Romance Pink Off-The-Shoulder Dress", + "url": "/product/C-DB-P2-86QCU", + "addToCartUrl": "/product/C-DB-P2-86QCU", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/lcp_7433_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/lcp_7433_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/lcp_7433_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "You’ll create an Air of Romance and picturesque scenery with this lovely Pink Off The Shoulder Dress. Can we bottle this moment?! This shift dress features an elastic off the shoulder neckline and ¾ length tie sleeves. Model is wearing a small. • 60% Cupro, 40% Rayon • Hand Wash Cold • Unlined • Faintly Sheer • Imported", + "stockMessage": "In stock", + "brand": "Do+Be", + "popularity": "3402", + "caption": "Captions!" + } + }, + "attributes": { + "id": "7b6451a1769e0e8004720f530b6f20df", + "intellisuggestData": "eJyyKK0sMcplYGBw1nVx0g0w0rUwC3QOZTBmMDdhMGAwMTExZUgvykwBBAAA__-xUQio", + "intellisuggestSignature": "4c8d774a9831ec1360055c6999996574a3b5926bdbd00b0e94096b47bb3cae07", + "product_type_unigram": "dress", + "sales_rank": [ + "3402" + ] + }, + "children": [] + }, + { + "id": "180855", + "mappings": { + "core": { + "uid": "180855", + "sku": "C-STY-R4-1596B", + "name": "Al Fresco Multi Print Bikini Bottom", + "url": "/product/C-STY-R4-1596B", + "addToCartUrl": "/product/C-STY-R4-1596B", + "price": 25, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/1120_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/1120_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/1120_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Little known fact that Wikipedia will let you in on, “The phrase al fresco is borrowed from Italian for \\\"in the cool [air]\\\", although it is not in current use in that language to refer to dining outside. Instead, Italians use the phrases fuori or all'aperto. In Italian, the expression al fresco usually refers to spending time in jail.” Why do we bring this to your attention? Because you are going to look positively criminal in this bikini. Seriously. It should be against the law to go out in public looking this good, but it totally isn’t, lucky for everyone who will be laying eyes on you. Bottom has a traditional silhouette with banded sides. Model is wearing a small. • 82% Nylon 18% Spandex • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Stylish", + "popularity": "3292", + "caption": "Captions!" + } + }, + "attributes": { + "id": "6a3cc86df1ce27142736abd166226728", + "intellisuggestData": "eJyyKK0sMcplYGBw1g0OidQNMtE1NLU0c2IwZjA3ZTBgMDExMWVIL8pMAQQAAP__vSII5w", + "intellisuggestSignature": "6b7eef94aa6c3f150e97a2af5a3e6b468f41c461d4dc4d6cdb583bc731ec7a7e", + "product_type_unigram": "bottom", + "sales_rank": [ + "3292" + ] + }, + "children": [] + }, + { + "id": "180859", + "mappings": { + "core": { + "uid": "180859", + "sku": "C-STY-R4-H1596", + "name": "Al Fresco Multi Print Bikini Top", + "url": "/product/C-STY-R4-H1596", + "addToCartUrl": "/product/C-STY-R4-H1596", + "price": 25, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2m4a8845_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2m4a8845_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2m4a8845_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Little known fact that Wikipedia will let you in on, “The phrase al fresco is borrowed from Italian for \\\"in the cool [air]\\\", although it is not in current use in that language to refer to dining outside. Instead, Italians use the phrases fuori or all'aperto. In Italian, the expression al fresco usually refers to spending time in jail.” Why do we bring this to your attention? Because you are going to look positively criminal in this bikini. Seriously. It should be against the law to go out in public looking this good, but it totally isn’t, lucky for everyone who will be laying eyes on you. Strapless top features a deep slip v neckline, tie back and an adjustable/removable halter strap. Top has removable padded inserts. Model is wearing a small. • 82% Nylon 18% Spandex • Hand Wash Cold • Unlined • Imported", + "stockMessage": "In stock", + "brand": "Stylish", + "popularity": "1353", + "caption": "Captions!" + } + }, + "attributes": { + "id": "24dfce446f244f78067382d15204bf84", + "intellisuggestData": "eJyyKK0sMcplYGBw1g0OidQNMtH1MDS1NGMwZjA3YzBgMDExMWVIL8pMAQQAAP__veYI7g", + "intellisuggestSignature": "edcbafe2d4e66364085ec21d43b931b4f5918e4440a7c008f3653c7540eae596", + "product_type_unigram": "top", + "sales_rank": [ + "1353" + ] + }, + "children": [] + }, + { + "id": "118351", + "mappings": { + "core": { + "uid": "118351", + "sku": "C-LS-W2-P5876", + "name": "All About It Cardigan", + "url": "/product/C-LS-W2-P5876", + "addToCartUrl": "/product/C-LS-W2-P5876", + "price": 65.5, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1517_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1517_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a1517_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Extra, extra, read “All About It”!! Get ready to be front page news when you step out in this cardigan that is sure to have heads turning and cameras flashes flashing!! Sure to come in and be the only cover up you need to show the world what it is “All About”!! In case inquiring minds come about and want to know, clue them in and say “Style and Taste”!! Open front cardigan features a hood and fringe on the hemline. Unlined. 50% Cotton, 50% Acrylic. Wash by hand in cold water or dry clean. Reshape and lay flat to dry. Iron low. Do not bleach. Made in China. One Size.", + "stockMessage": "In stock", + "brand": "Love Stitch", + "popularity": "369", + "caption": "Captions!" + } + }, + "attributes": { + "id": "704d2debfed48e81db2c6efe6a3909a7", + "intellisuggestData": "eJyyKK0sMcplYGBw1vUJ1g030g0wtTA3YzBmMDdnMGAwMTExZUgvykwBBAAA__-xxwie", + "intellisuggestSignature": "4f9619e2a4fe29969ae1dc07f041e56d8057d104bb05ace51548195f8a9e2912", + "product_type_unigram": "cardigan", + "sales_rank": [ + "369" + ] + }, + "children": [] + }, + { + "id": "178938", + "mappings": { + "core": { + "uid": "178938", + "sku": "C-ETC-G7-HR292", + "name": "All About The Chase Black Embroidered Romper", + "url": "/product/C-ETC-G7-HR292", + "addToCartUrl": "/product/C-ETC-G7-HR292", + "price": 46, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0555__copyright_reddressboutique_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0555__copyright_reddressboutique_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0555__copyright_reddressboutique_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What is love if it's not All About The Chase? The fun is in the coyness at first, the flirtation, and the hints of what could be. The exciting moments of wondering what the future holds and dreaming about it. This feisty Embroidered Romper reminds us of that chase, that excitement, that early endorphin rush and everything that could be ... everything that might be ... everything that should be. Can't you feel it in your bones? The potential? You will once you try on this romper and realize how fantastic you look in it. It might even change your outlook on everything in your life. Next thing you know, you'll be applying for a better job, upgrading your place, and looking for better things everywhere you turn. Model is wearing a small. • 100% Rayon • Dry Clean Only • Lined, not sheer • Imported", + "stockMessage": "In stock", + "brand": "E2 Clothing", + "popularity": "3411", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d8a991f80f953fb73c1409e8605a2183", + "intellisuggestData": "eJyyKK0sMcplYGBw1nUNcdZ1N9f1CDKyNGIwZjC3YDBgMDExMWVIL8pMAQQAAP__u34I3g", + "intellisuggestSignature": "4b29b2c4a7aa83fc17cd90491d172e0d392a4cfbf4cbe474f25b1cd6bf591336", + "product_type_unigram": "romper", + "sales_rank": [ + "3411" + ] + }, + "children": [] + }, + { + "id": "126827", + "mappings": { + "core": { + "uid": "126827", + "sku": "C-EC-W1-389BZ", + "name": "All Around Me Dress", + "url": "/product/C-EC-W1-389BZ", + "addToCartUrl": "/product/C-EC-W1-389BZ", + "price": 41, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3823_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3823_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a3823_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "When everything “All Around Me” is just the ticket that you need, there’s no limit to where you can go!! And with this printed number being your boarding pass to style, the hardest choice you will have to make is where this will show up first?? No matter if it’s downtown or somewhere “Around” the world, there is nothing that can stand in your way!! Print dress with a split scoop neckline and sheer crocheted lace on the bodice. • Self: 100% Rayon • Contrast: 75% Cotton, 25% Polyester • Hand Wash Cold • Unlined • Faintly Sheer", + "stockMessage": "In stock", + "brand": "En Creme", + "popularity": "3611", + "caption": "Captions!" + } + }, + "attributes": { + "id": "f6cec65abd1bcaf25baf8545aad64b31", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV11g031DW2sHSKYjBmMLdkMGAwMTExZUgvykwBBAAA__-wgwie", + "intellisuggestSignature": "1833457e90b2aed9a29a3e5f3938133b9ff0fe55dce0d3a363f842be1b0e5e8b", + "product_type_unigram": "dress", + "sales_rank": [ + "3611" + ] + }, + "children": [] + }, + { + "id": "119437", + "mappings": { + "core": { + "uid": "119437", + "sku": "C-POL-W2-YES80", + "name": "All Around Town Ivory V-Neck Top", + "url": "/product/C-POL-W2-YES80", + "addToCartUrl": "/product/C-POL-W2-YES80", + "price": 29.5, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7923_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7923_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7923_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Get All Around Town in style and comfort in this simply cute Ivory V-Neck Top. Whether it’s a day of window shopping or running errands, you’ll look great while you make your way. And who doesn’t love a tee with a pocket?! This long t-shirt features a deep V-neckline and a single breast pocket. Model is wearing a small. • 60% Cotton, 35% Polyester, 5% Spandex • Hand Wash Cold • Unlined • Sheer • Imported", + "stockMessage": "In stock", + "brand": "POL Clothing", + "popularity": "534", + "caption": "Captions!" + } + }, + "attributes": { + "id": "5c3eae7221a27c0679ef33ada1d76f3d", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3w99ENN9KNdA22MGAwZrAwYDBgMDExMWVIL8pMAQQAAP__wKQJEw", + "intellisuggestSignature": "8e22298aa5c513bcd89648b67dd769a6086ea42ae13a358894c9a3658a38aa01", + "product_type_unigram": "top", + "sales_rank": [ + "534" + ] + }, + "children": [] + }, + { + "id": "171999", + "mappings": { + "core": { + "uid": "171999", + "sku": "C-PM-R6-T3788", + "name": "All Day Favorite Brick Red Top", + "url": "/product/C-PM-R6-T3788", + "addToCartUrl": "/product/C-PM-R6-T3788", + "price": 38, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/363_lcp_1924_copyright_loganpotterf_2016-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/363_lcp_1924_copyright_loganpotterf_2016-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/363_lcp_1924_copyright_loganpotterf_2016-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What do puppy kisses, freshly-laundered sheets, and the feeling you get when you've just had your hair done at the salon and you LOVE everything about it, have in common? None of them can hold a candle to how awesome this top is, or the excitement you'll feel pulling it out of your closet. Don't get us wrong, the freshly-laundered sheets are a very close second, yet still, this top is THE ray of sunshine you've been looking for. You're welcome. P.S. Bet you're thinking about washing your sheets now. •70% Modal •30% Polyester •Hand Wash Cold •Unlined", + "stockMessage": "In stock", + "brand": "Paper Moon", + "popularity": "796", + "caption": "Captions!" + } + }, + "attributes": { + "id": "497260ba615c513ba402eccd71488c42", + "intellisuggestData": "eJyyKK0sMcplYGBw1g3w1Q0y0w0xNrewYDBmsDBkMGAwMTExZUgvykwBBAAA__-xiQia", + "intellisuggestSignature": "45e790464cc4ee4dfadc6dc4b69e45888f5b52358abcacb7a52774ea3ebe3bb5", + "product_type_unigram": "top", + "sales_rank": [ + "796" + ] + }, + "children": [] + }, + { + "id": "179187", + "mappings": { + "core": { + "uid": "179187", + "sku": "C-AFT-G7-52P7S", + "name": "All Day Fun Black Shorts", + "url": "/product/C-AFT-G7-52P7S", + "addToCartUrl": "/product/C-AFT-G7-52P7S", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_7342_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_7342_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_7342_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What's more classic and preppy than a cute pair of black shorts? Complements any look you're going for and provides All Day Fun. Pair with an adorable top, and you literally cannot go wrong. Unless your choice of company happens to be bad of course. In that case, might we suggest that you have a friend call and feign an emergency? We'd hate to see you waste such a fabulous outfit. Model is wearing a small. • 100% Poly • Hand Wash Cold • Lined, sheer • Imported", + "stockMessage": "In stock", + "brand": "After Market", + "popularity": "1251", + "caption": "Captions!" + } + }, + "attributes": { + "id": "ab93e05f6aee57caf9c39f907a582b9f", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV0C9F1N9c1NQowD2YwZrAwYjBgMDExMWVIL8pMAQQAAP__u08I4g", + "intellisuggestSignature": "597fd7c5f122b06cd78199892133ccc04fccc8cff4b291a466b9d3f0a4d254ec", + "product_type_unigram": "shorts", + "sales_rank": [ + "1251" + ] + }, + "children": [] + }, + { + "id": "177705", + "mappings": { + "core": { + "uid": "177705", + "sku": "C-AFT-W1-52P7S", + "name": "All Day Fun White Shorts", + "url": "/product/C-AFT-W1-52P7S", + "addToCartUrl": "/product/C-AFT-W1-52P7S", + "price": 42, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_6778_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_6778_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_6778_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What's more classic and preppy than a cute pair of white shorts? Complements any look you're going for and provides All Day Fun. Pair with an adorable top, and you literally cannot go wrong. Unless your choice of company happens to be bad of course. In that case, might we suggest that you have a friend call and feign an emergency? We'd hate to see you waste such a fabulous outfit. Model is wearing a small. • 100% Poly • Hand Wash Cold • Lined, sheer • Imported", + "stockMessage": "In stock", + "brand": "After Market", + "popularity": "1514", + "caption": "Captions!" + } + }, + "attributes": { + "id": "02cc71ca51e51c3e872018926aa52e39", + "intellisuggestData": "eJyyKK0sMcplYGBw1nV0C9ENN9Q1NQowD2YwZrAwZjBgMDExMWVIL8pMAQQAAP__vFwI7Q", + "intellisuggestSignature": "4f5e5b65d7752c7bfc5a0f5c6367bea311f0a49f65f9679fa84140e6b2703efc", + "product_type_unigram": "shorts", + "sales_rank": [ + "1514" + ] + }, + "children": [] + }, + { + "id": "182457", + "mappings": { + "core": { + "uid": "182457", + "sku": "C-MB-V3-16375", + "name": "All Eyes On Her Dusty Purple Maxi Dress", + "url": "/product/C-MB-V3-16375", + "addToCartUrl": "/product/C-MB-V3-16375", + "price": 68, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5691_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5691_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5691_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Strapless gown features a sweetheart neckline with a lace overlay bodice and pleated skirt. Dress has a hidden back zipper with hook and eye closure. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Imported", + "stockMessage": "In stock", + "brand": "Ever After", + "popularity": "2630", + "caption": "Captions!" + } + }, + "attributes": { + "id": "fe4cfd51f4ee5e2cd16bbccaef4e9caa", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10g0z1jU0MzY3ZTBmsDBhMGAwMTExZUgvykwBBAAA__-s8who", + "intellisuggestSignature": "aa8f9cbbcb4bca7bca1a9cd0ac01e37c026498bca347c9e8eca6975d4a4d20f1", + "product_type_unigram": "dress", + "sales_rank": [ + "2630" + ] + }, + "children": [] + }, + { + "id": "182461", + "mappings": { + "core": { + "uid": "182461", + "sku": "C-MB-P2-16375", + "name": "All Eyes On Her Pink Maxi Dress", + "url": "/product/C-MB-P2-16375", + "addToCartUrl": "/product/C-MB-P2-16375", + "price": 68, + "msrp": 75, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5684_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5684_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5684_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "How many times have you wanted to shrink back into the crowd and have no one notice you? Wallflower much? Perks or no. Well, sometimes, that's simply not going to be possible. There's just not a chance on this earth that when you walk in wearing a dress like this, looking as stunning as you do, that All Eyes won't be on you instantly. Who can blame them? Have you seen you? Strapless gown features a sweetheart neckline with a lace overlay bodice and pleated skirt. Dress has a hidden back zipper with hook and eye closure. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Imported", + "stockMessage": "In stock", + "brand": "Ever After", + "popularity": "1167", + "caption": "Captions!" + } + }, + "attributes": { + "id": "73b37db0b495960bf6500aef9abb157e", + "intellisuggestData": "eJyyKK0sMcplYGBw1vV10g0w0jU0MzY3ZTBmsDBlMGAwMTExZUgvykwBBAAA__-sUghi", + "intellisuggestSignature": "abc25706b9eb4d5eed42047ad74aa7114216150fa9a3b74914c411a61de05ffd", + "product_type_unigram": "dress", + "sales_rank": [ + "1167" + ] + }, + "children": [] + }, + { + "id": "153888", + "mappings": { + "core": { + "uid": "153888", + "sku": "C-NBK-E5-T5168", + "name": "All Eyes On You Green Top", + "url": "/product/C-NBK-E5-T5168", + "addToCartUrl": "/product/C-NBK-E5-T5168", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1416_1_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1416_1_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a1416_1_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "It’ll be All Eyes On You, watching whatever you do when you’re in this gorgeous Green Top. Whether you’re performing some amazing talent or just dallying around trying to find something to do, they’ll be interested in watching someone so lovely! This top features a triangle bodice with spaghetti straps and a handkerchief hemline. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Newbury Kustom", + "popularity": "751", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d60914c6a388483f7f11c643b60c5d4e", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVz8tZ1NdUNMTU0s2AwZrAwYzBgMDExMWVIL8pMAQQAAP__ubsIyQ", + "intellisuggestSignature": "df80e5daa65cb070f32b9007cfdb000938af9dc6d68c884d18156426a87c56c8", + "product_type_unigram": "top", + "sales_rank": [ + "751" + ] + }, + "children": [] + }, + { + "id": "147275", + "mappings": { + "core": { + "uid": "147275", + "sku": "C-NBK-P6-T5168", + "name": "All Eyes On You Hot Pink Top", + "url": "/product/C-NBK-P6-T5168", + "addToCartUrl": "/product/C-NBK-P6-T5168", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0062_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0062_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0062_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "It’ll be All Eyes On You when you step out in this head-turning Hot Pink Top! This top features a triangle bodice with spaghetti straps and a handkerchief hemline. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Newbury Kustom", + "popularity": "1827", + "caption": "Captions!" + } + }, + "attributes": { + "id": "84e73fbdd3b8a3e87969997c7d2312e0", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVz8tYNMNMNMTU0s2AwZrAwZzBgMDExMWVIL8pMAQQAAP__uvMI1g", + "intellisuggestSignature": "c1e243e7a7ed58ceb8887ac4cd79b436dd442a772392574e1d021e1a790af89c", + "product_type_unigram": "top", + "sales_rank": [ + "1827" + ] + }, + "children": [] + }, + { + "id": "149592", + "mappings": { + "core": { + "uid": "149592", + "sku": "C-NBK-Y5-T5168", + "name": "All Eyes On You Yellow Top", + "url": "/product/C-NBK-Y5-T5168", + "addToCartUrl": "/product/C-NBK-Y5-T5168", + "price": 32, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1340_2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1340_2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a1340_2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "It’ll be All Eyes On You watching your every move when you step out in this eye-catching Yellow Top! They'll want to get to know someone this styling! This top features a triangle bodice with spaghetti straps and a handkerchief hemline. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Faintly Sheer • Made in the USA", + "stockMessage": "In stock", + "brand": "Newbury Kustom", + "popularity": "4014", + "caption": "Captions!" + } + }, + "attributes": { + "id": "d7a5c94c6f4594648468794cc3f9e549", + "intellisuggestData": "eJyyKK0sMcplYGBw1vVz8taNNNUNMTU0s2AwZrCwYDBgMDExMWVIL8pMAQQAAP__u8kI3w", + "intellisuggestSignature": "af066c6fedbbc1473749102013e40a07a558d3757bfbb1936fcdd8eab4e9200a", + "product_type_unigram": "top", + "sales_rank": [ + "4014" + ] + }, + "children": [] + }, + { + "id": "179350", + "mappings": { + "core": { + "uid": "179350", + "sku": "J-GS-W1-82525", + "name": "All Fleur Love Pearl Earrings", + "url": "/product/J-GS-W1-82525", + "addToCartUrl": "/product/J-GS-W1-82525", + "price": 14, + "msrp": 25, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/emptyname_84-2_large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/emptyname_84-2_large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/emptyname_84-2_thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "What's classy, timeless, and goes with everything you already own? These earrings, if you act fast, because they're going to sell out before you can blink. We're All Fleur Love, of course, but you know what they say ... love won't wait forever. Fleur de lis earring features sparkling rhinestones in silver setting atop a pearl pendant with post back. Earring measures 1.5\\\" • Imported", + "stockMessage": "In stock", + "brand": "Stella", + "popularity": "880", + "caption": "Captions!" + } + }, + "attributes": { + "id": "af9fb8f5a978c9176715e55ef2b1e52f", + "intellisuggestData": "eJyyKK0sMcplYGDw0nUP1g031LUwMjUyZTBmsLBkMGAwMTExZUgvykwBBAAA__-vIQh-", + "intellisuggestSignature": "e31589598d52b0439d72fff8a706e538e7f4a70db05dee005883ca6c85c6ca3b", + "product_type_unigram": "earrings", + "sales_rank": [ + "880" + ] + }, + "children": [] + }, + { + "id": "180923", + "mappings": { + "core": { + "uid": "180923", + "sku": "C-TY-I4-T2331", + "name": "All Hail Turquoise Top", + "url": "/product/C-TY-I4-T2331", + "addToCartUrl": "/product/C-TY-I4-T2331", + "price": 29, + "msrp": 50, + "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0846_copyright_reddressboutique_2017__large.jpg", + "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0846_copyright_reddressboutique_2017__large.jpg", + "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0846_copyright_reddressboutique_2017__thumb_med.jpg", + "rating": "5", + "ratingCount": "1111", + "description": "Wouldn't it be awesome if you landed in some far off land in some place you've never heard of, where they've never seen clothing before ... but they've been waiting for this item to arrive in the form of what amounts to a Turquoise Top, to somehow deliver them from depression and make all of their lives better? So when you arrive they mistake you for a goddess and worship your top as as a deity and you as its divine messenger? You know, All Hail Turquoise Top? Why do I see Steve Martin playing a role in the movie version of narrative? Anyway, if that were ever to happen, this would totally be the top they would choose. It is totally worthy of being adored. Sleeveless top features a layered hemline with a single button closure on a keyhole cut-out. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Lined • Made in the USA", + "stockMessage": "In stock", + "brand": "Tyche", + "popularity": "2725", + "caption": "Captions!" + } + }, + "attributes": { + "id": "26bd4483b82567b4589a35941331b2b8", + "intellisuggestData": "eJyyKK0sMcplYGBw1g2J1PU00Q0xMjY2ZDBmsDRgMGAwMTExZUgvykwBBAAA__-w6wiO", + "intellisuggestSignature": "50f708865426d204f894ca3a819d0574a41824ef70b5083234132349f92661fa", + "product_type_unigram": "top", + "sales_rank": [ + "2725" + ] + }, + "children": [] + } + ], + "filters": [], + "facets": [ + { + "field": "brand", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "2B Clothing", + "label": "2B Clothing", + "count": 6 + }, + { + "filtered": false, + "value": "2Hearts", + "label": "2Hearts", + "count": 1 + }, + { + "filtered": false, + "value": "4 Sienna", + "label": "4 Sienna", + "count": 11 + }, + { + "filtered": false, + "value": "5th Avenue", + "label": "5th Avenue", + "count": 34 + }, + { + "filtered": false, + "value": "12 PM by Mon Ami", + "label": "12 PM by Mon Ami", + "count": 10 + }, + { + "filtered": false, + "value": "36point5", + "label": "36point5", + "count": 1 + }, + { + "filtered": false, + "value": "143 Story", + "label": "143 Story", + "count": 6 + }, + { + "filtered": false, + "value": "Aakaa", + "label": "Aakaa", + "count": 25 + }, + { + "filtered": false, + "value": "Activusa", + "label": "Activusa", + "count": 3 + }, + { + "filtered": false, + "value": "Adriana", + "label": "Adriana", + "count": 1 + }, + { + "filtered": false, + "value": "Adrienne", + "label": "Adrienne", + "count": 153 + }, + { + "filtered": false, + "value": "After Market", + "label": "After Market", + "count": 15 + }, + { + "filtered": false, + "value": "Amazing Grace", + "label": "Amazing Grace", + "count": 1 + }, + { + "filtered": false, + "value": "Amazing Spirit", + "label": "Amazing Spirit", + "count": 3 + }, + { + "filtered": false, + "value": "Amazing Sport", + "label": "Amazing Sport", + "count": 8 + }, + { + "filtered": false, + "value": "American Bazi", + "label": "American Bazi", + "count": 3 + }, + { + "filtered": false, + "value": "Amor Us", + "label": "Amor Us", + "count": 1 + }, + { + "filtered": false, + "value": "Anama", + "label": "Anama", + "count": 11 + }, + { + "filtered": false, + "value": "Andrea Bijoux", + "label": "Andrea Bijoux", + "count": 2 + }, + { + "filtered": false, + "value": "ANM", + "label": "ANM", + "count": 4 + }, + { + "filtered": false, + "value": "Anne Michelle", + "label": "Anne Michelle", + "count": 14 + }, + { + "filtered": false, + "value": "Anzell", + "label": "Anzell", + "count": 11 + }, + { + "filtered": false, + "value": "Ark & Co", + "label": "Ark & Co", + "count": 11 + }, + { + "filtered": false, + "value": "Aryeh", + "label": "Aryeh", + "count": 11 + }, + { + "filtered": false, + "value": "Audrey 3+1", + "label": "Audrey 3+1", + "count": 15 + }, + { + "filtered": false, + "value": "Audry 3+1", + "label": "Audry 3+1", + "count": 2 + }, + { + "filtered": false, + "value": "Aura L'atiste", + "label": "Aura L'atiste", + "count": 49 + }, + { + "filtered": false, + "value": "Ayepeach", + "label": "Ayepeach", + "count": 14 + }, + { + "filtered": false, + "value": "B. Sharp", + "label": "B. Sharp", + "count": 3 + }, + { + "filtered": false, + "value": "Bamboo", + "label": "Bamboo", + "count": 71 + }, + { + "filtered": false, + "value": "Ban.do", + "label": "Ban.do", + "count": 3 + }, + { + "filtered": false, + "value": "ban.do", + "label": "ban.do", + "count": 12 + }, + { + "filtered": false, + "value": "Banana", + "label": "Banana", + "count": 4 + }, + { + "filtered": false, + "value": "BB Dakota", + "label": "BB Dakota", + "count": 21 + }, + { + "filtered": false, + "value": "BB Daktota", + "label": "BB Daktota", + "count": 1 + }, + { + "filtered": false, + "value": "Beach Joy", + "label": "Beach Joy", + "count": 20 + }, + { + "filtered": false, + "value": "Beautifully", + "label": "Beautifully", + "count": 1 + }, + { + "filtered": false, + "value": "Beauty Creations", + "label": "Beauty Creations", + "count": 2 + }, + { + "filtered": false, + "value": "Bella Marie", + "label": "Bella Marie", + "count": 5 + }, + { + "filtered": false, + "value": "Bien Bien", + "label": "Bien Bien", + "count": 1 + }, + { + "filtered": false, + "value": "Blu Pepper", + "label": "Blu Pepper", + "count": 18 + }, + { + "filtered": false, + "value": "Blushing Heart", + "label": "Blushing Heart", + "count": 1 + }, + { + "filtered": false, + "value": "BLVD", + "label": "BLVD", + "count": 7 + }, + { + "filtered": false, + "value": "Bo Bel/Hello Miss", + "label": "Bo Bel/Hello Miss", + "count": 1 + }, + { + "filtered": false, + "value": "Bozzolo", + "label": "Bozzolo", + "count": 12 + }, + { + "filtered": false, + "value": "Breckelle's", + "label": "Breckelle's", + "count": 91 + }, + { + "filtered": false, + "value": "Brekelle's", + "label": "Brekelle's", + "count": 10 + }, + { + "filtered": false, + "value": "BSharp", + "label": "BSharp", + "count": 2 + }, + { + "filtered": false, + "value": "Buddy Love", + "label": "Buddy Love", + "count": 9 + }, + { + "filtered": false, + "value": "Cals Collection", + "label": "Cals Collection", + "count": 1 + } + ] + }, + { + "field": "color_family", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Blue", + "label": "Blue", + "count": 755 + }, + { + "filtered": false, + "value": "White", + "label": "White", + "count": 673 + }, + { + "filtered": false, + "value": "Pink", + "label": "Pink", + "count": 530 + }, + { + "filtered": false, + "value": "Beige", + "label": "Beige", + "count": 316 + }, + { + "filtered": false, + "value": "Black", + "label": "Black", + "count": 366 + }, + { + "filtered": false, + "value": "Gray", + "label": "Gray", + "count": 303 + }, + { + "filtered": false, + "value": "Brown", + "label": "Brown", + "count": 174 + }, + { + "filtered": false, + "value": "Red", + "label": "Red", + "count": 261 + }, + { + "filtered": false, + "value": "Green", + "label": "Green", + "count": 237 + }, + { + "filtered": false, + "value": "Yellow", + "label": "Yellow", + "count": 202 + }, + { + "filtered": false, + "value": "Orange", + "label": "Orange", + "count": 97 + }, + { + "filtered": false, + "value": "Purple", + "label": "Purple", + "count": 79 + }, + { + "filtered": false, + "value": "Black, Grey", + "label": "Black, Grey", + "count": 2 + }, + { + "filtered": false, + "value": "Black, Orange", + "label": "Black, Orange", + "count": 2 + } + ] + }, + { + "field": "size", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2791 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2791 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2779 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 521 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 519 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 509 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 504 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 497 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 109 + }, + { + "filtered": false, + "value": "26", + "label": "26", + "count": 72 + }, + { + "filtered": false, + "value": "27", + "label": "27", + "count": 72 + }, + { + "filtered": false, + "value": "28", + "label": "28", + "count": 72 + }, + { + "filtered": false, + "value": "29", + "label": "29", + "count": 72 + }, + { + "filtered": false, + "value": "30", + "label": "30", + "count": 72 + }, + { + "filtered": false, + "value": "25", + "label": "25", + "count": 69 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "24", + "label": "24", + "count": 63 + }, + { + "filtered": false, + "value": "31", + "label": "31", + "count": 58 + }, + { + "filtered": false, + "value": "5", + "label": "5", + "count": 46 + }, + { + "filtered": false, + "value": "1", + "label": "1", + "count": 14 + }, + { + "filtered": false, + "value": "13", + "label": "13", + "count": 14 + }, + { + "filtered": false, + "value": "3", + "label": "3", + "count": 14 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "2", + "label": "2", + "count": 2 + }, + { + "filtered": false, + "value": "4", + "label": "4", + "count": 2 + }, + { + "filtered": false, + "value": "15", + "label": "15", + "count": 1 + } + ] + }, + { + "field": "ss_category_hierarchy", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Gifts for Her", + "label": "Gifts for Her", + "count": 4445 + }, + { + "filtered": false, + "value": "Shop By Trend", + "label": "Shop By Trend", + "count": 1237 + }, + { + "filtered": false, + "value": "What's New", + "label": "What's New", + "count": 573 + }, + { + "filtered": false, + "value": "All Accessories", + "label": "All Accessories", + "count": 473 + }, + { + "filtered": false, + "value": "All Dresses", + "label": "All Dresses", + "count": 400 + }, + { + "filtered": false, + "value": "All Sale", + "label": "All Sale", + "count": 365 + }, + { + "filtered": false, + "value": "All Jewelry", + "label": "All Jewelry", + "count": 342 + }, + { + "filtered": false, + "value": "All Tops", + "label": "All Tops", + "count": 319 + }, + { + "filtered": false, + "value": "Brands We Love", + "label": "Brands We Love", + "count": 274 + }, + { + "filtered": false, + "value": "Notify of Restock", + "label": "Notify of Restock", + "count": 239 + }, + { + "filtered": false, + "value": "Home & Office Decor", + "label": "Home & Office Decor", + "count": 220 + }, + { + "filtered": false, + "value": "All Shoes", + "label": "All Shoes", + "count": 213 + }, + { + "filtered": false, + "value": "Swimwear", + "label": "Swimwear", + "count": 169 + }, + { + "filtered": false, + "value": "Going Fast", + "label": "Going Fast", + "count": 157 + }, + { + "filtered": false, + "value": "All Bottoms", + "label": "All Bottoms", + "count": 140 + }, + { + "filtered": false, + "value": "Playsuits", + "label": "Playsuits", + "count": 139 + }, + { + "filtered": false, + "value": "Special Occasion", + "label": "Special Occasion", + "count": 125 + }, + { + "filtered": false, + "value": "Athleisure", + "label": "Athleisure", + "count": 116 + }, + { + "filtered": false, + "value": "Style Influencer", + "label": "Style Influencer", + "count": 112 + }, + { + "filtered": false, + "value": "Trending", + "label": "Trending", + "count": 112 + }, + { + "filtered": false, + "value": "Memorial Day Sale", + "label": "Memorial Day Sale", + "count": 103 + }, + { + "filtered": false, + "value": "Back in Stock", + "label": "Back in Stock", + "count": 64 + }, + { + "filtered": false, + "value": "Valentine's Day", + "label": "Valentine's Day", + "count": 55 + }, + { + "filtered": false, + "value": "Shop Lookbook", + "label": "Shop Lookbook", + "count": 30 + }, + { + "filtered": false, + "value": "All Intimates", + "label": "All Intimates", + "count": 20 + }, + { + "filtered": false, + "value": "All Pajamas", + "label": "All Pajamas", + "count": 20 + }, + { + "filtered": false, + "value": "White & Blue Looks", + "label": "White & Blue Looks", + "count": 20 + }, + { + "filtered": false, + "value": "Top Rated", + "label": "Top Rated", + "count": 9 + }, + { + "filtered": false, + "value": "Shop By Outfit", + "label": "Shop By Outfit", + "count": 3 + } + ] + }, + { + "field": "price", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": 20, + "high": 30, + "label": "$20 to $30", + "count": 846 + }, + { + "filtered": false, + "low": 30, + "high": 40, + "label": "$30 to $40", + "count": 1618 + }, + { + "filtered": false, + "low": 40, + "high": 50, + "label": "$40 to $50", + "count": 1160 + }, + { + "filtered": false, + "low": 50, + "high": 75, + "label": "$50 to $75", + "count": 435 + }, + { + "filtered": false, + "low": 75, + "high": 100, + "label": "$75 to $100", + "count": 59 + }, + { + "filtered": false, + "low": 100, + "high": 150, + "label": "$100 to $150", + "count": 22 + }, + { + "filtered": false, + "low": 150, + "high": 200, + "label": "$150 to $200", + "count": 4 + }, + { + "filtered": false, + "low": 200, + "high": null, + "label": " over $200", + "count": 3 + } + ] + }, + { + "field": "material", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Wool", + "label": "Wool", + "count": 11 + }, + { + "filtered": false, + "value": "Vegan Leather", + "label": "Vegan Leather", + "count": 6 + }, + { + "filtered": false, + "value": "Spandex", + "label": "Spandex", + "count": 375 + }, + { + "filtered": false, + "value": "Silk", + "label": "Silk", + "count": 16 + }, + { + "filtered": false, + "value": "Rubber", + "label": "Rubber", + "count": 20 + }, + { + "filtered": false, + "value": "Polyester", + "label": "Polyester", + "count": 1353 + }, + { + "filtered": false, + "value": "Linen", + "label": "Linen", + "count": 65 + }, + { + "filtered": false, + "value": "Leather", + "label": "Leather", + "count": 47 + }, + { + "filtered": false, + "value": "Faux Leather", + "label": "Faux Leather", + "count": 39 + }, + { + "filtered": false, + "value": "Denim", + "label": "Denim", + "count": 67 + }, + { + "filtered": false, + "value": "Cotton", + "label": "Cotton", + "count": 657 + }, + { + "filtered": false, + "value": "", + "label": "", + "count": 1789 + } + ] + }, + { + "field": "on_sale", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Yes", + "label": "Yes", + "count": 1500 + }, + { + "filtered": false, + "value": "No", + "label": "No", + "count": 2946 + } + ] + }, + { + "field": "ss_price", + "type": "range", + "filtered": false, + "step": 5, + "range": { + "low": 0, + "high": 280 + }, + "active": { + "low": 0, + "high": 280 + } + }, + { + "field": "size_dress", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "1X", + "label": "1X", + "count": 4 + }, + { + "filtered": false, + "value": "2X", + "label": "2X", + "count": 4 + }, + { + "filtered": false, + "value": "3X", + "label": "3X", + "count": 4 + }, + { + "filtered": false, + "value": "L/XL", + "label": "L/XL", + "count": 11 + }, + { + "filtered": false, + "value": "Large", + "label": "Large", + "count": 2777 + }, + { + "filtered": false, + "value": "Medium", + "label": "Medium", + "count": 2789 + }, + { + "filtered": false, + "value": "Small", + "label": "Small", + "count": 2789 + }, + { + "filtered": false, + "value": "X-Large", + "label": "X-Large", + "count": 67 + }, + { + "filtered": false, + "value": "X-Small", + "label": "X-Small", + "count": 178 + } + ] + }, + { + "field": "season", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Summer", + "label": "Summer", + "count": 577 + }, + { + "filtered": false, + "value": "Spring", + "label": "Spring", + "count": 444 + }, + { + "filtered": false, + "value": "Fall", + "label": "Fall", + "count": 252 + }, + { + "filtered": false, + "value": "Winter", + "label": "Winter", + "count": 39 + } + ] + }, + { + "field": "pattern", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Print", + "label": "Print", + "count": 353 + }, + { + "filtered": false, + "value": "Floral", + "label": "Floral", + "count": 146 + }, + { + "filtered": false, + "value": "Stripe", + "label": "Stripe", + "count": 128 + }, + { + "filtered": false, + "value": "Embroidered", + "label": "Embroidered", + "count": 89 + }, + { + "filtered": false, + "value": "Plaid", + "label": "Plaid", + "count": 20 + }, + { + "filtered": false, + "value": "Paisley", + "label": "Paisley", + "count": 7 + }, + { + "filtered": false, + "value": "Polka Dot", + "label": "Polka Dot", + "count": 7 + }, + { + "filtered": false, + "value": "Camo", + "label": "Camo", + "count": 6 + }, + { + "filtered": false, + "value": "Dot", + "label": "Dot", + "count": 6 + }, + { + "filtered": false, + "value": "Herringbone", + "label": "Herringbone", + "count": 2 + } + ] + }, + { + "field": "dress_length_name", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Mini", + "label": "Mini", + "count": 192 + }, + { + "filtered": false, + "value": "Micro", + "label": "Micro", + "count": 50 + }, + { + "filtered": false, + "value": "Knee", + "label": "Knee", + "count": 40 + }, + { + "filtered": false, + "value": "Floor", + "label": "Floor", + "count": 54 + }, + { + "filtered": false, + "value": "Calf", + "label": "Calf", + "count": 11 + }, + { + "filtered": false, + "value": "Below Knee", + "label": "Below Knee", + "count": 7 + }, + { + "filtered": false, + "value": "Below knee", + "label": "Below knee", + "count": 3 + }, + { + "filtered": false, + "value": "Ankle", + "label": "Ankle", + "count": 29 + }, + { + "filtered": false, + "value": "Above Knee", + "label": "Above Knee", + "count": 109 + }, + { + "filtered": false, + "value": "Above knee", + "label": "Above knee", + "count": 55 + } + ] + }, + { + "field": "size_footwear", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "5", + "label": "5", + "count": 27 + }, + { + "filtered": false, + "value": "5.5", + "label": "5.5", + "count": 351 + }, + { + "filtered": false, + "value": "6", + "label": "6", + "count": 488 + }, + { + "filtered": false, + "value": "6.5", + "label": "6.5", + "count": 477 + }, + { + "filtered": false, + "value": "7", + "label": "7", + "count": 498 + }, + { + "filtered": false, + "value": "7.5", + "label": "7.5", + "count": 488 + }, + { + "filtered": false, + "value": "8", + "label": "8", + "count": 498 + }, + { + "filtered": false, + "value": "8.5", + "label": "8.5", + "count": 488 + }, + { + "filtered": false, + "value": "9", + "label": "9", + "count": 498 + }, + { + "filtered": false, + "value": "10", + "label": "10", + "count": 497 + }, + { + "filtered": false, + "value": "11", + "label": "11", + "count": 92 + } + ] + }, + { + "field": "collection", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "Above The Fray", + "label": "Above The Fray", + "count": 2 + }, + { + "filtered": false, + "value": "Addicted To Love", + "label": "Addicted To Love", + "count": 1 + }, + { + "filtered": false, + "value": "Addicted To Sun", + "label": "Addicted To Sun", + "count": 2 + }, + { + "filtered": false, + "value": "Adore Me", + "label": "Adore Me", + "count": 1 + }, + { + "filtered": false, + "value": "Adventure Ready", + "label": "Adventure Ready", + "count": 1 + }, + { + "filtered": false, + "value": "After Midnight", + "label": "After Midnight", + "count": 3 + }, + { + "filtered": false, + "value": "Ahead Of The Curve", + "label": "Ahead Of The Curve", + "count": 3 + }, + { + "filtered": false, + "value": "All Day Fun", + "label": "All Day Fun", + "count": 2 + }, + { + "filtered": false, + "value": "All In Favor", + "label": "All In Favor", + "count": 3 + }, + { + "filtered": false, + "value": "All Purpose", + "label": "All Purpose", + "count": 3 + }, + { + "filtered": false, + "value": "All The Stripe", + "label": "All The Stripe", + "count": 2 + }, + { + "filtered": false, + "value": "All To Myself", + "label": "All To Myself", + "count": 2 + }, + { + "filtered": false, + "value": "Almost Famous", + "label": "Almost Famous", + "count": 6 + }, + { + "filtered": false, + "value": "Answer To Your Layers", + "label": "Answer To Your Layers", + "count": 4 + }, + { + "filtered": false, + "value": "Around The Track", + "label": "Around The Track", + "count": 2 + }, + { + "filtered": false, + "value": "At My Best", + "label": "At My Best", + "count": 3 + }, + { + "filtered": false, + "value": "Back To The Basics", + "label": "Back To The Basics", + "count": 3 + }, + { + "filtered": false, + "value": "Balancing Act", + "label": "Balancing Act", + "count": 3 + }, + { + "filtered": false, + "value": "Basic Instincts", + "label": "Basic Instincts", + "count": 2 + }, + { + "filtered": false, + "value": "Basically Perfect", + "label": "Basically Perfect", + "count": 4 + }, + { + "filtered": false, + "value": "Basics Of Love", + "label": "Basics Of Love", + "count": 3 + }, + { + "filtered": false, + "value": "Bazaar Beauty", + "label": "Bazaar Beauty", + "count": 6 + }, + { + "filtered": false, + "value": "Beach Please", + "label": "Beach Please", + "count": 4 + }, + { + "filtered": false, + "value": "Beauty In Believing", + "label": "Beauty In Believing", + "count": 4 + }, + { + "filtered": false, + "value": "Because Summer", + "label": "Because Summer", + "count": 2 + }, + { + "filtered": false, + "value": "Best Of Basics", + "label": "Best Of Basics", + "count": 7 + }, + { + "filtered": false, + "value": "Better Than Basic", + "label": "Better Than Basic", + "count": 2 + }, + { + "filtered": false, + "value": "Better Than Flowers", + "label": "Better Than Flowers", + "count": 2 + }, + { + "filtered": false, + "value": "Bloom Or Bust", + "label": "Bloom Or Bust", + "count": 3 + }, + { + "filtered": false, + "value": "Bold Streak", + "label": "Bold Streak", + "count": 6 + }, + { + "filtered": false, + "value": "Breaking Rules", + "label": "Breaking Rules", + "count": 3 + }, + { + "filtered": false, + "value": "Bright This Way", + "label": "Bright This Way", + "count": 2 + }, + { + "filtered": false, + "value": "Bronzed Beauty", + "label": "Bronzed Beauty", + "count": 2 + }, + { + "filtered": false, + "value": "C'est Chic", + "label": "C'est Chic", + "count": 2 + }, + { + "filtered": false, + "value": "California Roots", + "label": "California Roots", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Be Tamed", + "label": "Can't Be Tamed", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Miss Me", + "label": "Can't Miss Me", + "count": 2 + }, + { + "filtered": false, + "value": "Can't Stop The Feeling", + "label": "Can't Stop The Feeling", + "count": 2 + }, + { + "filtered": false, + "value": "Chart Topping", + "label": "Chart Topping", + "count": 4 + }, + { + "filtered": false, + "value": "Chasing Daydreams", + "label": "Chasing Daydreams", + "count": 2 + }, + { + "filtered": false, + "value": "Chic And Easy", + "label": "Chic And Easy", + "count": 2 + }, + { + "filtered": false, + "value": "Chic Cityscape", + "label": "Chic Cityscape", + "count": 3 + }, + { + "filtered": false, + "value": "Chill Girl", + "label": "Chill Girl", + "count": 4 + }, + { + "filtered": false, + "value": "City Of Stars", + "label": "City Of Stars", + "count": 8 + }, + { + "filtered": false, + "value": "Downtown Chic", + "label": "Downtown Chic", + "count": 2 + }, + { + "filtered": false, + "value": "Dream On", + "label": "Dream On", + "count": 3 + }, + { + "filtered": false, + "value": "Dream Street", + "label": "Dream Street", + "count": 4 + }, + { + "filtered": false, + "value": "Feeling Accomplished", + "label": "Feeling Accomplished", + "count": 2 + }, + { + "filtered": false, + "value": "Gossip Girl", + "label": "Gossip Girl", + "count": 20 + }, + { + "filtered": false, + "value": "Got it Bad", + "label": "Got it Bad", + "count": 2 + } + ] + }, + { + "field": "saturation", + "type": "value", + "filtered": false, + "values": [ + { + "filtered": false, + "value": "high", + "label": "high", + "count": 39 + }, + { + "filtered": false, + "value": "low", + "label": "low", + "count": 56 + }, + { + "filtered": false, + "value": "med", + "label": "med", + "count": 40 + } + ] + }, + { + "field": "size_pants", + "type": "range-buckets", + "filtered": false, + "values": [ + { + "filtered": false, + "low": null, + "high": 1, + "label": "0-1", + "count": 2 + }, + { + "filtered": false, + "low": 2, + "high": 3, + "label": "2-3", + "count": 3 + }, + { + "filtered": false, + "low": 3, + "high": 4, + "label": "3-4", + "count": 3 + }, + { + "filtered": false, + "low": 4, + "high": 5, + "label": "4-5", + "count": 3 + }, + { + "filtered": false, + "low": 5, + "high": 7, + "label": "5-7", + "count": 3 + }, + { + "filtered": false, + "low": 7, + "high": null, + "label": "7 and up", + "count": 75 + } + ] + } + ], + "sorting": [], + "merchandising": { + "redirect": "", + "content": {}, + "campaigns": [] + }, + "search": { + "query": "" + } +} \ No newline at end of file diff --git a/packages/snap-shared/src/MockData/search/8uyt2m/infinitePage3.json b/packages/snap-shared/src/MockData/search/8uyt2m/infinitePage3.json deleted file mode 100644 index 5adf24ae0..000000000 --- a/packages/snap-shared/src/MockData/search/8uyt2m/infinitePage3.json +++ /dev/null @@ -1,4043 +0,0 @@ -{ - "search": {}, - "pagination": { - "totalResults": 4460, - "page": 1, - "defaultPageSize": 24, - "pageSize": 72, - "totalPages":149 - }, - "sorting": [], - "results": [ - { - "type": "product", - "mappings": { - "core": { - "uid": "182146", - "sku": "C-AD-W1-1869P", - "name": "Stripe Out White Off-The-Shoulder Dress++", - "url": "/product/C-AD-W1-1869P", - "addToCartUrl": "/product/C-AD-W1-1869P", - "price": 48, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/4468_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/4468_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/4468_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Are you Stripe Out of ideas for what to wear this weekend on that trip you've got coming up with your friends? Afraid you'll be the odd one out and everyone else will be all cute and trendy and there you'll be ... not trendy and wearing the same old things you've been wearing on this annual getaway for years? Lucky for you, here's the dress you've been searching for. Doesn't matter what else you pack (it does, you'll want to continue to shop with us, we were just being nice) this is the piece that will set you apart from everyone else (that is absolutely true, you will be a Goddess among women). Take that, bad fashion moments of the past! Striped dress features 3/4 sleeve bell sleeves with a partially elastic/open back. Model is wearing a small. • 97% Cotton 3% Spandex • Machine Wash Cold • Lined • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4461", - "caption": "Captions!" - } - }, - "children": [], - "id": "182146", - "attributes": { - "id": "b419ddfcad5f87ee49c786eb5f8621fd", - "intellisuggestData": "eJwEwD0OgzAMBeB3IUtx9JzEo5ufuVsvUAkxsCAYuD1fu58rH6jTxmd5SO404coUp03xqKl4s5VqAF1iyE9FW_EvFIoEkobt3P9vAAAA__-ChhA9", - "intellisuggestSignature": "55c984843049e4a538b2c36fe7fc2a32302844cecf69c497862de350a543c5ea", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "172772", - "sku": "C-LTO-R6-L5316", - "name": "Play For Keeps Burgundy Velvet Bralette++", - "url": "/product/C-LTO-R6-L5316", - "addToCartUrl": "/product/C-LTO-R6-L5316", - "price": 26, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_10_christmas_part_deux_168_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_10_christmas_part_deux_168_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_10_christmas_part_deux_168_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Model is wearing an xs/s. • 97% Polyester, 3% Spandex • Hand Wash Cold • Fully Lined • Imported", - "stockMessage": "In stock", - "brand": "Leto", - "popularity": "4461", - "caption": "Captions!" - } - }, - "children": [], - "id": "172772", - "attributes": { - "id": "ba49ca25c1f06c467a5cc5cb808aa962", - "intellisuggestData": "eJwEwEEKwyAQBdB_oQGd_lFnaa2uhELpEQIhi2xCssjt88p1n7ojd_u8h1fRRhMOpTiti9cckhcbIVegyfx_5Zdk2ismRCgCSBrWY1ueAAAA__-YGhCb", - "intellisuggestSignature": "a1176649b6e15f5e5c34b79a9d12be4895841e86d6ff80a32333bceeb2a30305", - "product_type_unigram": "play" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "147674", - "sku": "A-LAG-BL571", - "name": "Glow Beauty Brick Blush Collection++", - "url": "/product/A-LAG-BL571", - "addToCartUrl": "/product/A-LAG-BL571", - "price": 9, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3341_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3341_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a3341_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "The L.A. Girl Glow Beauty Brick Blush Collection pairs two blush shades with a coordinated bronzer and highlighter. Instantly contour with complimentary shades and blendable color in both matte and shimmery finishes for multidimensional color. Each luxurious, glossy book includes a mirror inside. Ingredients: Talc, Mica, Mineral Oil, Magnesium Stearate, Aluminum Starch Octenylsuccinate, POlyethylene, POlyisobutene, Ethylhexyl Plamitate, Petrolatum, Sorbitan Sesquioleate, Methylparaben, Propylparaben, BHT, Colorants. •Cruelty free, not tested on animals! •Contains 22g of product", - "stockMessage": "In stock", - "brand": "L.A. Girl", - "popularity": "4461", - "caption": "Captions!" - } - }, - "children": [], - "id": "147674", - "attributes": { - "id": "9a0d2758f361e349def294ed14a4d73e", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUtJ-l3Ho9MmLDkGEmJgQTBwe169n6scsK7_Njyk_KjCUShO7eJh6etVR7IAQmYs0qZaRsYHCSQV27mvbwAAAP__Yv0P2g", - "intellisuggestSignature": "3b2b418872aa5010e5d9ad3c857db61c084dbaf4f76cb9b6a70a9c4ae06a57cf", - "product_type_unigram": "collection" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "182204", - "sku": "D-BAN-63890", - "name": "Compliment Greeting Card Set++", - "url": "/product/D-BAN-63890", - "addToCartUrl": "/product/D-BAN-63890", - "price": 12, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3540_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3540_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3540_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Is there anything better that getting some encouragement when you least expect it? We took some of our favorite phrases to pass out and turned them into mailable magic. Just looking at the metallic foil text (and envelopes with gold foil lining!!!) will turn anyone's day around. Go on, send someone some good vibes! •5.25 in. x 4.125 in. •Set of 10 cards, 5 designs, 2 of each •Tonal metallic printing •Foil-lined envelopes", - "stockMessage": "In stock", - "brand": "ban.do", - "popularity": "4460", - "caption": "Captions!" - } - }, - "children": [], - "id": "182204", - "attributes": { - "id": "1e97ed56865590f7e44a8c5fa9a924fd", - "intellisuggestData": "eJwEwDEOhSAMBuD_Qk36eH-BjkVg9BQmxsHF6ODt_erz3ulEGdbb9JC00IQzUZw2xKNo9mpTSwBdWqyS_9UVPxAKkob9OrYvAAD__2BeD7o", - "intellisuggestSignature": "b10ff71fd56a61cbe02abc1ed5aec306f978dbb0160b06050373e58592fedb0f", - "product_type_unigram": "card" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "174490", - "sku": "F-YOK-T5-DAISY", - "name": "Higher Up Taupe Thigh High Boots++", - "url": "/product/F-YOK-T5-DAISY", - "addToCartUrl": "/product/F-YOK-T5-DAISY", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_2_058_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_2_058_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_12_studio_accessories_2_058_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Turn up the drama in our Higher Up thigh high boots. Sure to turn heads and give your look the right amount of sass! • Heel Height 4\\\" • Shaft: 20\\\" • Calf: 11\\\" circumference, Fabric contains some stretch • Padded Insole • Non-Skid Sole • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Yoki", - "popularity": "4460", - "caption": "Captions!" - } - }, - "children": [], - "id": "174490", - "attributes": { - "id": "902269015791b2c0743b767794752072", - "intellisuggestData": "eJwEwDEKgDAMBdB_oUAtiW3GaBsQBwddugvi4CI6eHtffr8nXkhVyuBqFEcWYo9MylJJLYVes3hIBji1ZaZNqNi0NnQQBDCz4LjP_Q8AAP__n9IRBQ", - "intellisuggestSignature": "8fc06de49cf330e9aaa844249599154a74f8a4b29c7bf97bf2cfb75777a53685", - "product_type_unigram": "boots" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "164380", - "sku": "C-AD-P4-840FP", - "name": "Untamed Spirit Duster Kimono++", - "url": "/product/C-AD-P4-840FP", - "addToCartUrl": "/product/C-AD-P4-840FP", - "price": 55, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a8829_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a8829_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a8829_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It’s Like A Dream To Me (dream to me), I would have never known that something could make me look and feel as great as this Floral Print Duster Kimono! It’s almost too good to be true! We assure you it’s not! This open front duster kimono features a small collar trim down the length, long sleeves with elastic cuffs, and high side slits. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4458", - "caption": "Captions!" - } - }, - "children": [], - "id": "164380", - "attributes": { - "id": "2d3467b107172206a4f399bfd5bc33bc", - "intellisuggestData": "eJwEwDEOwyAMBdB_IUsu-gY8uoBnDlGp6tAlSobcPq9f91n-aMvmOz2kDJowC8VpSzyaVu-W2gIYElM2pVNz44UKBUnD9_h9ngAAAP__gx8QSA", - "intellisuggestSignature": "f576f07fef18f84f4dc346fbff5b84c21cd91a39dd095c5c9f838e2e6dd6aa85", - "product_type_unigram": "kimono" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "132593", - "sku": "C-MIT-O9-T1196", - "name": "Just Like That Tank Top++", - "url": "/product/C-MIT-O9-T1196", - "addToCartUrl": "/product/C-MIT-O9-T1196", - "price": 29, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/ccj_0809_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/ccj_0809_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/ccj_0809_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Put this striking top on and “Just Like That”, you’re looking as stunning as a summer sunset. Sleeveless top with a scoop neckline and darting at the bust. Model is wearing a small. • 94% Polyester, 6% Spandex • Hand Wash Cold • Unlined", - "stockMessage": "In stock", - "brand": "Mitto Shop", - "popularity": "4458", - "caption": "Captions!" - } - }, - "children": [], - "id": "132593", - "attributes": { - "id": "ddb867254630586ba8465a82fbdff846", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUmA_GGYkmUh2WJjwxFMjIWN0cLb-8r9XOmAdf1-hldJjSocieLULl4tZC86glWgyf83ZXGZMXpGhCGApGI79_UNAAD__5iPEKU", - "intellisuggestSignature": "5b6ae08b3f6ad61ee3ddee0a673b0c1d7900e8c10078ea36b6af33abe730648a", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "174287", - "sku": "C-AD-Y5-814MD", - "name": "Answer To Your Layers Butterscotch Yellow Top++", - "url": "/product/C-AD-Y5-814MD", - "addToCartUrl": "/product/C-AD-Y5-814MD", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/208_6797_copyright_reddressboutique_2016_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/208_6797_copyright_reddressboutique_2016_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/208_6797_copyright_reddressboutique_2016_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Ah, the annual conundrum; how to look good, and still be comfortable through the blistering cold outdoors and the sweltering hot indoors? Well, thanks to our tireless team of researchers, and years of experimentation, we have the Answer to your Layers. You can pile on all the additional garments you want, and still look fantastic underneath, with the adorable top. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4457", - "caption": "Captions!" - } - }, - "children": [], - "id": "174287", - "attributes": { - "id": "aaabf92f3ca88ab1fb8620ee3965332b", - "intellisuggestData": "eJwEwDsOhDAMBNC5kKUkGm_s0ptPxwHokRAFDYKC2_Psee9yog7t_-khpVGFs1CcOsSjpp-bzlQDaBJdVhXLXDoyDAkkFft1bF8AAAD__4PqEFA", - "intellisuggestSignature": "025ef1509f2a40d8d8f7673964bc9ce3bae2446aac9dd25fccc4b7d39ba88f3b", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "171955", - "sku": "C-HM-V6-28KCQ", - "name": "Jet Set Diaries Plum Purple Top++", - "url": "/product/C-HM-V6-28KCQ", - "addToCartUrl": "/product/C-HM-V6-28KCQ", - "price": 32, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/264_lcp_1733_copyright_loganpotterf_2016_1_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/264_lcp_1733_copyright_loganpotterf_2016_1_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/264_lcp_1733_copyright_loganpotterf_2016_1_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Once upon a time, there was a girl who longed for a blouse. She didn't ask for much. She wanted elegance, with affordability. Fashion, with comfort. Beauty, with grace. Something trendy, yet classic. Something versatile, yet outstanding all on its own. One day, as she was browsing the internet, she came upon the Red Dress Boutique, and magic happened. Her eyes met the likes of our Jet Set Diaries Plum Purple Top, and their love was written in the stars from that moment on. The rest, as they say, is history. And they lived happily ever after. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Hello Miss", - "popularity": "4457", - "caption": "Captions!" - } - }, - "children": [], - "id": "171955", - "attributes": { - "id": "814e71fa7c0e9287369ec5d88275ebf6", - "intellisuggestData": "eJwEwDEKhDAQBdB_oYHs8CfJlNmYIIiFjScQxMJGtPD2vvy8t55IzYZ_9yJaacKuFKc18ZJC9Gw9pAJUGWdZo2ie6oIfHAEkDft1bF8AAAD__4dZEHo", - "intellisuggestSignature": "939301632553bdd4cebc29fcf296748c083451433597421fc0316b6e91ef18d5", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "175547", - "sku": "C-JU-W1-P1034", - "name": "Off She Goes White Skinny Jeans++", - "url": "/product/C-JU-W1-P1034", - "addToCartUrl": "/product/C-JU-W1-P1034", - "price": 58, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/use_3_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/use_3_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/use_3_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Off She Goes, doing her thing and getting things done, and stylishly so, in these White Skinny Jeans! Get it, girl! These skinny jeans feature standard 5 pocket styling, belt loops, zipper button fly, and rips at the knees. • 75% Cotton, 23% Polyester, 2% Spandex • Machine Wash Cold • Unlined • Made in the USA", - "stockMessage": "In stock", - "brand": "Just USA", - "popularity": "4455", - "caption": "Captions!" - } - }, - "children": [], - "id": "175547", - "attributes": { - "id": "b31bcaa9c29d2f746bc2b77205820440", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUt2-t3EY5omQ6cuiAsgIQYWBAO355XrPtOO3P37GVElNbpwJErQu0TN-o7iQ3MFmvwmmU3-pi_CYAoFScd6bMsTAAD__5SIEHc", - "intellisuggestSignature": "52b19fc5135c5773eed8262c40d26ae1e7bc24cf081a8de450e6a12b68dc7002", - "product_type_unigram": "jeans" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "172021", - "sku": "B-UE-R6-12177", - "name": "I've Got Plans Brick Red Handbag++", - "url": "/product/B-UE-R6-12177", - "addToCartUrl": "/product/B-UE-R6-12177", - "price": 56, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_295_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_295_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_12_studio_accessories_295_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "I've Got Plans to look pretty and polished, and this Brick Red Handbag will help bring those goals to fruition! You really know how to make things happen! This faux leather top handle handbag features a removable adjustable strap, zipper closure, gold hardware, 2 exterior zipper pockets, interior zipper pocket, 2 interior open pockets, printed lining, and a removable coin pouch. Peta approved vegan. • Purse measures 11\\\" High, 12\\\" Wide, 8\\\" Deep • Additional Shoulder Strap Drop: 18.5\\\" - 23.5\\\" • Handle Drop: 6\\\" • Shell: 100% Polyurethane • Lining: 100% Polyester", - "stockMessage": "In stock", - "brand": "Urban Expressions", - "popularity": "4455", - "caption": "Captions!" - } - }, - "children": [], - "id": "172021", - "attributes": { - "id": "4126b6fbfdf633a969aa65ecc403a23c", - "intellisuggestData": "eJwEwMEJwzAMBdC_kMASX5Z1tFt7gEI3KJQccgnJIdvntes-bUdMf4-VXexFFy6jJH1K9ig1m68SHRjynfKpoqYRUKiigKTjf2y_JwAA__-R9xBc", - "intellisuggestSignature": "396f8b08a523c0e161611cef9fcbdbf0ecd40f3994663fe5758857e6090d83a0", - "product_type_unigram": "handbag" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "144900", - "sku": "F-QPD-W1-ORE07", - "name": "Kissed By The Sun White Beaded Sandals++", - "url": "/product/F-QPD-W1-ORE07", - "addToCartUrl": "/product/F-QPD-W1-ORE07", - "price": 26, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7063_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7063_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7063_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ll be getting Kissed By The Sun when you wear these cute White Beaded Sandals because you’ll stay outside as long as possible just to show them off! These thong sandals feature beading across the top. • Padded insole • Man made materials • Imported", - "stockMessage": "In stock", - "brand": "Qupid", - "popularity": "4452", - "caption": "Captions!" - } - }, - "children": [], - "id": "144900", - "attributes": { - "id": "0a9cc93e9ab1a1765f9ea75ee62d428a", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuOZdfxmDbx2paFCyAhBhYEA7fn1es-ZYcP6--MRvJRI01RCrVB0ZxfUS3ZG5D0_3WaC32nwY6CImCoqmE9tuUJAAD__6vuEPc", - "intellisuggestSignature": "209285ff8721fbddce9de323392244cf5bf367d92ace9dfa7fab2383c7154d94", - "product_type_unigram": "sandals" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "182721", - "sku": "F-BRK-T1-TON16", - "name": "It's A Date Nude High Heel Sandals++", - "url": "/product/F-BRK-T1-TON16", - "addToCartUrl": "/product/F-BRK-T1-TON16", - "price": 28, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5343_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5343_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5343_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It's A Date! He finally asked you out, you've got the right dress, the perfect accessories, and even that special perfume that you've been saving for a special occasion. And now ... it's time to break open 'the box.' Yes, those blessed Nude High Heel Sandals. They might as well have been sanctified because they're absolute saints. For feet, of course. So here goes nothing. He's at the door. You've waited the mandatory ten seconds and your roomie has now answered, you're about to walk out. Gracefully. Crossed fingers, the night will end with the kiss of a lifetime (lucky him)! Heel measures 3.5\\\" • Non-Skid Sole • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Breckelle's", - "popularity": "4451", - "caption": "Captions!" - } - }, - "children": [], - "id": "182721", - "attributes": { - "id": "7b2d1aa333353d7c8f44dd5177c78766", - "intellisuggestData": "eJwEwLEKhDAMBuD_hQJNL2mbsb1rlgMF6SMI4uAiOvj2fuV-rnggd_01t0rxK0riUchEO1nNIVlRD7kCTm3502Aa88QJDP4gQEQU27mvbwAAAP__q9YQ-g", - "intellisuggestSignature": "89d23c107c4ec3ce39d281471d9f5ed7768c297cf8b64bc83a667ffa71d7a41a", - "product_type_unigram": "sandals" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "177239", - "sku": "C-ZS-R3-44034", - "name": "Z Supply Pocket T-Shirt++", - "url": "/product/C-ZS-R3-44034", - "addToCartUrl": "/product/C-ZS-R3-44034", - "price": 29, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/85_8379_copyright_reddressboutique_2016_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/85_8379_copyright_reddressboutique_2016_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/85_8379_copyright_reddressboutique_2016_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Casually chic and simply classic, the Z Supply Pocket Tee In Rosewood has always got your back! This burnout jersey tee features a curved V neck, slouchy raw edge pocket, short sleeves, and hi lo hem. Model is wearing an x-small. • 55% Cotton, 45% Polyester • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Z Supply", - "popularity": "4451", - "caption": "Captions!" - } - }, - "children": [], - "id": "177239", - "attributes": { - "id": "fca64fdbc3c64a92ff8dc8d8b712b18b", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUkG-LMwJYtwAO2sTYyFjdHC2_vK897xRO42_YdXiY0mHJHitC5es_682NBcgSbrInMSUhMREAgFScN-HdsXAAD__5PQEG0", - "intellisuggestSignature": "13aac8c4ac06ecec8a3960dfef231e795960840336aa18f15ab380289b25c632", - "product_type_unigram": "tshirt" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "176058", - "sku": "C-AD-P2-846BC", - "name": "She's A Betty Blush Pink Top++", - "url": "/product/C-AD-P2-846BC", - "addToCartUrl": "/product/C-AD-P2-846BC", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3931_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3931_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rdb_studio_2_3931_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ve been called all sorts of flattering things. Beautiful, stunning, a jaw-dropper, a belle of a doxy; you know, the usual. But there you were, walking down the sidewalk, wearing your new outfit, minding your own business, when that cute guy you just passed leans in to his friend and whispers loud enough for you to hear, “She’s a Betty if I’ve ever seen one.” A classic, but a new one on you. So you can’t help but smile to yourself and think, “yeah, this top’s a keeper.” Model is wearing a small. • 97% Polyester, 3% Spandex • Hand Wash Cold • Unlined • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4451", - "caption": "Captions!" - } - }, - "children": [], - "id": "176058", - "attributes": { - "id": "f76732ae9c826212c2abbffd826c2185", - "intellisuggestData": "eJwEwD0KwzAMBeB3IYEtnmxrlP_mHqJQOmQJyZDb52v3c-mBumz27SE6aMKtFKct8aipeLOdagBDYspHpbH0gYxsSCBp-J3_7xsAAP__kj0Qaw", - "intellisuggestSignature": "84edcbe694bdc083cdae33e5c62c1b2d3b1b4a9cc9b357d566849a9a1882398e", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "132653", - "sku": "C-NBK-E5-11406", - "name": "Summer Breeze Maxi Dress++", - "url": "/product/C-NBK-E5-11406", - "addToCartUrl": "/product/C-NBK-E5-11406", - "price": 52, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8832_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8832_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a8832_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Always lending a helping hand and having a kind word to share, you’re like a “Summer Breeze”; refreshing, desired, and cherished. Floral maxi with a triangle bodice and elastic waist. Model is wearing a small. • 100% Polyester • Hand Wash Cold • Fully Lined • Made in the USA", - "stockMessage": "In stock", - "brand": "Newbury Kustom", - "popularity": "4451", - "caption": "Captions!" - } - }, - "children": [], - "id": "132653", - "attributes": { - "id": "cbcd9313d7344675b83cb2a0ac3a245d", - "intellisuggestData": "eJwEwDEKxCAQBdB_oYEZ-aNOqa42C3uKhZAiTUiK3D6v3s-VDpTpn76iSRp04UqUoE-JVjRH9aWlAUN-_SvTxYyaYbAMBUnHdu7_NwAA__-ikhCP", - "intellisuggestSignature": "f31a7a269caf699a9959b40d00610af9e2c2bd9fd6eaa4b2b731b4f3a26160e1", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "179842", - "sku": "C-HOM-I2-D4071", - "name": "Love Fool Denim Midi Dress++", - "url": "/product/C-HOM-I2-D4071", - "addToCartUrl": "/product/C-HOM-I2-D4071", - "price": 44, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2761_copyright_reddressboutique_2017_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2761_copyright_reddressboutique_2017_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2761_copyright_reddressboutique_2017_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "I'm no fool for love, but I'm a Love Fool for this Denim Midi Dress. One look and it was over. I was head over heels! Finally, something new and exciting for my wardrobe! Don't you ever get tired of seeing the same old thing over and over again? This is a fresh new piece that's ready to be shown off and enjoyed for the whole season! Just wait till I get all of those compliments ... they'll come rolling in before you know it!! And won't that feel like sunshine on a Summer day? This light denim midi dress features a halter neck, criss- cross tie back and a front center slit. Dress also includes bust darts and an apron bodice. Model is wearing a small. • 66% Cotton 30% Poly 4% Spandex • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Hommage", - "popularity": "4450", - "caption": "Captions!" - } - }, - "children": [], - "id": "179842", - "attributes": { - "id": "1e473666b152612ea2850c6eb34f1a10", - "intellisuggestData": "eJwEwD0KAkEMBeB3oUAmvJhJOc4PWoiXEMTCZtkt9vb71ePc7Y-YPu4rm1inC5dRkj4lW-gtqy-NBnR5vF_yNBnUKCgoAQVJx3f7fa4AAAD__6VrEK4", - "intellisuggestSignature": "ce8809d51f0fed1f2a30acd53ed3b81ee200d23cfcd89d793d9fb651e01512e3", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "133443", - "sku": "C-UG-R6-A2148", - "name": "Never Too Soon Dress++", - "url": "/product/C-UG-R6-A2148", - "addToCartUrl": "/product/C-UG-R6-A2148", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/_mg_7093_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/_mg_7093_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/_mg_7093_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Even as the clock ticks on, it is “Never Too Soon” to grab the hands of time and take control especially when this dress is involved!! You will not want the good times to come to an end when you step out in the this knockout!! Shift dress features a V-neckline and long sleeves with buttons at the wrists. • 65% Cotton, 35% Polyester • Hand Wash Cold • Unlined Model is 5'3\\\" and measures 32\\\" bust and 26\\\" waist. She is wearing a size small.", - "stockMessage": "In stock", - "brand": "Umgee", - "popularity": "4449", - "caption": "Captions!" - } - }, - "children": [], - "id": "133443", - "attributes": { - "id": "079ca10f543faf2af3f33eb049629582", - "intellisuggestData": "eJwEwDEKwzAMBdB_IYEtvmxpVF27e6E3KJQOWUIy5PZ5fl6HbujTno8VKTpowqWUoE2J7KWF2yo9gSGfl7ybpFY6KqqjgKTht_-_dwAAAP__k98QdA", - "intellisuggestSignature": "6e8963d58727d76c2f47248cc20156fdfff7c6d96819f5cf663b50e9672caa0d", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "107692", - "sku": "C-LOI-G5-0801V", - "name": "I Don't Do Dishes Maxi Dress++", - "url": "/product/C-LOI-G5-0801V", - "addToCartUrl": "/product/C-LOI-G5-0801V", - "price": 48, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4118_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4118_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a4118_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Whether breakin’ dishes or breaking hearts, you will have no problem letting it be known that “I Don’t Do Dishes” or leaving a guy in a puddle of his tears!! When a heart breaker like you needs to satisfy her cravings, do it with a meal from your favorite restaurant wearing a new dress! So have the new guy treat you to a dinner date with this infinite (okay, 40) possibilities of a maxi dress! No need to worry about busting some suds in this bubbly wonder when the dishes aren’t yours! Convertible maxi dress can be worn over 40 ways. Unlined. Faintly Sheer. 94% Polyester. 6% Spandex. Wash by hand in cold water. Do not bleach. Made in the U.S.A. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit* Length from natural waist to bottom: Small measures 44.5\\\", Medium measures 46.5\\\", Large measures 46.5\\\" Comfortable waist: Small measures 30\\\", Medium measures 32\\\", Large measures 34\\\" Length of straps: Small measures 85\\\", Medium measures 85\\\",", - "stockMessage": "In stock", - "brand": "Fashionomics", - "popularity": "4449", - "caption": "Captions!" - } - }, - "children": [], - "id": "107692", - "attributes": { - "id": "842a491065a1d1b373c7351f46fd7019", - "intellisuggestData": "eJwEwDEKhDAQBdB_oYFJ-LPJlNmYiCDYeQJBLGxEC2_vy897xxOp2fDvXiRWmrBHitOaeEn682xdUwGqzMsko4lmDSsCgkNB0rBfx_YFAAD__6ZnEMA", - "intellisuggestSignature": "28fd32dc6e92f9533d724d654fadbc1e92bea339dacd615302cc57e74a25a5c0", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "169260", - "sku": "C-STC-Y6-51433", - "name": "Subtle Hints Goldenrod Yellow Sweater++", - "url": "/product/C-STC-Y6-51433", - "addToCartUrl": "/product/C-STC-Y6-51433", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4887_3_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4887_3_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a4887_3_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Subtle Hints or point blank, they’ll pick up what you’re putting down in this Goldenrod Yellow Sweater! They’ll be fully alert and paying attention to every detail of someone so stunning! This sweater features a round neck, exposed seams, seam down the center, long sleeves with ribbed cuffs, and hi lo hem with side slits. Model is wearing a small. • 100% Acrylic • Dry Clean Only • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Staccato", - "popularity": "4448", - "caption": "Captions!" - } - }, - "children": [], - "id": "169260", - "attributes": { - "id": "c31d191108443e220424e9d032b16b23", - "intellisuggestData": "eJwEwDEOwyAMBdB_IUvGfAMeKYULtEv3SlWHLFEy5PZ57bwO21CnPx8rutigC5dRgj4letUSzZfWDgx5vYd8inhizkgwhYKk47f_v3cAAAD__6ZqELI", - "intellisuggestSignature": "e6a480e1733b115da761b2f9a0c67e14871d5c12501bd3cefb858b9b34c0208e", - "product_type_unigram": "sweater" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "168558", - "sku": "C-AD-V6-812MD", - "name": "Fingers Crossed Purple Dress++", - "url": "/product/C-AD-V6-812MD", - "addToCartUrl": "/product/C-AD-V6-812MD", - "price": 38, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8905_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a8905_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a8905_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Fingers Crossed that your day goes as planned, but at least in this darling Purple Dress, you’ll look amazing! This t-shirt dress is sure to start it off on a good note, and looking this great, things have to go well! This dress features a round neck, short cap sleeves, and V-neck back with crisscross strap detail. Model is wearing a small. • 95% Rayon Modal, 5% Spandex • Hand Wash Cold • Unlined • Faintly Sheer • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4448", - "caption": "Captions!" - } - }, - "children": [], - "id": "168558", - "attributes": { - "id": "4e7ada18cd098da5b0fb1f3c544297c8", - "intellisuggestData": "eJwEwD0OgzAMBeB3IUuJ9ZzEo5ufrWtPUAkxsCAYuD1fu59LD9Rp47M8RDtNuJTitCkeNRVvtlINoEsM-RVpWb8DGZqRQNKwnfv_DQAA__-TYRB3", - "intellisuggestSignature": "2f1ffe7328bcd54fbac0fa30026cc477c8a35ffdb067610109d9ffc035263840", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "177886", - "sku": "C-ZS-P3-64211", - "name": "Z Supply Sleek Jersey Pocket T-Shirt++", - "url": "/product/C-ZS-P3-64211", - "addToCartUrl": "/product/C-ZS-P3-64211", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_6955_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/copyright_rdb_studio_2_6955_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/copyright_rdb_studio_2_6955_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Plain doesn’t have to mean bland, and the Z Supply Jersey Pocket Tee In Rose Blossom is a prime example! This simply chic basic top looks great dressed up or down! Model is wearing an x-small. • 95% Rayon, 5% Spandex • Machine Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Z Supply", - "popularity": "4447", - "caption": "Captions!" - } - }, - "children": [], - "id": "177886", - "attributes": { - "id": "a2503a83c77f6751370ea5a08ccef361", - "intellisuggestData": "eJwEwLEOhSAMBdD7Q02g7xboyEOYTdycTYyDi9HBv_eU5731RO42_YdX0UYTDqU4rYvXHJIXGyFXoMm6yPyTRI0REaoIIGnYr2P7AgAA__-TihBp", - "intellisuggestSignature": "3f4118f382fbcf64dc0ecd828eca4c09e463d9607beb5186cdfe19013b7f8bd4", - "product_type_unigram": "tshirt" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "176420", - "sku": "C-VJ-O4-50567", - "name": "Standout Style Spiced Orange Skirt++", - "url": "/product/C-VJ-O4-50567", - "addToCartUrl": "/product/C-VJ-O4-50567", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3181_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3181_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3181_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "If you want to be boring, there are a thousand big box chain stores in the world from which you can choose from. But we have a feeling that you have a special sense about you. You want to have a Standout Style, something that will make you shine in a crowd, make you feel like a million dollars but not break the bank. And that's precisely why you chose us! Well here is precisely the skirt that can do that for you! It's sweet, cute, a little preppy, but relatable. Basically, too adorable to pass up. It pretty much has your name all over it. Go on ... the two of you were meant for each other. Model is wearing a small. • 100% Linen 100%Polyester Lining • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Very J", - "popularity": "4446", - "caption": "Captions!" - } - }, - "children": [], - "id": "176420", - "attributes": { - "id": "daae471cceaedeecfe74133e127e41df", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUvGfMfxGEIysLBxAqSqQ5eqHXr7vnpeh22I4e_XzCbW6cJplKQPyRZasvrUaECX30e-FFcvgQfsCQVJx7Kv_zsAAP__ktAQZg", - "intellisuggestSignature": "45c2e161b44ddc6ae0ebb71816487d9029bcaa590fd137aba14a8441b7ce060d", - "product_type_unigram": "skirt" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "171591", - "sku": "C-MAK-T1-K8028", - "name": "Freezing Point Cream Turtleneck Sweater++", - "url": "/product/C-MAK-T1-K8028", - "addToCartUrl": "/product/C-MAK-T1-K8028", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/110_lcp_9262_copyright_loganpotterf_2016_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/110_lcp_9262_copyright_loganpotterf_2016_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/110_lcp_9262_copyright_loganpotterf_2016_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ve about reached your Freezing Point, and you need some cute and cozy clothes to keep you from turning into a popsicle, and this pretty Cream Turtleneck Sweater is a prime candidate! You’ll melt for this beauty! This cable knit turtleneck sweater features long sleeves and ribbed neck, hem, and cuffs. Model is wearing a small. • 80% Acrylic, 18% Nylon, 2% Spandex • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Mak", - "popularity": "4445", - "caption": "Captions!" - } - }, - "children": [], - "id": "171591", - "attributes": { - "id": "eeb24b0215cdce387288330932e457c7", - "intellisuggestData": "eJwEwDEKQjEMBuD_QoE0_LHJGGu7FDePIIiDi-jwbv---B8_-6BPv11XltigC5dRkj4lq-slw5f2Aobca8ujyQ61QIMRCpKO1_f9PAMAAP__pi0QuA", - "intellisuggestSignature": "1bacefbcd7af92f84205c7e06e9e468e8c89b0e332aa646dab85cfa7087ee7cb", - "product_type_unigram": "sweater" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "121820", - "sku": "C-MCY-R7-61681", - "name": "Night In Sweater++", - "url": "/product/C-MCY-R7-61681", - "addToCartUrl": "/product/C-MCY-R7-61681", - "price": 36.5, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8363_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8363_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a8363_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "After going out countless nights, it never hurts to take a breather and spend the “Night In”! And what better way to make a night at the crib more luxe than your fave dessert, a binge sesh of #PLL or The Bachelor and this sweater?? Cozy, comfy, and chic you are sure to find a way to spend more quality time with this after tonight!!! Loose fitting sweater with a V-neckline and functional front pockets. Model is wearing a S/M. • 55% Cotton, 35% Nylon, 10% Wool • Hand Wash Cold Separately • Unlined FIT: This garment has a loose fit and is true to size! LENGTH: Small/Medium measures 32\\\" from shoulder to hem. Medium/Large measures 33\\\" BUST: This garment fits loose around the bust. Small/Medium measures 42\\\", Medium/Large measures 44\\\" WAIST: Loose-allows room in the waist! HIP: Loose-allows room for hips! UNDERGARMENTS: May be worn with a standard bra or strapless! FABRIC: Fabric is stretchy PRODUCT MEASUREMENTS: Each item is measured \\\"relaxed\\\" on a flat surface! Please consider the stretch", - "stockMessage": "In stock", - "brand": "Miracle City", - "popularity": "4445", - "caption": "Captions!" - } - }, - "children": [], - "id": "121820", - "attributes": { - "id": "4d38cacb9824ee2fd38dbced42c919db", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuJ9R3HY5omW5du7EiIgQXBwO159X4uPeDDvp8ZTbTThFMpQRsSzVOJajN5A7r8-iJ_l5JLzchQQwJJw3bu6xsAAP__plUQtg", - "intellisuggestSignature": "722f37e88b33c0429f4a360e64735bd8cc8597d157c2a00a4f971cfad62b8e9e", - "product_type_unigram": "sweater" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "139032", - "sku": "C-AP-P1-30071", - "name": "Fringe Floral Fiesta Blush Swing Dress++", - "url": "/product/C-AP-P1-30071", - "addToCartUrl": "/product/C-AP-P1-30071", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4828_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4828_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4828_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Make it a Fringe Floral Fiesta when you’re wearing this lovely Blush Swing Dress. A free and flowy shape with cute and colorful floral embroidery, this happy number will liven up every room you enter. Just try not to drop any salsa on it. Sleeveless swing dress features a triangle bodice with braided spaghetti straps and embroidered detail on the front. Model is wearing a small. • 100% Rayon • Hand Wash Cold • Fully Lined • Imported", - "stockMessage": "In stock", - "brand": "Ayepeach", - "popularity": "4443", - "caption": "Captions!" - } - }, - "children": [], - "id": "139032", - "attributes": { - "id": "fb80cbb4988bf533fb72013467ef2f25", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuOa8fx6KbJnENUQgwsCAZuz2v3c8kBH_b7zkiSrkY6RSnUBkU612g22RPolItWoQ-zFxRIBUNVDdu5_98AAAD__5A1EEw", - "intellisuggestSignature": "b456935b97f011f57f644c94651392e70558a9477fb17ab122c820813434d61d", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "183513", - "sku": "A-FR-O2-30242", - "name": "Throwing Shade Sunset Orange Sunglasses++", - "url": "/product/A-FR-O2-30242", - "addToCartUrl": "/product/A-FR-O2-30242", - "price": 14, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0127_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0127_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0127_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Dude, you're blocking my rays. Throwing Shade. Totally not cool man. Don't you see my chilling here in my new sunglasses? • Imported", - "stockMessage": "In stock", - "popularity": "4442", - "caption": "Captions!" - } - }, - "children": [], - "id": "183513", - "attributes": { - "id": "aa1e424e3229fed716291f8a6cd4b808", - "intellisuggestData": "eJwEwDEOwlAIBuD_QiSIP_IYUR-riWcwMR26NO3Q2_cbx7nbipj-fnaW2IsubKMkfUpW6COHt0YBJf2Vj8ldjYYbLKAg6fhvy-8KAAD__5DIEFI", - "intellisuggestSignature": "471144d69246547922a46cd6b8bed57651dae8e4b1bbacc0e13f35f36e4720bf", - "product_type_unigram": "sunglasses" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "172210", - "sku": "C-AD-G7-860SD", - "name": "Suede Upgrade Black Leggings++", - "url": "/product/C-AD-G7-860SD", - "addToCartUrl": "/product/C-AD-G7-860SD", - "price": 32, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/177_lcp_2802_reddressboutique_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/177_lcp_2802_reddressboutique_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/177_lcp_2802_reddressboutique_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Give your tried and true legwear a Suede Upgrade with these chic Black Suede Leggings. It’s one cool update! These faux suede leggings feature an elastic waistband. Model is wearing a small. • 90% Polyester, 10% Spandex • Hand Wash Cold • Unlined • Made in the USA", - "stockMessage": "In stock", - "brand": "Adrienne", - "popularity": "4441", - "caption": "Captions!" - } - }, - "children": [], - "id": "172210", - "attributes": { - "id": "acf7cabaca7981faef3f43dc06b9281e", - "intellisuggestData": "eJwEwLsNw0AIBuB_ISSC4ICS3CMDZIVIkQs3ll14e39x3afs8GnjvbJIuhrpEqVUm5Tl3DJssRfQqQZ9nKLxd-AFCTBU1fA_tt8TAAD__5MQEHk", - "intellisuggestSignature": "70feab60f6b53c04063ef9ceda67cc0d00a6a647d9fbc651554d2910547364bd", - "product_type_unigram": "leggings" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "162811", - "sku": "C-AKA-I1-0188A", - "name": "Sweet Disarray Blue Tie-Dye Poncho Top++", - "url": "/product/C-AKA-I1-0188A", - "addToCartUrl": "/product/C-AKA-I1-0188A", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rd_studio_7_22_16_1140_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rd_studio_7_22_16_1140_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rd_studio_7_22_16_1140_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Sweet Disarray, you’ll want to wear this brilliant Blue Tie-Dye Poncho Top every day! We don’t blame you, but we suggest giving it a rest occasionally. After all, we have plenty of other cute tops that you can put in the rotation! *wink wink* This tie-dye poncho top features a scoop neck. Model is wearing a small. • 100% Rayon • Dry Clean Only • Unlined • Sheer • Imported", - "stockMessage": "In stock", - "brand": "Aakaa", - "popularity": "4439", - "caption": "Captions!" - } - }, - "children": [], - "id": "162811", - "attributes": { - "id": "3e00b44c774e7cca444eb0bb0e2283e9", - "intellisuggestData": "eJwEwDEKgDAMBdB_oUAaEpuMsbYgXkMQBxfRwdv7_P0euVC7LfOIJGlqpEOUQq1TZOUp3AbXBBrllrQW4uKeKJAAQ1UNx33ufwAAAP__otgQmw", - "intellisuggestSignature": "4fb7440749f9e67e31e2c291a8871dbfddaeb4e74e5a8ff9b5b9e0c79f61a24d", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181055", - "sku": "C-SHE-P5-L4236", - "name": "Tiny Dancer Mauve Midi Skirt++", - "url": "/product/C-SHE-P5-L4236", - "addToCartUrl": "/product/C-SHE-P5-L4236", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/1443_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/1443_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/1443_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Remember that Tiny Dancer in the music box we all had as children growing up? She was the perfect little ballerina, never faltering, always graceful and twirling in her stance. I think we all wanted to be like her at some point in our lives. Now, this skirt isn't quite like that, but it will give you that kind of grace, and it can make you feel like that Tiny Dancer, all proud and beautiful. Go on, you know you'd kill it in this Midi Skirt. You've been dying to try one for a while anyway, we can see it in your eyes. Here's your official nudge. You no longer have an excuse. Model is wearing a small. • 60% Cotton 40% Polyester • 100% Polyester lining • Hand Wash Cold • Lined to mid-thigh • Imported", - "stockMessage": "In stock", - "brand": "She + Sky", - "popularity": "4437", - "caption": "Captions!" - } - }, - "children": [], - "id": "181055", - "attributes": { - "id": "6bb275cf217d3c7c64a28aa75e11d338", - "intellisuggestData": "eJwEwDEKwzAMBdB_IYEqf9nW6Lo2HToUeoVCyJAlJENun1fP67ANZfjrOaOJdbpwGiXoQ6IVzVF9amlAl997yNflQ0sZDySFgqRj2df_HQAA__-mrBC6", - "intellisuggestSignature": "149c11085b78a779c6c803d702ed2f45d01ddffb200ee08543ab159b214105b5", - "product_type_unigram": "skirt" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "166753", - "sku": "F-QPD-G7-BIN36", - "name": "New Direction Black Knee High Boots++", - "url": "/product/F-QPD-G7-BIN36", - "addToCartUrl": "/product/F-QPD-G7-BIN36", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3650_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a3650_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a3650_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Whether traveling a New Direction or down the same old road, these Black Knee High Boots will make it a fashionable journey! Go ahead and get your strut on! These knee high faux suede boots feature an almond toe, stacked heel, rounded top with buckle detail, and zipper on the instep. • Heel measures 3.75\\\" • Shaft measures 14\\\" • Circumference measures 15\\\" • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Qupid", - "popularity": "4432", - "caption": "Captions!" - } - }, - "children": [], - "id": "166753", - "attributes": { - "id": "744f74598d65dfd8bc6c689736bb44c7", - "intellisuggestData": "eJwEwDsOgzAMBuD_QpbysON4TJq46lK1d0BCDCwIBm7PV6_7TDt0yuhujdKLhdgTk7FMsqahWBUP2gCn_2_QW6l_vrkgIkcEMLNgPbblCQAA__-p_RDj", - "intellisuggestSignature": "bf0ccc2ac0b2a5fe405ff0a1a7bb8549cd721be799df257882eb6bb8f5d5ad48", - "product_type_unigram": "boots" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "137601", - "sku": "C-JU-I1-JH737", - "name": "Cruel Summer Light Blue Cutoff Shorts++", - "url": "/product/C-JU-I1-JH737", - "addToCartUrl": "/product/C-JU-I1-JH737", - "price": 41, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8737_1_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a8737_1_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a8737_1_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It may be a Cruel Summer with your friends having left you behind, but you'll be ready to find an adventure of your own when you're in these fine Light Blue Cutoff Shorts. While your friends may be gone on exciting vacations while you’re stuck at home, your style is here to stay. So get out and stylishly wander around. There may be hidden treasures in your hometown that you've never even known of. Distressed denim shorts with standard 5 pocket styling, frayed hemline, and a zipper button fly. Model is wearing an x-small. • 98% Cotton, 2% Spandex • Machine Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Just USA", - "popularity": "4431", - "caption": "Captions!" - } - }, - "children": [], - "id": "137601", - "attributes": { - "id": "9f74bdbf5862f235d4e0ce6fdb428c56", - "intellisuggestData": "eJwEwDEOhSAMBuD_Qk2gtK905CFE2b2BiXFwMTp4e7_8vDefsKbTv3shrqIknYVctJEXCz_P2oMVoNJYaYk0ZkuGiMQIEBHFfh3bFwAA__-VgRCI", - "intellisuggestSignature": "eee9e6710907f29e6c3deceb51a9f6870bd2a16e4f04f79ff70df8f29db53d17", - "product_type_unigram": "shorts" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181769", - "sku": "D-LP-164219", - "name": "Lilly Pulitzer Exotic Garden Insulated Cooler++", - "url": "/product/D-LP-164219", - "addToCartUrl": "/product/D-LP-164219", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3747_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3747_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3747_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Insulated Beach Coolers are just common sense for a girl who's constantly at the beach. Fill your printed cooler with all of your snacks, drinks and sunscreen for a day spent by the sea - no trips home necessary. • Measures 15.5\\\" x 10\\\" x 12\\\" • Handles with snap closure • Adjustable shoulder strap • Water-resistant • Micro-fiber exterior with EVA lining • Zipper closure • BPA-, Phthalate-, and Lead-Free", - "stockMessage": "In stock", - "brand": "Lilly Pulitzer", - "popularity": "4429", - "caption": "Captions!" - } - }, - "children": [], - "id": "181769", - "attributes": { - "id": "841b1dbf3022e8a54d78b77d8a92ec91", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUlg-ANMyS5QWXgIE2NhY7Tw9r76vLeeKMP6b3oT_dOEUylOG-KthOzVZigN6LKsEjM1OiJSQgBJw34d2xcAAP__b2AP5A", - "intellisuggestSignature": "bbf0e2d9aa00644bae5e159ff1f010dae7a4e2c03881b5ed1162f2ce6c9a209c", - "product_type_unigram": "cooler" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "168580", - "sku": "F-BRK-T4-DIA12", - "name": "Basically Perfect Nude Pointed Pumps++", - "url": "/product/F-BRK-T4-DIA12", - "addToCartUrl": "/product/F-BRK-T4-DIA12", - "price": 30, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_323_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_323_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_12_studio_accessories_323_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Whoever said that perfection rested in anything other than these Basically Perfect Natural Pointed Pumps hasn’t had a pair for herself! Whether making your legs look longer or giving a casual look a touch of sophistication and glam, these heels are perfect in every way possible!! These faux leather pumps feature a pointed toe and stiletto heel. • Heel measures 4.25\\\" • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Breckelle's", - "popularity": "4429", - "caption": "Captions!" - } - }, - "children": [], - "id": "168580", - "attributes": { - "id": "c439af4edd04473bb3fa5cdd2e0f4c17", - "intellisuggestData": "eJwEwEEKAjEMBdB_oUAbf2yzTG0D4k48giAu3MjMYm4_r-_Hpj-0ZXOkh-iNJkylOG2JRytX75alBZAyng95UeY9qqLiQhSQNHz-3_cZAAD__6kdENk", - "intellisuggestSignature": "a743b960c2b4e460db55d2d8cbafc2cd925c1c2032e4756208bcc6c6d0bc2c1e", - "product_type_unigram": "pumps" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "149220", - "sku": "J-RDB-E9-WMBT", - "name": "It's Simple Neon Green Tassel Necklace++", - "url": "/product/J-RDB-E9-WMBT", - "addToCartUrl": "/product/J-RDB-E9-WMBT", - "price": 48, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9588_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a9588_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a9588_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It's Simple, accessories make the outfit, and this Neon Green Tassel Necklace will make it all kinds of good! This gold chain necklace features white and grey marbled beads and a neon green tassel. Necklace measures 30\\\" around. • Handmade locally in Athens, GA", - "stockMessage": "In stock", - "brand": "RDB", - "popularity": "4428", - "caption": "Captions!" - } - }, - "children": [], - "id": "149220", - "attributes": { - "id": "aac4bd4c4d13274a598ed1db4a731038", - "intellisuggestData": "eJwEwDEKgCAUBuD_Qg_M_pe-UVOHoCWCLhBEQ0vU0O374vs9_kKoWnKzJH6kCpunGLWKpeAGi9pcSMAkS8lSTbY5r-jQKxxIKo773P8AAAD__5uFENY", - "intellisuggestSignature": "45a1f495ff500d49aeea3e0a2db69653c479bb27846107395e3d107b1d7d2de1", - "product_type_unigram": "necklace" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "110253", - "sku": "F-SOD-T6-AGREE", - "name": "Why Can't We Be Fringe Booties++", - "url": "/product/F-SOD-T6-AGREE", - "addToCartUrl": "/product/F-SOD-T6-AGREE", - "price": 32.5, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5181_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5181_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5181_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "When you spend your days longing for the one thing you know that you must have in your life but never get the chance to ask, Why Can’t We Be Fringe”, you already know the answer. With this bootie in your life, the moments are better than good and more edgy than peripheral!! Coming together combining style, humor, and beauty, you two were meant to be more than casual acquaintances! This is a match made in fashion heaven!! Booties features fringe on the outside, a pointed toe, and a zipper on the back. All manmade materials. Heel measures 3\\\"", - "stockMessage": "In stock", - "brand": "Soda", - "popularity": "4428", - "caption": "Captions!" - } - }, - "children": [], - "id": "110253", - "attributes": { - "id": "6e64b694b74e8f0c97c8f4b85e1831be", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUtpaifx6DY2IxJwBCTEwIJg4Pa8dj9XPlBd-i_UKP9ZiCMzKYuTWk1Fm0SqBgTNY6elkA2TOz74FiQws2A79_UNAAD__639ERc", - "intellisuggestSignature": "3765159a78f0f5787af06597f46e87cf5443d0a71b695c531061a477947310eb", - "product_type_unigram": "booties" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "146774", - "sku": "C-FAM-R4-5X003", - "name": "Stars And Stripes Forever Kimono++", - "url": "/product/C-FAM-R4-5X003", - "addToCartUrl": "/product/C-FAM-R4-5X003", - "price": 34, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7921_1_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a7921_1_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a7921_1_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Show your patriotic pride in our stunning Stars And Stripes Forever Kimono. May it wave forever in your closet and on your frame. This American flag print kimono features tassels on the hemline. One Size. • Shortest length measures 35\\\" • Longest length measures 49\\\" • 100% Polyester • Hand Wash Cold • Unlined • Sheer • Imported", - "stockMessage": "In stock", - "brand": "Fame", - "popularity": "4427", - "caption": "Captions!" - } - }, - "children": [], - "id": "146774", - "attributes": { - "id": "067178f5e0edc049b08d2f62a097cffd", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUsm-cbxaEK8sTBxACTEwILaobfvG_uxtR982f1WkdImTViNErQlka7XGFbqCUypfMiTYi_Vjgu6Q0HS8Pl_32cAAAD__6YfELs", - "intellisuggestSignature": "d431263c8f072e63f2ccead2577e199032600d8d023c6451a13e2f7f0e115f2e", - "product_type_unigram": "kimono" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "182385", - "sku": "C-TF-I1-S1703", - "name": "Natural Order Light Wash Embroidered Cut Off Shorts++", - "url": "/product/C-TF-I1-S1703", - "addToCartUrl": "/product/C-TF-I1-S1703", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2359_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2359_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2359_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "In the Natural Order of things, every woman needs a great pair of Cut Off Shorts. Not just an ordinary pair (though, several pairs of those babies had better be in your closet as well) but a pair of extraordinary, embroidered, must-haves!! These are the kind of feast-your-eyes, fall in love, once in a lifetime, finds that you simply don't run across unless you are meant to have them. So if you're looking at them, you'd better act fast! They won't last long! Five pocket light denim shorts are distressed, have a cut-off hem and floral embroidery. Inseam measures 2\\\". Model is wearing a small. • 100% Cotton • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "36point5", - "popularity": "4426", - "caption": "Captions!" - } - }, - "children": [], - "id": "182385", - "attributes": { - "id": "03150a7dceb2399f864ac0da7f98fffc", - "intellisuggestData": "eJwEwDEKhTAMBuD_QoG0TV6asa824KxHEMTBRXTw9n71ee98woZO__BGuYuSRBZy0UHejH9eNdga0GkNmhMtybggoVQwRESxX8f2BQAA__-TtBB0", - "intellisuggestSignature": "0e60e793bea5a7a018e2bacfeee346c8707bba7fb021ce9e386bdb68f723ab8e", - "product_type_unigram": "shorts" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "180372", - "sku": "C-MS-G7-10428", - "name": "Story Head On Over Black Striped Off-The-Shoulder Top++", - "url": "/product/C-MS-G7-10428", - "addToCartUrl": "/product/C-MS-G7-10428", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2729_copyright_reddressboutique_2017_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2729_copyright_reddressboutique_2017_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2729_copyright_reddressboutique_2017_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "There's a warm breeze in the air & spring is finally here! What's the best part of spring?! Well, if you ask us, it's BBQ's, pool parties & trips to the beach! So the next time you hear, \\\"We're having a party so Come On Over,\\\" you'll have just the right casually cute off shoulder top to fit right in! Long sleeve top features functional tie at cuffs. Model is wearing a small. • 100% Cotton • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Story", - "popularity": "4426", - "caption": "Captions!" - } - }, - "children": [], - "id": "180372", - "attributes": { - "id": "fb583922ae55747c048e4fe6b3b5f588", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUuO-cbxGELCxMQVkKoOXap26O376nkdtiGGv18zm1inC6dRkj4kW-gzq0-NBnT5_uQTUpRWUfBIKEg6ln393wEAAP__kf0QYA", - "intellisuggestSignature": "6dcd37c384d207a1537bdd89dfdf6f9c6fcb2e500f6cdb0ec93126de8537db52", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "179153", - "sku": "J-GS-I3-66054", - "name": "Three Degrees Blue Layer Necklace++", - "url": "/product/J-GS-I3-66054", - "addToCartUrl": "/product/J-GS-I3-66054", - "price": 32, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/emptyname_170_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/emptyname_170_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/emptyname_170_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "The reason we call this the Three Degrees necklace might seem obvious at first glance, but there's another reason. It's because, without the necklace, you come in at a healthy 98.6 degrees Fahrenheit, like every other red-blooded woman. But with it, you’re pushing a smokin’ hot 101, and the temperature’s only rising from here. Necklace is a set of three unattached necklaces that feature gold and blue beads, lobster clasps and extender chains. The first necklace is a dainty gold choker style necklace that features a solitary navy gem. It measures 12\\\" around and has a 3.5\\\" extender chain. The second necklace is a gold choker style necklace that features gold faceted beads and measures 14\\\" around with a 3.5\\\" extender chain. the third necklace features iridescent blue beads on a gold chain with a blue druzy gem pendant. It measures 13.5\\\" and has a 3.5\\\" extender chain. • Imported", - "stockMessage": "In stock", - "brand": "Stella", - "popularity": "4426", - "caption": "Captions!" - } - }, - "children": [], - "id": "179153", - "attributes": { - "id": "b08671c9a282769ef9764c7826d7d0ce", - "intellisuggestData": "eJwEwEEOQDAQBdB_oUlG_Wk7y6IVtq4gEQsbYeH2Xn6_J1xI1aaheZEw0oQtUJxWxUvS6NmapgKsMm-y9BKjGtGBCgVJw3Gf-x8AAP__kh8QXQ", - "intellisuggestSignature": "14bc360308e399f16f060fbf312c37143ee84120d415958400b21c9d788f6fdf", - "product_type_unigram": "necklace" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "137853", - "sku": "C-JAN-G7-2876S", - "name": "Kate Black Long Sleeve Wrap Dress++", - "url": "/product/C-JAN-G7-2876S", - "addToCartUrl": "/product/C-JAN-G7-2876S", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0547_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0547_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0547_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "No matter if the day calls for a low key event or something fit for royalty, our Kate Black Long Sleeve Wrap Dress will have you looking exquisite. Made of a fabric that doesn’t wrinkle, it’s perfect for travel. The flattering shape in classic black will become your go-to. Wrap dress features a V-neckline and 3/4 length sleeves. Model is wearing a small. • 95% Polyester, 5% Spandex • Hand Wash Cold • Unlined • Made in the USA", - "stockMessage": "In stock", - "brand": "Janette", - "popularity": "4424", - "caption": "Captions!" - } - }, - "children": [], - "id": "137853", - "attributes": { - "id": "3263ba85f2d58d98f3a9333e2e63201c", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUuJ9R3HowkJEgMLV0BCDCxVO_T2ff04d_3Dp91vK1J00IRLKUGbEumlRbdVPIEhz3zJw0W7tzcqWFFA0vDdfp8rAAD__6X_EL0", - "intellisuggestSignature": "fee1315d706fa9f408949183e99b991b307463fa50a5b54c321be7e0e1d15f71", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "168966", - "sku": "F-SOD-T2-RONOS", - "name": "Decent Exposure Taupe Ankle Boots++", - "url": "/product/F-SOD-T2-RONOS", - "addToCartUrl": "/product/F-SOD-T2-RONOS", - "price": 44, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_026_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/16_12_studio_accessories_026_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/16_12_studio_accessories_026_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Time to give your enviable style (and your ankles) some Decent Exposure with these stylish Taupe Ankle Boots! You’ll be looking head to toe amazing! These faux suede ankle boots feature a pointed toe, side cutouts, and short stacked heel. • Padded Insole • Non-Skid Sole • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Prestige", - "popularity": "4423", - "caption": "Captions!" - } - }, - "children": [], - "id": "168966", - "attributes": { - "id": "e74bc045be925e752216271b3be59baf", - "intellisuggestData": "eJwEwDEKwzAMBdB_IYErvmprdGtrrKHuEQohQ5aQDLl9XjmvQzfkbu0VXkXfNGEoxWldvOb09GKRcgVC5mjyU_mOz5h4gIoEkoZlX_93AAAA__-w_xE9", - "intellisuggestSignature": "452393c942f22d659a622ff38e9338de54709784764bf8cb8879dae3c903537f", - "product_type_unigram": "boots" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "180509", - "sku": "B-UE-R4-14030", - "name": "True To Your Cool Red Clutch++", - "url": "/product/B-UE-R4-14030", - "addToCartUrl": "/product/B-UE-R4-14030", - "price": 38, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3630_copyright_reddressboutique_2017-2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3630_copyright_reddressboutique_2017-2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3630_copyright_reddressboutique_2017-2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ve gotta stay True To Your Cool when you’re headed out for a girl’s night. Your closest pals each know you like the back of their hand and they know when you’re not feeling quite right. This clutch though? It fits perfectly with your personal brand of cool. Your friends will wonder why they didn’t snatch it up first and beg you to let them borrow it! This clutch features a wrist strap and studded detailing. • Height measures 6.5\\\" width measures 11\\\" • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Urban Expressions", - "popularity": "4421", - "caption": "Captions!" - } - }, - "children": [], - "id": "180509", - "attributes": { - "id": "c8233ecbb8c0b980fa1ddb9111971ed3", - "intellisuggestData": "eJwEwEEKgCAQBdB_oYFR_6Sz1NIDBN0giBZtohbdvlfe74kXcrelDa8SZ5pwRIrTunjNOnmxobkCTbYuKyVQkyKACQqShuM-9z8AAP__kVcQVQ", - "intellisuggestSignature": "5a8b2987417342a8970ad01369a8de64202a2e84231aca1c0c8b2315acdf73af", - "product_type_unigram": "clutch" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "175968", - "sku": "C-BB-E6-12134", - "name": "Not Too Hot Not Too Cold Fern Green Jacket++", - "url": "/product/C-BB-E6-12134", - "addToCartUrl": "/product/C-BB-E6-12134", - "price": 72, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3370_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3370_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rdb_studio_2_3370_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "We've already got a jacket, your inner self says. You almost click off the page, but something stops you and you linger a bit longer on the picture. But it's so pretty. It's everything you've always wanted in a jacket. It's perfect. \\\"But I just pointed out that we've already got a jacket and we don't--\\\" Oh shut up self, you're the one who convinced me that guy really was Luke Wilson a few years ago. That was a terrible walk of shame. We're so getting the jacket. You owe me. Model is wearing an x-small. • 100% Cotton • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "BB Dakota", - "popularity": "4421", - "caption": "Captions!" - } - }, - "children": [], - "id": "175968", - "attributes": { - "id": "fdd1d8364bca36d8d13c80fa58ff209f", - "intellisuggestData": "eJwEwDEOwyAQBMD90Epw2QOuBAIviRSlSGPZhX_vadd92h91-Xvs6LQpp7aJIV-MXlOJ5jvVDkyOwVWYLb-EDAkJkhzf4_d5AgAA__-OOhA5", - "intellisuggestSignature": "05a2ccaab66c8e2af2fb51667d769a334bba5d2172cb38dfc75a7864a60306d2", - "product_type_unigram": "jacket" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "153534", - "sku": "C-PLC-V6-18602", - "name": "Fringe Cool Girl Tank Dress++", - "url": "/product/C-PLC-V6-18602", - "addToCartUrl": "/product/C-PLC-V6-18602", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5980_3_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5980_3_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5980_3_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "If you’re a Fringe Cool Girl wanting something stylish with a little edge, this Tank Dress In Purple Gypsy Soul is for you! The pleasing shade of purple is absolutely gorgeous, and the skull adds a little gypsy boho edge. It’s the perfect combo! This sleeveless A-line dress features a mock neck with a keyhole and a bullhead graphic. Model is wearing a small. • 94% Rayon, 6% Spandex • Hand Wash Cold • Unlined • Made in the USA", - "stockMessage": "In stock", - "brand": "PLC", - "popularity": "4421", - "caption": "Captions!" - } - }, - "children": [], - "id": "153534", - "attributes": { - "id": "8690b7335134d56c4022d9f7b88bfdf3", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuO9Z3EY5omU4dOnAAJMbAgGLg9r97PZQfK8O9nRhPrdOE0StCHRCuao_rU0oAu_1-XJUuqWQ0JdChIOrZzX98AAAD__6VdEKw", - "intellisuggestSignature": "ec40b0b5108cb37453ccfd84010fb663c5a2cda48b497c0058b8478994069682", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "183061", - "sku": "C-LR-W1-41751", - "name": "Only Forever White Dress++", - "url": "/product/C-LR-W1-41751", - "addToCartUrl": "/product/C-LR-W1-41751", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5604_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5604_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5604_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "When it comes to white dresses, Only Forever will do. It doesn’t have to be a wedding for a girl to fall in love in white though. The right dress will have you ready for a long term commitment in no time (although, once you’ve worn it, don’t be surprised if it’s not the dress itself you’re ready to commit to; it’s hard not to fall in love with). Double v-neck sundress features double straps and a darted bust. Model is wearing a small. • 100% Polyester • Machine Wash Cold • Lined • Imported", - "stockMessage": "In stock", - "brand": "Love Riche", - "popularity": "4418", - "caption": "Captions!" - } - }, - "children": [], - "id": "183061", - "attributes": { - "id": "a6729830e5fcf2afb5ecc0ee531c63f3", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUtx9B3HY5omU6cuXAAJMbAgGLg9r97PlQ_4sO9nRpPcacKZKUEbEs1TiWozeQO6_P6yqFDdFAoWJJA0bOe-vgEAAP__kvsQaQ", - "intellisuggestSignature": "d0e3b225860291c7a164095af83824949e0d196188bc3fd55fc661bec479dbfd", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181866", - "sku": "C-PA-W1-1133A", - "name": "Easy On The Eyelet White Top++", - "url": "/product/C-PA-W1-1133A", - "addToCartUrl": "/product/C-PA-W1-1133A", - "price": 38, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3122_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3122_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3122_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It's an awfully good thing that being easy on the eyes doesn't require actually looking anyone in the eyes at all. Unless you're naturally social, in which case that's not a problem. But for some of us, it's just easier to pop on a fabulous top, such as our, Easy On The Eyelet Top, and look too good to resist. So simple even someone with zero fashion experience could pull it off as long as they owned this beauty. Peplum top has a baby doll silhouette with a v-neckline. Model is wearing a small. • 75% Cotton 25% Rayon • Hand Wash Cold • Lined • Imported", - "stockMessage": "In stock", - "brand": "Paper Crane", - "popularity": "4418", - "caption": "Captions!" - } - }, - "children": [], - "id": "181866", - "attributes": { - "id": "66957e0c36a281b0d6d47c2446a793c2", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUtx8o3j0YRkZuMCSIihS9UOvX1fP6-jbvBpr-eKlDpowlUpQZsS6eUR3VbxBIa8Uz4qqq0lFHQUkDT89v_3DgAA__-SFRBk", - "intellisuggestSignature": "c7f562a85011ea9b5212e7bcc80bebec749804a326022c3fa4cc7814c3747c26", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "168238", - "sku": "A-CG-T2-2847", - "name": "Studio City Tan Sunglasses++", - "url": "/product/A-CG-T2-2847", - "addToCartUrl": "/product/A-CG-T2-2847", - "price": 14, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a0515_3_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a0515_3_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a0515_3_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ll be taking it to Studio City, looking movie star fabulous, in these fine Tan Sunglasses! Hope you’ve memorized your lines! These cat eye sunglasses feature brown and tan striped frames, dark brown arms with gold arrow design, and brown tinted lenses. • UV 400 Protection • Imported", - "stockMessage": "In stock", - "brand": "Creative Group", - "popularity": "4416", - "caption": "Captions!" - } - }, - "children": [], - "id": "168238", - "attributes": { - "id": "e32ac9d0cb729c300f0569cf8e683b4c", - "intellisuggestData": "eJwEwLENg0AMBdC_kKWL9R3bpXO5ywIZAQlR0CAo2J4X133qDh_2_cws0U4TTqUkbUiWt3eGzeYFlPSf_FU06HiBgQaShvXYlicAAP__gH4QJg", - "intellisuggestSignature": "64291bc2fb4ed5e4ea60c4561dcb75dafa3c745c4d3c365d2e7519bbf39f3658", - "product_type_unigram": "sunglasses" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "183841", - "sku": "C-EF-W1-1K7SF", - "name": "Lovely Tiers White Skirt++", - "url": "/product/C-EF-W1-1K7SF", - "addToCartUrl": "/product/C-EF-W1-1K7SF", - "price": 52, - "msrp": 75, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5-31-17adventureswithcarolineandhollyn0420_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/5-31-17adventureswithcarolineandhollyn0420_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/5-31-17adventureswithcarolineandhollyn0420_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "What's more classically feminine than a skirt? OK, a good old fashioned tea with biscuits and an long chat with a friend. But besides that, we happen to take great pride in a beautiful skirt. Something lovely. Something flirty. Something a little bit whimsical. Something that makes you feel as pretty as you did when you were a little girl playing dress up in your mother's finest clothes. White polka dot tulle skirt features an elastic waist with 3 tiers. Model is wearing a small. • 100 % Polyester • Hand Wash Cold • Lined • Imported", - "stockMessage": "In stock", - "brand": "English Factory", - "popularity": "4413", - "caption": "Captions!" - } - }, - "children": [], - "id": "183841", - "attributes": { - "id": "4e199336e0bd7ad48b72ee205937791f", - "intellisuggestData": "eJwEwLENhDAMBdC_kKUk-j7HZS7EDSUFCyAhChoEBdvz6vPe5YQNnf7hTUqnCqNQnDrEm6WfV41kDegyQtYsebYlkEFHAknFfh3bFwAA__-WrhCj", - "intellisuggestSignature": "1e43fde8b42eaf557bb901c37c4e462212ce6d402c8a42dab48d64392883d466", - "product_type_unigram": "skirt" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "138399", - "sku": "C-PA-O6-0712A", - "name": "Fringe In The Present Natural Embroidered Top++", - "url": "/product/C-PA-O6-0712A", - "addToCartUrl": "/product/C-PA-O6-0712A", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6655_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6655_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a6655_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "There’s no time like the present when you’re in our Fringe In The Present Natural Embroidered Top. This pleasing peasant top is so cute, with its embroidered detail and tassel tie, that you’ll be fully in the moment. Model is wearing a small. • 100% Rayon • Hand Wash Cold • Unlined • Faintly Sheer • Imported", - "stockMessage": "In stock", - "brand": "Paper Crane", - "popularity": "4411", - "caption": "Captions!" - } - }, - "children": [], - "id": "138399", - "attributes": { - "id": "f16d7dd906edd30311d24cc18b18ace1", - "intellisuggestData": "eJwEwDEOhTAIBuD_QiSUQCkjr69d9RAmxsHF6ODt_drz3nLCh_1_M5Kkq5FOUQq1QZHONZpN9gQ6rUlLJfYiiQJjMFTVsF_H9gUAAP__kaUQXQ", - "intellisuggestSignature": "ca5b7fd1a7ac91024d7bb36671089e6d94aaf0e45468822838a85a2db9807073", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "169637", - "sku": "C-JU-I6-JP717", - "name": "Rough Up Dark Blue Skinny Jeans++", - "url": "/product/C-JU-I6-JP717", - "addToCartUrl": "/product/C-JU-I6-JP717", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3312_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/rdb_studio_2_3312_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/rdb_studio_2_3312_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Bed head curls and a carelessly tucked tee, some things look even better when they’re roughed up a little, such as our Rough Up Dark Blue Skinny Jeans. A little distressed denim does just the opposite to your style game. It’s only a bonus. These distressed skinny jeans feature a standard 5-pocket styling and a zipper button fly. • 73% Cotton, 14% Rayon, 11% Polyester, 2% Spandex • Machine Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Just USA", - "popularity": "4409", - "caption": "Captions!" - } - }, - "children": [], - "id": "169637", - "attributes": { - "id": "3ea4f4a599a0337e6d3dbf96f3e81f0f", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUmA_GGYkmUhWaptvIGJsbAxWnh7X7mfKx2wrt_P8CqpUYUjUZzaxauF7EVHsAo0mYv8ssy_RUOERgSQVGznvr4BAAD__5aKEJQ", - "intellisuggestSignature": "b734c2ef1f09d7c999eff44d66e5f81c7ce7a35f65fa8d45e0868898ba168d39", - "product_type_unigram": "jeans" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "151092", - "sku": "C-CEZ-E2-D7804", - "name": "Lovely In Lace Mint Green Off-The-Shoulder Dress++", - "url": "/product/C-CEZ-E2-D7804", - "addToCartUrl": "/product/C-CEZ-E2-D7804", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1373_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1373_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a1373_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ll be looking Lovely In Lace and mesmerizing in Mint in this Green Off-The-Shoulder Dress. You’ll have it all in this fine, feminine number. You’ll be fit for the occasion and the best dressed wherever you go! This lace off-the-shoulder dress features an elastic neckline. Model is wearing a small. • 75% Cotton, 25% Nylon • Hand Wash Cold • Fully Lined • Faintly Sheer • Made in the USA", - "stockMessage": "In stock", - "brand": "Cezanne", - "popularity": "4409", - "caption": "Captions!" - } - }, - "children": [], - "id": "151092", - "attributes": { - "id": "32562706ce291abec8f9acce90f4866a", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuu9V3HY5o4h-hcqWJgQTBwe1677tN2RPn8rOxigy5cRkl6SfbQdzZfGh0YMuorZTKjKfGCGxQkHf9j-z0BAAD__6VEEK4", - "intellisuggestSignature": "0c2bccf3a8918ce0846457f86e663773059ec8565bbe05d9a8b888384e4e38ac", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "130520", - "sku": "C-CO-W1-T6632", - "name": "FRINGE: Baby Loves To Run Bodysuit++", - "url": "/product/C-CO-W1-T6632", - "addToCartUrl": "/product/C-CO-W1-T6632", - "price": 28.5, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5084_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5084_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5084_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You may never post the World Record in the 100 meter dash, but “Baby Loves To Run”!! Whether laced up in running sneakers or this bodysuit, prepare to be the girl who never needs to look back to see what’s behind!! Sizzling, skin-tight, and smoking, you are sure to run laps around the rest in this!! Ribbed bodysuit features lace up deep V-neckline and snap crotch. Model is wearing a small. • 60% Polyester, 30% Rayon, 5% Spandex • Hand Wash Cold • Unlined", - "stockMessage": "In stock", - "brand": "Cotton Candy", - "popularity": "4409", - "caption": "Captions!" - } - }, - "children": [], - "id": "130520", - "attributes": { - "id": "80986e1f8734bb5a066c616a309ed74c", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUlg-ANMybLQbrOJFzAxFjZGC2_vq_dz6YEy7PuZ3kQ7TTiV4rQh3krIXm2G0oAu_SdLlH_OSRFhCQEkDdu5r28AAAD__5SWEH4", - "intellisuggestSignature": "9f8f682cc88f573942053fc2329079fdcc59d2bc3fbbff797d5ce1d7658122ef", - "product_type_unigram": "bodysuit" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "139140", - "sku": "C-JTH-T1-031T5", - "name": "Judith March Call It Magic Print Poncho Top++", - "url": "/product/C-JTH-T1-031T5", - "addToCartUrl": "/product/C-JTH-T1-031T5", - "price": 98, - "msrp": 100, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1763_2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a1763_2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a1763_2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You might as well Judith March Call It Magic because this Print Poncho Top will have you looking and feeling magical. Perfect for a late night dinner with friends or a stroll around your vacation town, this lively top with its wide scoop neckline and tassels at the hems, is a fun and festive number. Model is wearing a small. • 100% Viscose • Dry Clean Only • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Judith March", - "popularity": "4408", - "caption": "Captions!" - } - }, - "children": [], - "id": "139140", - "attributes": { - "id": "a7bae7b6387f342152c8d2c697cdcbe1", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUkG9s_ClIgQY80RTIyFjdHC2_vy897xRGo2T92LxEoT9khxWhMvSf-erWsqQJV1LDKC6C8MQ4ARCpKG_Tq2LwAA__-nbBDI", - "intellisuggestSignature": "4b88f1d52597ed032825423a64370cb28e050cc19ff1c6d2960856b5f0975a19", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "136605", - "sku": "C-SE-P2-IT854", - "name": "Fringe For The Thrill Pink Ribbed Bodysuit++", - "url": "/product/C-SE-P2-IT854", - "addToCartUrl": "/product/C-SE-P2-IT854", - "price": 22, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0824_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a0824_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a0824_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "It can be fun to do things on a whim just for fun, especially if you're wearing our Fringe For The Thrill Pink Ribbed Bodysuit. You’ve got the guts and beauty to rock this daring ribbed bodysuit like nobody’s business so get to it! Sleeveless ribbed bodysuit features a scoop neckline and double snap crotch. Model is wearing a small. • 93% Polyester, 7% Spandex • Hand Wash Cold • Unlined", - "stockMessage": "In stock", - "brand": "Signature 8", - "popularity": "4407", - "caption": "Captions!" - } - }, - "children": [], - "id": "136605", - "attributes": { - "id": "07d970892431ac07c263ce9ae4d7a2fb", - "intellisuggestData": "eJwEwEEKgzAQBdB_oYF0-L_JLNM0ge4KegRBXLgRXXh7X7nu03fkru9nRDVvlHE4LahuUXN6R9FIuQLNpm5_t99cRLwgIYGksB7b8gQAAP__lsEQmQ", - "intellisuggestSignature": "728b53db344a6f5322fee4def5794456af28ea4716be29b586febebd25e1b06e", - "product_type_unigram": "fringe" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "102722", - "sku": "C-TC-I5-C6138", - "name": "Take Me to Neverland Dress++", - "url": "/product/C-TC-I5-C6138", - "addToCartUrl": "/product/C-TC-I5-C6138", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4760_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a4760_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a4760_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "As Peter Pan told us, “The second star to the right straight on till morning” was what we needed to follow to find our way to “Neverland”! After a certain point we may forget that way and need to employ different measures! Never fret, for the girl who finds herself looking in her walk in closet, this tunic is your passport to a land not where mermaids, pirates, and Lost Boys live, but free spirits, all things fashionable, and a bad boys with a heart of gold reside! Take this tunic to the streets and you will “Never” have to worry about being lost in the land you call home again! Long sleeve tunic features a V-neckline with crocheted detail and a hidden zipper on the left side. Lined body. Unlined sleeves. 100% Viscose. Wash by hand in cold water. Hang to dry. Made in China. Model is wearing a small. *RDB stylists recommend consulting exact measurements below for the best fit. Runs small through bust.* Length: Small measures 33.5\\\", Medium measures 34\\\", Large measures 35\\\" Bust: Small", - "stockMessage": "In stock", - "brand": "Tea + Cup", - "popularity": "4407", - "caption": "Captions!" - } - }, - "children": [], - "id": "102722", - "attributes": { - "id": "0ccf57e7cfaa11fb88f0dc9f932380dc", - "intellisuggestData": "eJwEwDEOgCAMBdB_oSaA_UBHrJC4ewQT4-BidPD2vvp-T7pQOpd5WJPkStGRVEzZxVoJ2SpHKA1w2VxWiuc4VUQwI0BVieM-9z8AAP__kukQbA", - "intellisuggestSignature": "216ec8761de43d5de93e4071898e0698c3026d6c8564ff08f9c15e6760bc3f3e", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "126460", - "sku": "C-UG-I7-C3255", - "name": "Forever Tonight Dress++", - "url": "/product/C-UG-I7-C3255", - "addToCartUrl": "/product/C-UG-I7-C3255", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0541_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a0541_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a0541_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "With him by your side making it all so right you know that your wish of “Forever Tonight” is more reality than a dream!! Bring this feeling of along anywhere with this dress that is sure to always and “Forever” be in style!! Peasant style dress features a tassel tie at elastic neckline and bell sleeves. • 65% Cotton, 35% Polyester • Hand Wash Cold • Unlined FIT: True to size BUST: Works for most bust sizes! Size Small measures 38\\\", Medium measures 40\\\", Large measures 42\\\" LENGTH: Above the knee. Size Small measures 33\\\", Medium measures 34\\\", Large measures 35\\\" WAIST: Loose fitting waist, great for those with a trouble waist area. HIPS: Loose fitting, plenty of room for movement. UNDERGARMENTS: Strapless or adhesive bra work best. FABRIC: Fabric contains no stretch. Model is 5'7\\\" and measures 32\\\" bust and 25\\\" waist. She is wearing a size small.", - "stockMessage": "In stock", - "brand": "Umgee", - "popularity": "4406", - "caption": "Captions!" - } - }, - "children": [], - "id": "126460", - "attributes": { - "id": "02fb5bc8688351582bdf04edf0b74c8c", - "intellisuggestData": "eJwEwLENhDAMBdC_kKWczx_HZQgJYgA2QEIUNAgKtufl5731hDdOY48iWo1iXU3C2CSKpyEye_ICVFlnWVzqX0n8QEeCmRH7dWxfAAAA__-TcxBx", - "intellisuggestSignature": "3cab4aaef9ee78a70997f7cc9c80abef4796fc1470823da2c31e4a4cb4f86a90", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "131777", - "sku": "B-LS-T3-F3922", - "name": "Last One Standing Tote++", - "url": "/product/B-LS-T3-F3922", - "addToCartUrl": "/product/B-LS-T3-F3922", - "price": 79, - "msrp": 100, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5151_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a5151_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a5151_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "When everyone is falling over with the load of things they have to carry in their hands, you’ll be the “Last One Standing”. Comfortable and stylish, you’ve got a hold on things, just like this appealing tote has a hold on all your wares. Embroidered tote with beading. • 100% Cotton", - "stockMessage": "In stock", - "brand": "Love Stitch", - "popularity": "4405", - "caption": "Captions!" - } - }, - "children": [], - "id": "131777", - "attributes": { - "id": "bc6dda3d41e794606b2d34c7d138f11d", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUup893EY9LGExscAQkxsCAYuD2v3s-lB8qwfw9voj-aMJTitCHeSvp6tUilAV2mWZYskV0VH1hFAknDdu7rGwAA__-UvBB_", - "intellisuggestSignature": "833592b00afd6f368f6c6700a82b1404b46d25d0e58898af76b8f587b89bcd62", - "product_type_unigram": "tote" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "127532", - "sku": "C-JTH-P6-058D4", - "name": "JUDITH MARCH: Miles From Nowhere Dress++", - "url": "/product/C-JTH-P6-058D4", - "addToCartUrl": "/product/C-JTH-P6-058D4", - "price": 108, - "msrp": 125, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3540_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/6b9a3540_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/6b9a3540_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "The car may be outta gas and you find yourself “Miles From Nowhere”, but with this dress, you will have a full tank in the style tank!! Go on a give a twirl in this pom-pom piece that no matter that setting is sure to be the center of attention that will never stop getting smiles and “Miles”!! Tiered dress features pom pom detail on the trim and a hook and eye closure at the left shoulder. • 100% Polyester • Dry Clean Only • Fully Lined • Made in the USA", - "stockMessage": "In stock", - "brand": "Judith March", - "popularity": "4404", - "caption": "Captions!" - } - }, - "children": [], - "id": "127532", - "attributes": { - "id": "d710e0dd9d1487e7ea71c90cfc859988", - "intellisuggestData": "eJwEwD0KhDAQBeB3oYHZ8CbJlNn8IFYWHkEQCxvRwtv75ee9w4nUrf2HFwmVJhyB4rQuXpJGzzY0FaDKvE6yRFHLjfjBHAqShv06ti8AAP__pzUQxg", - "intellisuggestSignature": "7ebbd5fe9b2084815cf0372ca9482e0f1a84ab66e1968570e81867dcceb1e9d1", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "183026", - "sku": "F-CCF-T1-LIVE", - "name": "Step Show Nude Ankle-Strap Sandals++", - "url": "/product/F-CCF-T1-LIVE", - "addToCartUrl": "/product/F-CCF-T1-LIVE", - "price": 22, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3397_copyright_reddressboutique_2017_-2_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3397_copyright_reddressboutique_2017_-2_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3397_copyright_reddressboutique_2017_-2_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Your feet in these sandals should be nothing less than a televised event. A Step Show, where you’re the shoe-in to win. I can practically hear the announcer. “Look at the slimming lines of the ankle straps. Top marks!” • Man made materials • Imported", - "stockMessage": "In stock", - "brand": "Bamboo", - "popularity": "4401", - "caption": "Captions!" - } - }, - "children": [], - "id": "183026", - "attributes": { - "id": "3cf5cb32ab2e96ad5294de7edcf9af76", - "intellisuggestData": "eJwEwDEKwzAMBdB_IYFsvmxrdF0LCh1LTxAIGbKEZMjt89p1n3lHnfZ-hXfJgyaMTHHaFO9VizcLrR0IGSPkl-T7-U8kFIWCpGE9tuUJAAD__5mGEME", - "intellisuggestSignature": "f346110763d554451468fb94fa5ba3f19b84819d20665fc8702b0812ea1b085e", - "product_type_unigram": "sandals" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181488", - "sku": "C-VJ-W1-71073", - "name": "Are You For Frill White Shorts++", - "url": "/product/C-VJ-W1-71073", - "addToCartUrl": "/product/C-VJ-W1-71073", - "price": 32, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0799_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/0799_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/0799_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Before my very eyes ... I've searched so long for the perfect pair of white shorts, ones that are cute but not childish, comfortable but not unattractive, preppy but not proud ... Are You For Frill? These are really here, online at The Red Dress Boutique? And it's that easy to make them mine? Man, I wish I'd known that. Sure would have saved me a lot of plane tickets and dog sled rides. Geez. Model is wearing a small. • 70% Viscose 30% Linen • Hand Wash Cold • Lined • Imported", - "stockMessage": "In stock", - "brand": "Very J", - "popularity": "4400", - "caption": "Captions!" - } - }, - "children": [], - "id": "181488", - "attributes": { - "id": "9f64b9b2ea595ae36257eb71a7af5ff1", - "intellisuggestData": "eJwEwLENhDAMBdC_kCU7Z8dxmQtJwQCwABKioEFQsD2vPO-dTni36T-iUmpqpCMphVqnqM45ig32CjRaZlqFXNh_EGQBQ1UN-3VsXwAAAP__kxYQaA", - "intellisuggestSignature": "f227c7b9df6f51eda2585d33df023886a2e866115fea95549cca56de3ada36b8", - "product_type_unigram": "you" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "109938", - "sku": "F-QPD-G7-A902A", - "name": "To Victory Black Lace-Up Gladiator Sandals++", - "url": "/product/F-QPD-G7-A902A", - "addToCartUrl": "/product/F-QPD-G7-A902A", - "price": 35.5, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6131_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a6131_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a6131_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "If you’re looking for something that will get you through the fight and onward To Victory, then look no further than these Black Lace-Up Gladiator Sandals! Prepare for battle and step into the arena with these sandals on your feet and the fight will not be for survival, but for style and bragging rights! Gladiator sandals feature gold hardware and fringe detail with visible back zipper. Height measures 14.5\\\"", - "stockMessage": "In stock", - "brand": "Qupid", - "popularity": "4396", - "caption": "Captions!" - } - }, - "children": [], - "id": "109938", - "attributes": { - "id": "05b0c935c4ee985e9a5c804c2bc101f3", - "intellisuggestData": "eJwEwLEOg0AIBuD_hUgogeMYae_o2r6DiXFwMTr49n79uk_Z4dPGuyJJPmqkJUqhNinSuUW3Yk-g6P8b9HXKYEm80AQMVTWsx7Y8AQAA__-nKRDC", - "intellisuggestSignature": "6fc8d0150c4b420f66c7f19042f50f506c281bd5771e1a6da4dc33d85b17ee44", - "product_type_unigram": "sandals" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "102902", - "sku": "C-HU-I7-53DMS", - "name": "HUDSON:Croxley Shorts++", - "url": "/product/C-HU-I7-53DMS", - "addToCartUrl": "/product/C-HU-I7-53DMS", - "price": 128, - "msrp": 150, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a2659_1_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/478a2659_1_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/478a2659_1_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Let your inner icon come out and play in these fame worthy shorts! The Croxley Short is the perfect pair for summer style. It features our iconic back pocket, rolled cuff and a 3.5\\\" inseam. You'll love it in Iconic, a medium blue wash with contrast threading and fading for a slightly worn-in look. Denim shorts feature a two button and zipper fly closure, 5 pockets, and are folded at the hemline. Unlined. 92% Cotton, 6% Polyester, 2% Elastan. Machine wash cold. Tumble dry medium. Iron low if needed. Made in Mexico. *RDB stylists recommend consulting exact measurements below for the best fit* Length: 26 measures 11”, 27 measures 11”, 28 measures 11”, 29 measures 12”, 30 measures 12” Waist: 26 measures 30”, 27 measures 32”, 28 measures 33”, 29 measures 34”, 30 measures 35” Inseam: 26 measures 3.5”, 27 measures 3.5”, 28 measures 3.5”, 29 measures 3.5”, 30 measures 3.5”", - "stockMessage": "In stock", - "brand": "Hudson", - "popularity": "4396", - "caption": "Captions!" - } - }, - "children": [], - "id": "102902", - "attributes": { - "id": "e9cf0c2ed5253ce5e737547451f52d70", - "intellisuggestData": "eJwEwDsKgDAMBuD_QoHaJk0z1j7QwUm8gSAOLqKDt_dL7_f4C9qkjt0y-cJC3D2TsTSyrC5aku40A4WmjWYlCXVZMSAGODCz4LjP_Q8AAP__l3MQqQ", - "intellisuggestSignature": "fd552493d5088ea143dacdbb2ef51e4715da2aba5423262eca74a442fd1c1ba6", - "product_type_unigram": "shorts" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181766", - "sku": "D-BAN-72213", - "name": "Beach Please Pool Party Giant Beach Towel++", - "url": "/product/D-BAN-72213", - "addToCartUrl": "/product/D-BAN-72213", - "price": 38, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3328_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3328_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3328_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "If you're reading this, you are officially banned from taking your shower towel to the beach ever again. It's time to take your beach game to a whole other level with our big and bold towel. Just imagine the photographic possibilities alone: you, stretched out on one of these insanely fun beauties, piña colada in hand, looking cool as hell. You're welcome. • 72 in. x 40 in. oversized towel • terry cloth 340 gsm • large ban.do woven label on the seam", - "stockMessage": "In stock", - "brand": "Ban.do", - "popularity": "4395", - "caption": "Captions!" - } - }, - "children": [], - "id": "181766", - "attributes": { - "id": "afa0f421caa62a5d83bcc7de4761125e", - "intellisuggestData": "eJwEwDEOwjAMBdB_IUuJ-Y7j0SHJyCmQEAMLaofevq-f16E_-LI5dqTokybcSgnakkgvLbrt4glMGfkSV60PVDSigKTh8_--7wAAAP__b1gP5Q", - "intellisuggestSignature": "54cc06eb1f793cb35b6ac4351f3cf80cef9b40c491c8be6f5c5f90f4c4ec20c4", - "product_type_unigram": "towel" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "180407", - "sku": "F-FL-B3-TIVE9", - "name": "Modern Details Brown Lace-Up Pom Sandals++", - "url": "/product/F-FL-B3-TIVE9", - "addToCartUrl": "/product/F-FL-B3-TIVE9", - "price": 22, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3473_copyright_reddressboutique_2017_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3473_copyright_reddressboutique_2017_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3473_copyright_reddressboutique_2017_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "When you think about Modern Details, what makes your heart sing? Are they pom-poms, tassels, and intricate coin and stone details? Yes? We knew it. This simple shoe with some not-so-simple details is calling your name. Sandals feature tie-up strings with tassels attached and toe strap. • Non-Skid Sole • Vegan friendly, man made materials • Imported", - "stockMessage": "In stock", - "brand": "Forever Link", - "popularity": "4393", - "caption": "Captions!" - } - }, - "children": [], - "id": "180407", - "attributes": { - "id": "ec6904d81ca34cd0da8751ccceda44a3", - "intellisuggestData": "eJwEwDEKhDAQBdB_oYFs9k-SKRPNgGApnkAQCxvRwtv7yvPe8UTuOja3KnGgCj1SjNrFag7JinrIFXDxWdpflmnthh-SIoCkYr-O7QsAAP__mSEQvQ", - "intellisuggestSignature": "821d4cfd4c071d3ee7427ca6bd402d83c265029c6f076a636995158be843b65b", - "product_type_unigram": "sandals" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "179069", - "sku": "A-FR-B2-10248", - "name": "Sun Chaser Brown Sunglasses++", - "url": "/product/A-FR-B2-10248", - "addToCartUrl": "/product/A-FR-B2-10248", - "price": 14, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3492_copyright_reddressboutique_2017_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3492_copyright_reddressboutique_2017_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3492_copyright_reddressboutique_2017_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "We thought about making some snarky vampire remarks here, but these sunglasses are so cool they pretty much sell themselves. Plus, if you were worried about bursting into flames, sunglasses aren't really going to help you much. That would be like putting on sunscreen before diving into a volcano. Just saying. But for mere mortals ... these are perfect for keeping the sun out of your eyes, and therefore that pretty face of yours free from those wrinkles you get from squinting too much. Think of it as preventative maintenance. • Imported", - "stockMessage": "In stock", - "brand": "Frontiree Fashion", - "popularity": "4390", - "caption": "Captions!" - } - }, - "children": [], - "id": "179069", - "attributes": { - "id": "57fdaa7d212ab4277cfbad5a97dae5b0", - "intellisuggestData": "eJwEwLENAjEMBdC_kCXH-k7i0oF4AGZAQhQ06K647e_N8zrsh7H9uSpS7EEXllGCviVyaI_ppSOBlHrJMmlqnGjoHQqSjs__-74DAAD__4_uEEw", - "intellisuggestSignature": "3227ce96c7425fa163be74a8768f703faf644f58263e8202f06b5ac619d72a2b", - "product_type_unigram": "sunglasses" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "182203", - "sku": "D-BAN-73490", - "name": "Good Vibes Greeting Card Set++", - "url": "/product/D-BAN-73490", - "addToCartUrl": "/product/D-BAN-73490", - "price": 12, - "msrp": 25, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3539_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/3539_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/3539_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Is there anything better that getting some encouragement when you least expect it? We took some of our favorite phrases to pass out and turned them into mailable magic. Just looking at the metallic foil text (and envelopes with gold foil lining!!!) will turn anyone's day around. Go on, send someone some good vibes! •5.25 in. x 4.125 in. •Set of 10 cards, 5 designs, 2 of each •Tonal metallic printing •Foil-lined envelopes", - "stockMessage": "In stock", - "brand": "ban.do", - "popularity": "4388", - "caption": "Captions!" - } - }, - "children": [], - "id": "182203", - "attributes": { - "id": "483382e20e781e67157dfe0ec5029b10", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUtu-h3Ho9MkY09RqWJgQTBwe1677rPs8Gmjr0gpH5pwFUrQpkS61mi21BMY0vMr_mYoXqgOBUnD_9h-TwAAAP__cB4P8A", - "intellisuggestSignature": "c1b2722ccdda49290d556abf72e69db667ef33bed5b2e4ab5482df39e5ed02fd", - "product_type_unigram": "card" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "152061", - "sku": "C-EN-R2-D3626", - "name": "The Heart of Life Tomato Red Dress++", - "url": "/product/C-EN-R2-D3626", - "addToCartUrl": "/product/C-EN-R2-D3626", - "price": 42, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/46_8189_copyright_reddressboutique_2016_copy_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/46_8189_copyright_reddressboutique_2016_copy_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/46_8189_copyright_reddressboutique_2016_copy_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "This Heart of Life Tomato Red Dress beats to the rhythm of its own drummer! It’s always changing tempo but never letting up from driving you towards your greatest wish! Going from dream to dream requires a special something that causes this heart to go all a-flutter! No matter if your heart finds itself caught up in the crocheted neckline or the lacy hem, this is one dress that is sure to fill up your heart with style and a lot of rhythm!! This A-line dress features crochet detail at the bust, a small keyhole on the back with a double button loop closure, and a scalloped hemline with lace. Model is wearing a small. • 100% Rayon • Hand Wash Cold • Semi Lined • Semi Sheer • Imported", - "stockMessage": "In stock", - "brand": "Entro", - "popularity": "4385", - "caption": "Captions!" - } - }, - "children": [], - "id": "152061", - "attributes": { - "id": "deaaafaa7a4f2e6def6eb610969cedef", - "intellisuggestData": "eJwEwD0OgzAMBeB3IUup--zEY5qfsQNnQEIMLAgGbs9X7ufSA3lY_82ooo0mnEoJ2pCoOXkUmylXoMn4y6LSv66OD7wggaRhO_f1DQAA__-TMxBx", - "intellisuggestSignature": "4dfaebf415ca67eee7767ca2e46359840806ffc0471c35d31d85bd12e9a5920d", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "153258", - "sku": "C-CES-I7-I3347", - "name": "Lakeside Navy Maxi Dress++", - "url": "/product/C-CES-I7-I3347", - "addToCartUrl": "/product/C-CES-I7-I3347", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/208_9029_copyright_reddressboutique_2016_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/208_9029_copyright_reddressboutique_2016_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/208_9029_copyright_reddressboutique_2016_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "You’ll be as picturesque as a painting when you’re chilling Lakeside in this simply chic Navy Maxi Dress. Taking it easy has never looked so glamorous! This sleeveless maxi dress features a crew neckline, an elastic waist with drawstring closure, a wrap style hi-lo hemline, and a keyhole with button loop closure on the back. Model is wearing a small. • 95% Rayon, 5% Spandex • Hand Wash Cold • Lined Top • Faintly Sheer • Made in the USA", - "stockMessage": "In stock", - "brand": "Ces Femme", - "popularity": "4384", - "caption": "Captions!" - } - }, - "children": [], - "id": "153258", - "attributes": { - "id": "50e1922c1182cd8c3f6c59221ff52187", - "intellisuggestData": "eJwEwDEOhCAQBdB_oUlY-MMwJYuQUHsFE2NhY7Tw9r7yvHc8YV2X__AqsVGFI1Kc2sWrhexFR7AKNGl9lWkyU6Lhh-wIIKnYr2P7AgAA__-mBBC7", - "intellisuggestSignature": "be361119254194a59093b533ac1709b26d55df17787f3335d14b08a68c4539d3", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "181655", - "sku": "C-VJ-P2-32007", - "name": "Take The Leap Pink Dress++", - "url": "/product/C-VJ-P2-32007", - "addToCartUrl": "/product/C-VJ-P2-32007", - "price": 39, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2507_copyright_reddressboutique_2017__large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/2507_copyright_reddressboutique_2017__large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/2507_copyright_reddressboutique_2017__thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Sometimes the perfect outfit looks so good, it leaves your nerves all aflutter at the thought of how you’ll look. “Is it too sexy?” “Does it stand out too much?” “Will I have to wear Spanx?” But sometimes, to look like a goddess, one simply needs to Take a Leap of faith, and trust in the power of the dress. If it’s the right dress (like this one, for instance), your faith will be prove well placed, and be well rewarded. Sundress has a scalloped neckline with a racerback and invisible zipper with a hook and eye closure. Model is wearing a small. • 100% Polyester • Machine Wash Cold • Lined • Imported", - "stockMessage": "In stock", - "brand": "Very J", - "popularity": "4382", - "caption": "Captions!" - } - }, - "children": [], - "id": "181655", - "attributes": { - "id": "e81759b489ccd64940804828329e1e03", - "intellisuggestData": "eJwEwDEOgzAMBdB_IUuu-13HY5omQycmToCEGFgQDNyeV677tB3R_fcdWcUaXTiMkvQuWUM_WXxoVKDJ_JfJ5G2qgRdCoSDpWI9teQIAAP__kgAQXA", - "intellisuggestSignature": "c5fb3d23e7b72a82120843b283da45cdfb1fd5892243c5458d0ea575b2a63b1f", - "product_type_unigram": "dress" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "173032", - "sku": "C-STC-R7-3268C", - "name": "Picture This Burgundy V-Neck Top++", - "url": "/product/C-STC-R7-3268C", - "addToCartUrl": "/product/C-STC-R7-3268C", - "price": 36, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/119_lcp_5351_reddressboutique_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/119_lcp_5351_reddressboutique_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/119_lcp_5351_reddressboutique_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "Picture this: You, in your worst recurring dream, which probably involves you being in high school again. And, of course, you’re naked. Now try imagining it again, only this time, you look like you do right now, and you’re wearing this fantastic top (as well as the rest of your clothes). Now picture the looks on everyone’s faces as they see just how sexy you are now. See, isn’t that better? Model is wearing a small. • 76% Rayon, 20% Polyester, 4% Spandex • Hand Wash Cold • Unlined • Imported", - "stockMessage": "In stock", - "brand": "Staccato", - "popularity": "4382", - "caption": "Captions!" - } - }, - "children": [], - "id": "173032", - "attributes": { - "id": "fd14d0d437829b2d503de033f13f0c12", - "intellisuggestData": "eJwEwLENhDAMBdC_kKXEZ8dxmTPJAMAISIiCBkHB9rz6vDefsK7Tf3gjDlGSwUIu2smbpeJVR7IGBC1r0Gz041IDGZaRICKK_Tq2LwAA__-nthDI", - "intellisuggestSignature": "195751a4a25d9837e51bdcffdefef25354fb66df54ab15a96a1c3b2313141642", - "product_type_unigram": "top" - }, - "custom": {} - }, - { - "type": "product", - "mappings": { - "core": { - "uid": "124472", - "sku": "C-DRF-G7-B1380", - "name": "Just A Game Bralette++", - "url": "/product/C-DRF-G7-B1380", - "addToCartUrl": "/product/C-DRF-G7-B1380", - "price": 29, - "msrp": 50, - "imageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4174_large.jpg", - "secureImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_large/844a4174_large.jpg", - "thumbnailImageUrl": "https://searchspring-demo-content.s3.amazonaws.com/demo/fashion/product_images_thumb_med/844a4174_thumb_med.jpg", - "rating": "5", - "ratingCount": "1111", - "description": "If they think it is “Just A Game”, let them know that you have come ready to win!! Come strapped up in this strappy bralette and you are sure to walk away with the victory to go along with game winning style!! Faintly sheer. Strappy lace bralette with an elastic band. Faintly Sheer. Model is wearing a small. • 80% Nylon, 20% Spandex • Hand Wash Cold • Unlined FIT: True to size BUST: Best for A-C cups-consider sizing up if you’re blessed in the bust. Size Small measures 32\\\", Medium measures 34\\\", Large measures 36\\\" FABRIC: Fabric is very stretchy! Model Info: Model is 5’7” and measures 32” bust, 25” waist. She is wearing a size small.", - "stockMessage": "In stock", - "brand": "Dress Forum", - "popularity": "4382", - "caption": "Captions!" - } - }, - "children": [], - "id": "124472", - "attributes": { - "id": "c6d86ccf3c8b931ff54a9d4d5fb93d49", - "intellisuggestData": "eJwEwLsNw0AIBuB_ISSOQDjKe5E-M0SKXLix7MLb-6vXfcoOXzZ7RiMZaqQpSqG2KJrzO6olewMGzW_Sx6mXV2UUuIChqob_sf2eAAAA__-kuRCo", - "intellisuggestSignature": "289b50168dca5ba8176c1b30d10116b6147e192b91e0578c52da9c1d73d76302", - "product_type_unigram": "bralette" - }, - "custom": {} - } - ], - "facets": [ - { - "field": "price", - "type": "range", - "filtered": false, - "step": 5, - "range": { - "low": 0, - "high": 280 - }, - "active": { - "low": 0, - "high": 280 - } - }, - { - "type": "value", - "field": "color_family", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Blue", - "label": "Blue", - "count": 758 - }, - { - "filtered": false, - "value": "White", - "label": "White", - "count": 673 - }, - { - "filtered": false, - "value": "Pink", - "label": "Pink", - "count": 532 - }, - { - "filtered": false, - "value": "Black", - "label": "Black", - "count": 369 - }, - { - "filtered": false, - "value": "Beige", - "label": "Beige", - "count": 316 - }, - { - "filtered": false, - "value": "Gray", - "label": "Gray", - "count": 303 - }, - { - "filtered": false, - "value": "Red", - "label": "Red", - "count": 261 - }, - { - "filtered": false, - "value": "Green", - "label": "Green", - "count": 237 - }, - { - "filtered": false, - "value": "Yellow", - "label": "Yellow", - "count": 202 - }, - { - "filtered": false, - "value": "Brown", - "label": "Brown", - "count": 174 - }, - { - "filtered": false, - "value": "Orange", - "label": "Orange", - "count": 99 - }, - { - "filtered": false, - "value": "Purple", - "label": "Purple", - "count": 79 - }, - { - "filtered": false, - "value": "Grey", - "label": "Grey", - "count": 2 - } - ] - }, - { - "type": "value", - "field": "brand", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "2B Clothing", - "label": "2B Clothing", - "count": 6 - }, - { - "filtered": false, - "value": "2Hearts", - "label": "2Hearts", - "count": 1 - }, - { - "filtered": false, - "value": "4 Sienna", - "label": "4 Sienna", - "count": 11 - }, - { - "filtered": false, - "value": "5th Avenue", - "label": "5th Avenue", - "count": 34 - }, - { - "filtered": false, - "value": "12 PM by Mon Ami", - "label": "12 PM by Mon Ami", - "count": 10 - }, - { - "filtered": false, - "value": "36point5", - "label": "36point5", - "count": 1 - }, - { - "filtered": false, - "value": "143 Story", - "label": "143 Story", - "count": 6 - }, - { - "filtered": false, - "value": "Aakaa", - "label": "Aakaa", - "count": 25 - }, - { - "filtered": false, - "value": "Activusa", - "label": "Activusa", - "count": 3 - }, - { - "filtered": false, - "value": "Adriana", - "label": "Adriana", - "count": 1 - }, - { - "filtered": false, - "value": "Adrienne", - "label": "Adrienne", - "count": 156 - }, - { - "filtered": false, - "value": "After Market", - "label": "After Market", - "count": 15 - }, - { - "filtered": false, - "value": "Amazing Grace", - "label": "Amazing Grace", - "count": 1 - }, - { - "filtered": false, - "value": "Amazing Spirit", - "label": "Amazing Spirit", - "count": 3 - }, - { - "filtered": false, - "value": "Amazing Sport", - "label": "Amazing Sport", - "count": 8 - }, - { - "filtered": false, - "value": "American Bazi", - "label": "American Bazi", - "count": 3 - }, - { - "filtered": false, - "value": "Amor Us", - "label": "Amor Us", - "count": 1 - }, - { - "filtered": false, - "value": "Anama", - "label": "Anama", - "count": 11 - }, - { - "filtered": false, - "value": "Andrea Bijoux", - "label": "Andrea Bijoux", - "count": 2 - }, - { - "filtered": false, - "value": "ANM", - "label": "ANM", - "count": 4 - }, - { - "filtered": false, - "value": "Anne Michelle", - "label": "Anne Michelle", - "count": 14 - }, - { - "filtered": false, - "value": "Anzell", - "label": "Anzell", - "count": 11 - }, - { - "filtered": false, - "value": "Ark & Co", - "label": "Ark & Co", - "count": 11 - }, - { - "filtered": false, - "value": "Aryeh", - "label": "Aryeh", - "count": 11 - }, - { - "filtered": false, - "value": "Audrey 3+1", - "label": "Audrey 3+1", - "count": 15 - }, - { - "filtered": false, - "value": "Audry 3+1", - "label": "Audry 3+1", - "count": 2 - }, - { - "filtered": false, - "value": "Aura L'atiste", - "label": "Aura L'atiste", - "count": 49 - }, - { - "filtered": false, - "value": "Ayepeach", - "label": "Ayepeach", - "count": 14 - }, - { - "filtered": false, - "value": "B. Sharp", - "label": "B. Sharp", - "count": 3 - }, - { - "filtered": false, - "value": "Bamboo", - "label": "Bamboo", - "count": 71 - }, - { - "filtered": false, - "value": "Ban.do", - "label": "Ban.do", - "count": 3 - }, - { - "filtered": false, - "value": "ban.do", - "label": "ban.do", - "count": 12 - }, - { - "filtered": false, - "value": "Banana", - "label": "Banana", - "count": 4 - }, - { - "filtered": false, - "value": "BB Dakota", - "label": "BB Dakota", - "count": 21 - }, - { - "filtered": false, - "value": "BB Daktota", - "label": "BB Daktota", - "count": 1 - }, - { - "filtered": false, - "value": "Beach Joy", - "label": "Beach Joy", - "count": 20 - }, - { - "filtered": false, - "value": "Beautifully", - "label": "Beautifully", - "count": 1 - }, - { - "filtered": false, - "value": "Beauty Creations", - "label": "Beauty Creations", - "count": 2 - }, - { - "filtered": false, - "value": "Bella Marie", - "label": "Bella Marie", - "count": 5 - }, - { - "filtered": false, - "value": "Bien Bien", - "label": "Bien Bien", - "count": 1 - }, - { - "filtered": false, - "value": "Blu Pepper", - "label": "Blu Pepper", - "count": 18 - }, - { - "filtered": false, - "value": "Blushing Heart", - "label": "Blushing Heart", - "count": 1 - }, - { - "filtered": false, - "value": "BLVD", - "label": "BLVD", - "count": 7 - }, - { - "filtered": false, - "value": "Bo Bel/Hello Miss", - "label": "Bo Bel/Hello Miss", - "count": 1 - }, - { - "filtered": false, - "value": "Bozzolo", - "label": "Bozzolo", - "count": 12 - }, - { - "filtered": false, - "value": "Breckelle's", - "label": "Breckelle's", - "count": 91 - }, - { - "filtered": false, - "value": "Brekelle's", - "label": "Brekelle's", - "count": 10 - }, - { - "filtered": false, - "value": "BSharp", - "label": "BSharp", - "count": 2 - }, - { - "filtered": false, - "value": "Buddy Love", - "label": "Buddy Love", - "count": 9 - }, - { - "filtered": false, - "value": "Cals Collection", - "label": "Cals Collection", - "count": 1 - } - ] - }, - { - "type": "value", - "field": "ss_category_hierarchy", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Gifts for Her", - "label": "Gifts for Her", - "count": 4460 - }, - { - "filtered": false, - "value": "Shop By Trend", - "label": "Shop By Trend", - "count": 1240 - }, - { - "filtered": false, - "value": "What's New", - "label": "What's New", - "count": 573 - }, - { - "filtered": false, - "value": "All Accessories", - "label": "All Accessories", - "count": 473 - }, - { - "filtered": false, - "value": "All Dresses", - "label": "All Dresses", - "count": 400 - }, - { - "filtered": false, - "value": "All Sale", - "label": "All Sale", - "count": 365 - }, - { - "filtered": false, - "value": "All Jewelry", - "label": "All Jewelry", - "count": 342 - }, - { - "filtered": false, - "value": "All Tops", - "label": "All Tops", - "count": 322 - }, - { - "filtered": false, - "value": "Brands We Love", - "label": "Brands We Love", - "count": 274 - }, - { - "filtered": false, - "value": "Notify of Restock", - "label": "Notify of Restock", - "count": 239 - }, - { - "filtered": false, - "value": "Home & Office Decor", - "label": "Home & Office Decor", - "count": 220 - }, - { - "filtered": false, - "value": "All Shoes", - "label": "All Shoes", - "count": 213 - }, - { - "filtered": false, - "value": "Swimwear", - "label": "Swimwear", - "count": 169 - }, - { - "filtered": false, - "value": "Going Fast", - "label": "Going Fast", - "count": 157 - }, - { - "filtered": false, - "value": "All Bottoms", - "label": "All Bottoms", - "count": 140 - }, - { - "filtered": false, - "value": "Playsuits", - "label": "Playsuits", - "count": 139 - }, - { - "filtered": false, - "value": "Special Occasion", - "label": "Special Occasion", - "count": 125 - }, - { - "filtered": false, - "value": "Athleisure", - "label": "Athleisure", - "count": 119 - }, - { - "filtered": false, - "value": "Style Influencer", - "label": "Style Influencer", - "count": 112 - }, - { - "filtered": false, - "value": "Trending", - "label": "Trending", - "count": 112 - }, - { - "filtered": false, - "value": "Memorial Day Sale", - "label": "Memorial Day Sale", - "count": 103 - }, - { - "filtered": false, - "value": "Back in Stock", - "label": "Back in Stock", - "count": 64 - }, - { - "filtered": false, - "value": "Valentine's Day", - "label": "Valentine's Day", - "count": 55 - }, - { - "filtered": false, - "value": "Shop Lookbook", - "label": "Shop Lookbook", - "count": 30 - }, - { - "filtered": false, - "value": "All Intimates", - "label": "All Intimates", - "count": 20 - }, - { - "filtered": false, - "value": "All Pajamas", - "label": "All Pajamas", - "count": 20 - }, - { - "filtered": false, - "value": "White & Blue Looks", - "label": "White & Blue Looks", - "count": 20 - }, - { - "filtered": false, - "value": "Top Rated", - "label": "Top Rated", - "count": 9 - }, - { - "filtered": false, - "value": "Shop By Outfit", - "label": "Shop By Outfit", - "count": 3 - } - ] - }, - { - "type": "value", - "field": "on_sale", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Yes", - "label": "Yes", - "count": 1504 - }, - { - "filtered": false, - "value": "No", - "label": "No", - "count": 2956 - } - ] - }, - { - "type": "value", - "field": "size", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "1", - "label": "1", - "count": 14 - }, - { - "filtered": false, - "value": "2", - "label": "2", - "count": 2 - }, - { - "filtered": false, - "value": "3", - "label": "3", - "count": 14 - }, - { - "filtered": false, - "value": "4", - "label": "4", - "count": 2 - }, - { - "filtered": false, - "value": "5", - "label": "5", - "count": 46 - }, - { - "filtered": false, - "value": "6", - "label": "6", - "count": 497 - }, - { - "filtered": false, - "value": "7", - "label": "7", - "count": 521 - }, - { - "filtered": false, - "value": "8", - "label": "8", - "count": 509 - }, - { - "filtered": false, - "value": "9", - "label": "9", - "count": 519 - }, - { - "filtered": false, - "value": "10", - "label": "10", - "count": 504 - }, - { - "filtered": false, - "value": "11", - "label": "11", - "count": 109 - }, - { - "filtered": false, - "value": "13", - "label": "13", - "count": 14 - }, - { - "filtered": false, - "value": "15", - "label": "15", - "count": 1 - }, - { - "filtered": false, - "value": "24", - "label": "24", - "count": 63 - }, - { - "filtered": false, - "value": "25", - "label": "25", - "count": 69 - }, - { - "filtered": false, - "value": "26", - "label": "26", - "count": 72 - }, - { - "filtered": false, - "value": "27", - "label": "27", - "count": 72 - }, - { - "filtered": false, - "value": "28", - "label": "28", - "count": 72 - }, - { - "filtered": false, - "value": "29", - "label": "29", - "count": 72 - }, - { - "filtered": false, - "value": "30", - "label": "30", - "count": 72 - }, - { - "filtered": false, - "value": "31", - "label": "31", - "count": 58 - }, - { - "filtered": false, - "value": "X-Small", - "label": "X-Small", - "count": 178 - }, - { - "filtered": false, - "value": "Small", - "label": "Small", - "count": 2802 - }, - { - "filtered": false, - "value": "Medium", - "label": "Medium", - "count": 2802 - }, - { - "filtered": false, - "value": "Large", - "label": "Large", - "count": 2790 - }, - { - "filtered": false, - "value": "L/XL", - "label": "L/XL", - "count": 11 - }, - { - "filtered": false, - "value": "X-Large", - "label": "X-Large", - "count": 67 - }, - { - "filtered": false, - "value": "1X", - "label": "1X", - "count": 4 - }, - { - "filtered": false, - "value": "2X", - "label": "2X", - "count": 4 - }, - { - "filtered": false, - "value": "3X", - "label": "3X", - "count": 4 - }, - { - "filtered": false, - "value": "5.5", - "label": "5.5", - "count": 351 - }, - { - "filtered": false, - "value": "6.5", - "label": "6.5", - "count": 477 - }, - { - "filtered": false, - "value": "7.5", - "label": "7.5", - "count": 488 - }, - { - "filtered": false, - "value": "8.5", - "label": "8.5", - "count": 488 - }, - { - "filtered": false, - "value": "ONE SIZE", - "label": "ONE SIZE", - "count": 432 - } - ] - }, - { - "type": "value", - "field": "size_dress", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "1X", - "label": "1X", - "count": 4 - }, - { - "filtered": false, - "value": "2X", - "label": "2X", - "count": 4 - }, - { - "filtered": false, - "value": "3X", - "label": "3X", - "count": 4 - }, - { - "filtered": false, - "value": "L/XL", - "label": "L/XL", - "count": 11 - }, - { - "filtered": false, - "value": "Large", - "label": "Large", - "count": 2790 - }, - { - "filtered": false, - "value": "Medium", - "label": "Medium", - "count": 2802 - }, - { - "filtered": false, - "value": "Small", - "label": "Small", - "count": 2802 - }, - { - "filtered": false, - "value": "X-Large", - "label": "X-Large", - "count": 67 - }, - { - "filtered": false, - "value": "X-Small", - "label": "X-Small", - "count": 178 - } - ] - }, - { - "type": "value", - "field": "material", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Wool", - "label": "Wool", - "count": 11 - }, - { - "filtered": false, - "value": "Vegan Leather", - "label": "Vegan Leather", - "count": 6 - }, - { - "filtered": false, - "value": "Spandex", - "label": "Spandex", - "count": 386 - }, - { - "filtered": false, - "value": "Silk", - "label": "Silk", - "count": 16 - }, - { - "filtered": false, - "value": "Rubber", - "label": "Rubber", - "count": 20 - }, - { - "filtered": false, - "value": "Polyester", - "label": "Polyester", - "count": 1353 - }, - { - "filtered": false, - "value": "Linen", - "label": "Linen", - "count": 65 - }, - { - "filtered": false, - "value": "Leather", - "label": "Leather", - "count": 47 - }, - { - "filtered": false, - "value": "Faux Leather", - "label": "Faux Leather", - "count": 39 - }, - { - "filtered": false, - "value": "Denim", - "label": "Denim", - "count": 67 - }, - { - "filtered": false, - "value": "Cotton", - "label": "Cotton", - "count": 661 - } - ] - }, - { - "type": "value", - "field": "season", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Summer", - "label": "Summer", - "count": 577 - }, - { - "filtered": false, - "value": "Spring", - "label": "Spring", - "count": 444 - }, - { - "filtered": false, - "value": "Fall", - "label": "Fall", - "count": 252 - }, - { - "filtered": false, - "value": "Winter", - "label": "Winter", - "count": 39 - } - ] - }, - { - "type": "value", - "field": "pattern", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Print", - "label": "Print", - "count": 353 - }, - { - "filtered": false, - "value": "Floral", - "label": "Floral", - "count": 146 - }, - { - "filtered": false, - "value": "Stripe", - "label": "Stripe", - "count": 128 - }, - { - "filtered": false, - "value": "Embroidered", - "label": "Embroidered", - "count": 89 - }, - { - "filtered": false, - "value": "Plaid", - "label": "Plaid", - "count": 20 - }, - { - "filtered": false, - "value": "Paisley", - "label": "Paisley", - "count": 7 - }, - { - "filtered": false, - "value": "Polka Dot", - "label": "Polka Dot", - "count": 7 - }, - { - "filtered": false, - "value": "Camo", - "label": "Camo", - "count": 6 - }, - { - "filtered": false, - "value": "Dot", - "label": "Dot", - "count": 6 - }, - { - "filtered": false, - "value": "Herringbone", - "label": "Herringbone", - "count": 2 - } - ] - }, - { - "type": "value", - "field": "dress_length_name", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Mini", - "label": "Mini", - "count": 192 - }, - { - "filtered": false, - "value": "Micro", - "label": "Micro", - "count": 50 - }, - { - "filtered": false, - "value": "Knee", - "label": "Knee", - "count": 40 - }, - { - "filtered": false, - "value": "Floor", - "label": "Floor", - "count": 54 - }, - { - "filtered": false, - "value": "Calf", - "label": "Calf", - "count": 11 - }, - { - "filtered": false, - "value": "Below Knee", - "label": "Below Knee", - "count": 7 - }, - { - "filtered": false, - "value": "Below knee", - "label": "Below knee", - "count": 3 - }, - { - "filtered": false, - "value": "Ankle", - "label": "Ankle", - "count": 29 - }, - { - "filtered": false, - "value": "Above Knee", - "label": "Above Knee", - "count": 109 - }, - { - "filtered": false, - "value": "Above knee", - "label": "Above knee", - "count": 55 - } - ] - }, - { - "type": "value", - "field": "size_footwear", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "5", - "label": "5", - "count": 27 - }, - { - "filtered": false, - "value": "5.5", - "label": "5.5", - "count": 351 - }, - { - "filtered": false, - "value": "6", - "label": "6", - "count": 488 - }, - { - "filtered": false, - "value": "6.5", - "label": "6.5", - "count": 477 - }, - { - "filtered": false, - "value": "7", - "label": "7", - "count": 498 - }, - { - "filtered": false, - "value": "7.5", - "label": "7.5", - "count": 488 - }, - { - "filtered": false, - "value": "8", - "label": "8", - "count": 498 - }, - { - "filtered": false, - "value": "8.5", - "label": "8.5", - "count": 488 - }, - { - "filtered": false, - "value": "9", - "label": "9", - "count": 498 - }, - { - "filtered": false, - "value": "10", - "label": "10", - "count": 497 - }, - { - "filtered": false, - "value": "11", - "label": "11", - "count": 92 - } - ] - }, - { - "type": "value", - "field": "collection", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "Above The Fray", - "label": "Above The Fray", - "count": 2 - }, - { - "filtered": false, - "value": "Addicted To Love", - "label": "Addicted To Love", - "count": 1 - }, - { - "filtered": false, - "value": "Addicted To Sun", - "label": "Addicted To Sun", - "count": 2 - }, - { - "filtered": false, - "value": "Adore Me", - "label": "Adore Me", - "count": 1 - }, - { - "filtered": false, - "value": "Adventure Ready", - "label": "Adventure Ready", - "count": 1 - }, - { - "filtered": false, - "value": "After Midnight", - "label": "After Midnight", - "count": 3 - }, - { - "filtered": false, - "value": "Ahead Of The Curve", - "label": "Ahead Of The Curve", - "count": 3 - }, - { - "filtered": false, - "value": "All Day Fun", - "label": "All Day Fun", - "count": 2 - }, - { - "filtered": false, - "value": "All In Favor", - "label": "All In Favor", - "count": 3 - }, - { - "filtered": false, - "value": "All Purpose", - "label": "All Purpose", - "count": 3 - }, - { - "filtered": false, - "value": "All The Stripe", - "label": "All The Stripe", - "count": 2 - }, - { - "filtered": false, - "value": "All To Myself", - "label": "All To Myself", - "count": 2 - }, - { - "filtered": false, - "value": "Almost Famous", - "label": "Almost Famous", - "count": 6 - }, - { - "filtered": false, - "value": "Answer To Your Layers", - "label": "Answer To Your Layers", - "count": 4 - }, - { - "filtered": false, - "value": "Around The Track", - "label": "Around The Track", - "count": 2 - }, - { - "filtered": false, - "value": "At My Best", - "label": "At My Best", - "count": 3 - }, - { - "filtered": false, - "value": "Back To The Basics", - "label": "Back To The Basics", - "count": 3 - }, - { - "filtered": false, - "value": "Balancing Act", - "label": "Balancing Act", - "count": 3 - }, - { - "filtered": false, - "value": "Basic Instincts", - "label": "Basic Instincts", - "count": 2 - }, - { - "filtered": false, - "value": "Basically Perfect", - "label": "Basically Perfect", - "count": 4 - }, - { - "filtered": false, - "value": "Basics Of Love", - "label": "Basics Of Love", - "count": 3 - }, - { - "filtered": false, - "value": "Bazaar Beauty", - "label": "Bazaar Beauty", - "count": 6 - }, - { - "filtered": false, - "value": "Beach Please", - "label": "Beach Please", - "count": 4 - }, - { - "filtered": false, - "value": "Beauty In Believing", - "label": "Beauty In Believing", - "count": 4 - }, - { - "filtered": false, - "value": "Because Summer", - "label": "Because Summer", - "count": 2 - }, - { - "filtered": false, - "value": "Best Of Basics", - "label": "Best Of Basics", - "count": 7 - }, - { - "filtered": false, - "value": "Better Than Basic", - "label": "Better Than Basic", - "count": 2 - }, - { - "filtered": false, - "value": "Better Than Flowers", - "label": "Better Than Flowers", - "count": 2 - }, - { - "filtered": false, - "value": "Bloom Or Bust", - "label": "Bloom Or Bust", - "count": 3 - }, - { - "filtered": false, - "value": "Bold Streak", - "label": "Bold Streak", - "count": 6 - }, - { - "filtered": false, - "value": "Breaking Rules", - "label": "Breaking Rules", - "count": 3 - }, - { - "filtered": false, - "value": "Bright This Way", - "label": "Bright This Way", - "count": 2 - }, - { - "filtered": false, - "value": "Bronzed Beauty", - "label": "Bronzed Beauty", - "count": 2 - }, - { - "filtered": false, - "value": "C'est Chic", - "label": "C'est Chic", - "count": 2 - }, - { - "filtered": false, - "value": "California Roots", - "label": "California Roots", - "count": 2 - }, - { - "filtered": false, - "value": "Can't Be Tamed", - "label": "Can't Be Tamed", - "count": 2 - }, - { - "filtered": false, - "value": "Can't Miss Me", - "label": "Can't Miss Me", - "count": 2 - }, - { - "filtered": false, - "value": "Can't Stop The Feeling", - "label": "Can't Stop The Feeling", - "count": 2 - }, - { - "filtered": false, - "value": "Chart Topping", - "label": "Chart Topping", - "count": 4 - }, - { - "filtered": false, - "value": "Chasing Daydreams", - "label": "Chasing Daydreams", - "count": 2 - }, - { - "filtered": false, - "value": "Chic And Easy", - "label": "Chic And Easy", - "count": 2 - }, - { - "filtered": false, - "value": "Chic Cityscape", - "label": "Chic Cityscape", - "count": 3 - }, - { - "filtered": false, - "value": "Chill Girl", - "label": "Chill Girl", - "count": 4 - }, - { - "filtered": false, - "value": "City Of Stars", - "label": "City Of Stars", - "count": 8 - }, - { - "filtered": false, - "value": "Downtown Chic", - "label": "Downtown Chic", - "count": 2 - }, - { - "filtered": false, - "value": "Dream On", - "label": "Dream On", - "count": 3 - }, - { - "filtered": false, - "value": "Dream Street", - "label": "Dream Street", - "count": 4 - }, - { - "filtered": false, - "value": "Feeling Accomplished", - "label": "Feeling Accomplished", - "count": 2 - }, - { - "filtered": false, - "value": "Gossip Girl", - "label": "Gossip Girl", - "count": 20 - }, - { - "filtered": false, - "value": "Got it Bad", - "label": "Got it Bad", - "count": 2 - } - ] - }, - { - "type": "value", - "field": "saturation", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "high", - "label": "high", - "count": 39 - }, - { - "filtered": false, - "value": "low", - "label": "low", - "count": 56 - }, - { - "filtered": false, - "value": "med", - "label": "med", - "count": 40 - } - ] - }, - { - "type": "value", - "field": "size_pants", - "filtered": false, - "values": [ - { - "filtered": false, - "value": "1", - "label": "1", - "count": 2 - }, - { - "filtered": false, - "value": "2", - "label": "2", - "count": 1 - }, - { - "filtered": false, - "value": "3", - "label": "3", - "count": 2 - }, - { - "filtered": false, - "value": "4", - "label": "4", - "count": 1 - }, - { - "filtered": false, - "value": "5", - "label": "5", - "count": 2 - }, - { - "filtered": false, - "value": "6", - "label": "6", - "count": 1 - }, - { - "filtered": false, - "value": "7", - "label": "7", - "count": 2 - }, - { - "filtered": false, - "value": "8", - "label": "8", - "count": 1 - }, - { - "filtered": false, - "value": "9", - "label": "9", - "count": 2 - }, - { - "filtered": false, - "value": "11", - "label": "11", - "count": 2 - }, - { - "filtered": false, - "value": "13", - "label": "13", - "count": 2 - }, - { - "filtered": false, - "value": "24", - "label": "24", - "count": 63 - }, - { - "filtered": false, - "value": "25", - "label": "25", - "count": 69 - }, - { - "filtered": false, - "value": "26", - "label": "26", - "count": 72 - }, - { - "filtered": false, - "value": "27", - "label": "27", - "count": 72 - }, - { - "filtered": false, - "value": "28", - "label": "28", - "count": 72 - }, - { - "filtered": false, - "value": "29", - "label": "29", - "count": 72 - }, - { - "filtered": false, - "value": "30", - "label": "30", - "count": 72 - }, - { - "filtered": false, - "value": "31", - "label": "31", - "count": 58 - } - ] - } - ], - "merchandising": { - "campaigns": [], - "redirect": "", - "content": {} - } -} \ No newline at end of file diff --git a/packages/snap-store-mobx/src/Search/SearchStore.ts b/packages/snap-store-mobx/src/Search/SearchStore.ts index f4667a9f9..b2c935419 100644 --- a/packages/snap-store-mobx/src/Search/SearchStore.ts +++ b/packages/snap-store-mobx/src/Search/SearchStore.ts @@ -18,6 +18,7 @@ import { StorageStore } from '../Storage/StorageStore'; import { MetaStore } from '../Meta/MetaStore'; export class SearchStore extends AbstractStore { + private declare previousData: SearchResponseModel & { meta?: MetaResponseModel }; public services: StoreServices; public meta!: MetaStore; public merchandising!: SearchMerchandisingStore; @@ -105,11 +106,15 @@ export class SearchStore extends AbstractStore { data?.results || [], data.pagination, data.merchandising, - this.loaded + this.loaded, + this.previousData?.pagination, + this.results ); this.pagination = new SearchPaginationStore(this.config, this.services, data.pagination, this.meta.data); this.sorting = new SearchSortingStore(this.services, data?.sorting || [], data?.search || {}, this.meta.data); this.loaded = !!data.pagination; + + this.previousData = data; } } diff --git a/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.test.ts b/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.test.ts index 153b23e64..1bc29bc98 100644 --- a/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.test.ts +++ b/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.test.ts @@ -5,7 +5,7 @@ import { SearchResponseModelResultCoreMappings } from '@searchspring/snapi-types import { Banner, Product, SearchResultStore, ProductMask, Variants, Variant, VariantSelection, VariantData } from './SearchResultStore'; import { parse } from 'uuid'; -import { StoreConfigs, VariantConfig } from '../../types'; +import type { SearchStoreConfig, StoreConfigs, VariantConfig } from '../../types'; const services = { urlManager: new UrlManager(new UrlTranslator()), @@ -72,6 +72,203 @@ describe('SearchResultStore', () => { }); }); + it('supports infinite scroll result concatenation with previous results', () => { + const infiniteConfig: SearchStoreConfig = { + ...searchConfig, + settings: { + infinite: {}, + }, + }; + const dataPage1 = mockData.searchMeta('infinite.page1'); + const resultsPage1 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage1.results, + dataPage1.pagination, + dataPage1.merchandising, + false, + undefined, + undefined + ); + + expect(resultsPage1.length).toBe(dataPage1.results?.length); + + const dataPage2 = mockData.searchMeta('infinite.page2'); + const resultsPage2 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage2.results, + dataPage2.pagination, + dataPage2.merchandising, + true, + dataPage1.pagination, + resultsPage1 + ); + + expect(resultsPage2.length).toBe(dataPage1.results!.length + dataPage2.results!.length); + + const dataPage3 = mockData.searchMeta('infinite.page3'); + const resultsPage3 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage3.results, + dataPage3.pagination, + dataPage3.merchandising, + true, + dataPage2.pagination, + resultsPage2 + ); + + expect(resultsPage3.length).toBe(dataPage1.results!.length + dataPage2.results!.length + dataPage3.results!.length); + + // results will be in the order they were fetched (page1, page2, page3) + const sourceResultData = [...dataPage1.results!, ...dataPage2.results!, ...dataPage3.results!]; + resultsPage3.forEach((result, index) => { + // check id + expect(result.id).toBe(sourceResultData && sourceResultData[index].id); + + // check core mappings + Object.keys(result.mappings.core!).forEach((key) => { + const core = sourceResultData && sourceResultData[index]?.mappings?.core; + const value = core && core[key as keyof SearchResponseModelResultCoreMappings]; + expect(result.mappings?.core && result.mappings?.core[key as keyof SearchResponseModelResultCoreMappings]).toBe(value); + }); + + // check attributes + Object.keys(result.attributes).forEach((key) => { + const attributes = sourceResultData && sourceResultData[index] && sourceResultData[index].attributes; + const value = attributes && attributes[key]; + expect(result.attributes[key]).toStrictEqual(value); + }); + }); + }); + + it('will not concatenate with infinite if the page is not sequential from the previous page', () => { + const infiniteConfig: SearchStoreConfig = { + ...searchConfig, + settings: { + infinite: {}, + }, + }; + const dataPage1 = mockData.searchMeta('infinite.page1'); + + const resultsPage1 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage1.results, + dataPage1.pagination, + dataPage1.merchandising, + false, + undefined, + undefined + ); + + expect(resultsPage1.length).toBe(dataPage1.results?.length); + + const dataPage3 = mockData.searchMeta('infinite.page3'); + + const resultsPage3 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage3.results, + dataPage3.pagination, + dataPage3.merchandising, + true, + dataPage1.pagination, + resultsPage1 + ); + + // only contains a singlular page of results + // does not concatenate results because the pagination data is out of sequence + expect(resultsPage3.length).toBe(dataPage3.results!.length); + + // contains the result data from dataPage3 + resultsPage3.forEach((result, index) => { + // check id + expect(result.id).toBe(dataPage3.results && dataPage3.results[index].id); + + // check core mappings + Object.keys(result.mappings.core!).forEach((key) => { + const core = dataPage3.results && dataPage3.results[index]?.mappings?.core; + const value = core && core[key as keyof SearchResponseModelResultCoreMappings]; + expect(result.mappings?.core && result.mappings?.core[key as keyof SearchResponseModelResultCoreMappings]).toBe(value); + }); + + // check attributes + Object.keys(result.attributes).forEach((key) => { + const attributes = dataPage3.results && dataPage3.results[index] && dataPage3.results[index].attributes; + const value = attributes && attributes[key]; + expect(result.attributes[key]).toStrictEqual(value); + }); + }); + }); + + it('will not concatenate results if infinite is not enabled', () => { + const infiniteConfig: SearchStoreConfig = { + ...searchConfig, + settings: { + infinite: undefined, + }, + }; + const dataPage1 = mockData.searchMeta('infinite.page1'); + + const resultsPage1 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage1.results, + dataPage1.pagination, + dataPage1.merchandising, + false, + undefined, + undefined + ); + + expect(resultsPage1.length).toBe(dataPage1.results?.length); + + const dataPage2 = mockData.searchMeta('infinite.page2'); + + const resultsPage2 = new SearchResultStore( + infiniteConfig, + services, + {}, + dataPage2.results, + dataPage2.pagination, + dataPage2.merchandising, + true, + dataPage1.pagination, + resultsPage1 + ); + + // only contains a singlular page of results + expect(resultsPage2.length).toBe(dataPage2.results!.length); + + // contains the result data from dataPage2 + resultsPage2.forEach((result, index) => { + // check id + expect(result.id).toBe(dataPage2.results && dataPage2.results[index].id); + + // check core mappings + Object.keys(result.mappings.core!).forEach((key) => { + const core = dataPage2.results && dataPage2.results[index]?.mappings?.core; + const value = core && core[key as keyof SearchResponseModelResultCoreMappings]; + expect(result.mappings?.core && result.mappings?.core[key as keyof SearchResponseModelResultCoreMappings]).toBe(value); + }); + + // check attributes + Object.keys(result.attributes).forEach((key) => { + const attributes = dataPage2.results && dataPage2.results[index] && dataPage2.results[index].attributes; + const value = attributes && attributes[key]; + expect(result.attributes[key]).toStrictEqual(value); + }); + }); + }); + describe('mask with display property', () => { describe('mask class', () => { it('can be set with data', () => { diff --git a/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.ts b/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.ts index e0593d229..c345f671e 100644 --- a/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.ts +++ b/packages/snap-store-mobx/src/Search/Stores/SearchResultStore.ts @@ -36,7 +36,9 @@ export class SearchResultStore extends Array { resultData?: SearchResponseModelResult[], paginationData?: SearchResponseModelPagination, merchData?: SearchResponseModelMerchandising, - loaded?: boolean + loaded?: boolean, + previousPaginationData?: SearchResponseModelPagination, // used for infinite scroll functionality + previousResults?: (Product | Banner)[] // used for infinite scroll functionality ) { let results: (Product | Banner)[] = (resultData || []).map((result) => { return new Product(services, result, metaData, config); @@ -88,6 +90,19 @@ export class SearchResultStore extends Array { results = addBannersToResults(config, results, banners, paginationData); } } + + // only when infinite is enabled + if ((config as SearchStoreConfig)?.settings?.infinite) { + // logic to determine when to concatenate previous results + // this logic is not bullet proof, but it is highly unlikely that the current and previous pagination data would ever be sequential unless paginating + + // TODO: implement "load previous" with a limit to how many total products can be displayed + // the limit would be enforced by unloading (trimming) results based on the direction of the new search (previous page, next page) + if (paginationData?.page && previousPaginationData?.page && paginationData.page == previousPaginationData.page + 1) { + results = (previousResults || []).concat(results); + } + } + super(...results); } }