[object Object]

← back to Dw Unbuyable Recovery Pilot

TK-11042: quote-CTA tag-normalization plan + gated executor + rollback

ef59d384f1d2fe6243dd6f792e282857f10445bc · 2026-09-10 07:50:43 -0700 · Steve Abrams

Live audit shows the Track-B blocker premise was wrong: Koroseal 2449 and Maya
620 are 100% correctly-configured quote-only (zero dead ends), while Marburg 112
and Phillipe Romano 4,096 render as customer-facing dead ends purely because they
carry quote intent under a tag name the theme does not trigger on. No vendor cost
data is required to fix any of it.

Read-only plan builder + verify-before-act executor + byte-for-byte rollback.
NOTHING FIRED — live execution is Steve-gated.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RzTjJ25kmRFTvTjgA28Pwa

Files touched

Diff

commit ef59d384f1d2fe6243dd6f792e282857f10445bc
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Sep 10 07:50:43 2026 -0700

    TK-11042: quote-CTA tag-normalization plan + gated executor + rollback
    
    Live audit shows the Track-B blocker premise was wrong: Koroseal 2449 and Maya
    620 are 100% correctly-configured quote-only (zero dead ends), while Marburg 112
    and Phillipe Romano 4,096 render as customer-facing dead ends purely because they
    carry quote intent under a tag name the theme does not trigger on. No vendor cost
    data is required to fix any of it.
    
    Read-only plan builder + verify-before-act executor + byte-for-byte rollback.
    NOTHING FIRED — live execution is Steve-gated.
    
    Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
    Claude-Session: https://claude.ai/code/session_01RzTjJ25kmRFTvTjgA28Pwa
---
 tk11042-quote-tag/README.md        |    53 +
 tk11042-quote-tag/build-plan.mjs   |    88 +
 tk11042-quote-tag/data/plan.json   | 40586 +++++++++++++++++++++++++++++++++++
 tk11042-quote-tag/repair.mjs       |    86 +
 tk11042-quote-tag/rollback-all.mjs |    35 +
 5 files changed, 40848 insertions(+)

diff --git a/tk11042-quote-tag/README.md b/tk11042-quote-tag/README.md
new file mode 100644
index 0000000..6c6898f
--- /dev/null
+++ b/tk11042-quote-tag/README.md
@@ -0,0 +1,53 @@
+# TK-11042 — quote-CTA tag normalization
+
+## What this fixes
+`snippets/dw-quote-only-cta.liquid` renders the "Request a Quote" CTA **only** when
+`product.tags contains 'quotes'` (exact Liquid array membership; the snippet header
+states `quotes` was deliberately chosen over `quote_only` / `Contact for Price`).
+
+Products carrying quote *intent* under a different tag name — `quote-only`,
+`contact-for-price`, `Needs-Price` — therefore render with **no price, no
+Add-to-cart and no quote CTA**: a customer-facing dead end.
+
+Live audit 2026-09-10 (Shopify Admin API, read-only):
+
+| cohort | active | dead ends |
+|---|---|---|
+| Koroseal | 2,449 | 0 — 100% already carry `quotes`, correct-by-design |
+| Maya Romanoff | 620 | 0 — 100% already carry `quotes` |
+| Marburg | 112 | **112** — carry only `Needs-Price` |
+| Phillipe Romano | 14,398 | **4,096** (of 4,167 flagged; 71 are correct-by-design memo-samples) |
+
+**No vendor cost data is required for any of this.** Cost lists are only needed for
+the separate, optional goal of converting contract quote-only lines to self-serve pricing.
+
+## Tranches
+- **Tranche 1 — 2,001** (Phillipe Romano): carry explicit `quote-only`/`contact-for-price`.
+  Deliberate quote-only posture; the tag vocabulary simply doesn't match the theme trigger.
+- **Tranche 2 — 2,207** (2,095 PR + 112 Marburg): carry only `Needs-Price`.
+  Ambiguous — 1,277 of these also carry `Needs-Width` **and** `Needs-Image`, i.e. they look
+  like incomplete imports rather than a deliberate quote-only posture.
+  ⚠️ `quotes` is also the **exemption tag** for `dw-five-field-canary`
+  (auditor.mjs L105-106), so tagging an incomplete import silences its data-quality alarm.
+- **Excluded — 71**: single `Default Title` @ $4.25 memo-sample products. Live-verified
+  `available:true` — they sell as samples, correct-by-design, not dead ends.
+
+## Usage
+```sh
+node build-plan.mjs                              # READ-ONLY, refresh data/plan.json
+node repair.mjs --tranche=1                      # dry-run (default)
+node repair.mjs --tranche=1 --limit=20 --live    # pilot
+node repair.mjs --tranche=1 --live               # full tranche (idempotent)
+node rollback-all.mjs --tranche=1 --live         # byte-for-byte tag restore
+```
+
+## Safety
+- Adds exactly **one tag**. Touches no price, variant, inventory, or status.
+- `repair.mjs` re-reads each product live and re-checks every precondition
+  (still active, still not sellable, intent tag still present, Sample variant
+  detectable, not already tagged) before writing — never trusts the plan.
+- Records the exact prior `tags` string per product; rollback restores it byte-for-byte.
+- Verified no `$0`-orderable exposure is created: the 1,281 `Per Yard` $0 variants are
+  `inventory_policy=deny` and render sold-out.
+- Verified zero merchandising side-effects: 643 smart collections scanned, **none**
+  reference `quotes` / `Needs-Price` / `contact-for-price` in their rules.
diff --git a/tk11042-quote-tag/build-plan.mjs b/tk11042-quote-tag/build-plan.mjs
new file mode 100755
index 0000000..152393a
--- /dev/null
+++ b/tk11042-quote-tag/build-plan.mjs
@@ -0,0 +1,88 @@
+#!/usr/bin/env node
+/**
+ * TK-11042 — READ-ONLY plan builder for the quote-CTA tag normalization.
+ *
+ * PROBLEM (verified live, not from the mirror — mirror tags proved stale):
+ *   snippets/dw-quote-only-cta.liquid renders "Request a Quote" ONLY when the
+ *   Liquid array test `product.tags contains 'quotes'` is true (exact element
+ *   match; the snippet header states `quotes` was chosen OVER `quote_only` /
+ *   `Contact for Price`). Products that carry the *intent* tags
+ *   `quote-only` / `contact-for-price` / `Needs-Price` but NOT `quotes`
+ *   therefore render with no price, no Add-to-cart and no quote CTA = a
+ *   customer-facing DEAD END.
+ *
+ * This script only READS the Shopify Admin API and writes plan.json.
+ * It never mutates anything. Run it immediately before repair.mjs so the plan
+ * reflects current live state.
+ */
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const DIR = path.dirname(fileURLToPath(import.meta.url));
+const VENDORS = ['Phillipe Romano', 'Marburg'];
+
+const env = Object.fromEntries(
+  fs.readFileSync(process.env.HOME + '/Projects/secrets-manager/.env', 'utf8')
+    .split('\n').filter(l => l.includes('='))
+    .map(l => [l.slice(0, l.indexOf('=')).trim(), l.slice(l.indexOf('=') + 1).trim()]));
+const SHOP = (env.SHOPIFY_STORE_DOMAIN || env.SHOPIFY_STORE).replace(/^https?:\/\//, '');
+const TOKEN = env.SHOPIFY_ADMIN_TOKEN;
+const hdr = { 'X-Shopify-Access-Token': TOKEN };
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+const lc = t => (t || '').trim().toLowerCase();
+const hasTag = (tags, name) => tags.some(t => lc(t) === name);
+const isSellable = vs => vs.some(v => !/sample/i.test(v.title || '') && Number(v.price) > 4.50);
+const shape = vs => [...new Set(vs.map(v => v.title))].sort().join('|');
+// theme's own sample lookup: v.sku contains '-Sample' OR v.title == 'Sample'
+const findSample = vs => vs.find(v => /-sample/i.test(v.sku || '') || v.title === 'Sample');
+
+async function pull(vendor) {
+  let url = `https://${SHOP}/admin/api/2024-10/products.json?limit=250&status=active`
+          + `&vendor=${encodeURIComponent(vendor)}&fields=id,handle,title,vendor,tags,variants`;
+  const out = [];
+  while (url) {
+    const r = await fetch(url, { headers: hdr });
+    if (!r.ok) throw new Error(`${vendor} ${r.status} ${await r.text()}`);
+    const j = await r.json();
+    out.push(...j.products);
+    const m = (r.headers.get('link') || '').match(/<([^>]+)>;\s*rel="next"/);
+    url = m ? m[1] : null;
+    await sleep(550);
+  }
+  return out;
+}
+
+const plan = { builtAt: new Date().toISOString(), shop: SHOP, tranche1: [], tranche2: [], excluded: [] };
+
+for (const vendor of VENDORS) {
+  const rows = await pull(vendor);
+  process.stderr.write(`${vendor}: ${rows.length} active\n`);
+  for (const p of rows) {
+    const tags = (p.tags || '').split(',').map(s => s.trim()).filter(Boolean);
+    const vs = p.variants || [];
+    if (hasTag(tags, 'quotes')) continue;          // already correct
+    if (isSellable(vs)) continue;                  // already buyable
+    const rec = { id: p.id, handle: p.handle, vendor: p.vendor, tagsBefore: p.tags || '' };
+    // memo-sample products (single 'Default Title' variant @ $4.25) are the
+    // product itself sold as a sample — correct-by-design, NOT a dead end.
+    if (shape(vs) === 'Default Title') { plan.excluded.push({ ...rec, why: 'memo-sample (orderable $4.25, correct-by-design)' }); continue; }
+    const sample = findSample(vs);
+    // the CTA needs a theme-detectable Sample variant to render its sample button
+    if (!sample) { plan.excluded.push({ ...rec, why: 'no theme-detectable Sample variant' }); continue; }
+    rec.sampleVariantId = sample.id;
+    rec.sampleSku = sample.sku;
+    const explicit = hasTag(tags, 'quote-only') || hasTag(tags, 'contact-for-price');
+    if (explicit) plan.tranche1.push({ ...rec, intent: 'explicit quote-only' });
+    else if (hasTag(tags, 'needs-price'))
+      plan.tranche2.push({ ...rec, intent: 'Needs-Price only',
+        incompleteImport: hasTag(tags, 'needs-width') && hasTag(tags, 'needs-image') });
+    else plan.excluded.push({ ...rec, why: 'no quote-intent tag — needs individual review' });
+  }
+}
+
+fs.writeFileSync(path.join(DIR, 'data', 'plan.json'), JSON.stringify(plan, null, 1));
+console.log(`tranche1=${plan.tranche1.length} tranche2=${plan.tranche2.length} excluded=${plan.excluded.length}`);
+console.log(`  tranche2 incomplete-import: ${plan.tranche2.filter(r => r.incompleteImport).length}`);
+console.log('wrote data/plan.json — READ-ONLY, nothing mutated.');
diff --git a/tk11042-quote-tag/data/plan.json b/tk11042-quote-tag/data/plan.json
new file mode 100644
index 0000000..ea156b8
--- /dev/null
+++ b/tk11042-quote-tag/data/plan.json
@@ -0,0 +1,40586 @@
+{
+ "builtAt": "2026-09-10T14:48:17.952Z",
+ "shop": "designer-laboratory-sandbox.myshopify.com",
+ "tranche1": [
+  {
+   "id": 7471569764403,
+   "handle": "dwrt-5059-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Abstract Groove, Architectural, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, Dining Room, display_variant, Dot, Eggshell, Fabric, Floral, Flower, Japonisme, Light Grey, Living Room, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Purple, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827600592947,
+   "sampleSku": "DWRT-5059F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458688563,
+   "handle": "grs-20305",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Adriano Natural Wallcovering, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819611734067,
+   "sampleSku": "GRS-20305",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458754099,
+   "handle": "grs-20307",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Agnella Natural Wallcovering, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Organic Texture, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Vertical, Vertical Pattern, Vertical Stripe, Wallcovering, White",
+   "sampleVariantId": 31819611799603,
+   "sampleSku": "GRS-20307",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458786867,
+   "handle": "grs-20308",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Agnesca Natural Wallcovering, AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Ivory, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Organic Texture, Phillipe Romano, Showroom Line, STRING PAPER, Stripe, Texture, Textured, Traditional, Vertical, Vertical Pattern, Vertical Stria, Wallcovering, White",
+   "sampleVariantId": 31819611832371,
+   "sampleSku": "GRS-20308",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458819635,
+   "handle": "grs-20309",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Agnesina Natural Wallcovering, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Ivory, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Organic Texture, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Transitional, Vertical, Vertical Pattern, Vertical Stria, Wallcovering, White, Woven",
+   "sampleVariantId": 31819611865139,
+   "sampleSku": "GRS-20309",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458852403,
+   "handle": "grs-20310",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aegean Blue, Agnola Natural Wallcovering, AI-Analyzed-v2, Architectural, Basketweave, Beige, Blue, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Blue, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Organic Texture, Phillipe Romano, Showroom Line, Straw, Texture, Textured, Transitional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819611897907,
+   "sampleSku": "GRS-20310",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458885171,
+   "handle": "grs-20311",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aegean, Agostino Natural Wallcovering, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Horizontal, Horizontal Pattern, Horizontal Stripe, Light Blue, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Organic Texture, Phillipe Romano, Showroom Line, Stripe, Teal, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819611930675,
+   "sampleSku": "GRS-20311",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458917939,
+   "handle": "grs-20312",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Agosto Natural Wallcovering, AI-Analyzed-v2, Architectural, Basketweave, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Gray, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Organic Texture, Pale Green, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819611963443,
+   "sampleSku": "GRS-20312",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492458983475,
+   "handle": "grs-20313",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aegean Blue, AI-Analyzed-v2, Aida Natural Wallcovering, Architectural, Basketweave, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Blue, Linen, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Organic Texture, Phillipe Romano, Showroom Line, Teal, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819612028979,
+   "sampleSku": "GRS-20313",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459016243,
+   "handle": "grs-20314",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alessio Natural Wallcovering, Architectural, Blue Gray, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Blue, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Teal, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819612192819,
+   "sampleSku": "GRS-20314",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459114547,
+   "handle": "grs-20315",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alexius Natural Wallcovering, Architectural, Blue, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Fabric, Geometric, Gold, Grasscloth, Grasscloth Texture, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 31819612225587,
+   "sampleSku": "GRS-20315",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459180083,
+   "handle": "grs-20316",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Allegra Natural Wallcovering, Architectural, Black, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Gray, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Minimalist, Navy, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819612291123,
+   "sampleSku": "GRS-20316",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459245619,
+   "handle": "grs-20317",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alphonsus Natural Wallcovering, Architectural, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819612323891,
+   "sampleSku": "GRS-20317",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459343923,
+   "handle": "grs-20318",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alvino Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819612487731,
+   "sampleSku": "GRS-20318",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459409459,
+   "handle": "grs-20319",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amadea Natural Wallcovering, Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819612553267,
+   "sampleSku": "GRS-20319",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459442227,
+   "handle": "grs-20320",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amadeo Natural Wallcovering, Architectural, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819612586035,
+   "sampleSku": "GRS-20320",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459474995,
+   "handle": "grs-20321",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amalfi Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Beige, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819613077555,
+   "sampleSku": "GRS-20321",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459540531,
+   "handle": "grs-20322",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amaranta Natural Wallcovering, Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819614158899,
+   "sampleSku": "GRS-20322",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459638835,
+   "handle": "grs-20323",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amata Natural Wallcovering, Architectural, Beige, Brown, Class A Fire Rated, Coastal, Commercial, contact-for-price, Dark Gray, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Tropical, Wallcovering, White, Yellow",
+   "sampleVariantId": 31819614224435,
+   "sampleSku": "GRS-20323",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459737139,
+   "handle": "grs-20324",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amato Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Fabric, Gold, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819614388275,
+   "sampleSku": "GRS-20324",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459769907,
+   "handle": "grs-20325",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Ambra Natural Wallcovering, Architectural, Beige, Black, Bone, Brown, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Tropical, Wallcovering",
+   "sampleVariantId": 31819615698995,
+   "sampleSku": "GRS-20325",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459835443,
+   "handle": "grs-20326",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Ambrogio Natural Wallcovering, Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, Dark Gray, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819616092211,
+   "sampleSku": "GRS-20326",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459900979,
+   "handle": "grs-20327",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Ambrosi Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819616124979,
+   "sampleSku": "GRS-20327",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459966515,
+   "handle": "grs-20328",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amedea Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819616157747,
+   "sampleSku": "GRS-20328",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492459999283,
+   "handle": "grs-20329",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amedeo Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819616190515,
+   "sampleSku": "GRS-20329",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460032051,
+   "handle": "grs-20330",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amidala Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Beige, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819616845875,
+   "sampleSku": "GRS-20330",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460064819,
+   "handle": "grs-20331",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Anastagio Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Beige, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819617730611,
+   "sampleSku": "GRS-20331",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460130355,
+   "handle": "grs-20332",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Anatolio Natural Wallcovering, Architectural, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819617763379,
+   "sampleSku": "GRS-20332",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460195891,
+   "handle": "grs-20333",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Andrea Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Tropical, Wallcovering, Yellow",
+   "sampleVariantId": 31819617796147,
+   "sampleSku": "GRS-20333",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460228659,
+   "handle": "grs-20334",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Anete Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Beige, Light Brown, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819617828915,
+   "sampleSku": "GRS-20334",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568912435,
+   "handle": "dwrt-5038-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Wild Chameleons, Animal/Insects, Architectural, Bedroom, Bird, Black, Blue, Botanical, Branch, Chameleon, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Dark Green, Dining Room, display_variant, Eclectic, Fabric, Fauna, Fern, Forest Green, Gold, Green, Leaf, Leaves, Living Room, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage Green, Screen Print, Screen Prints, Showroom Line, Teal, Trending Wallcovering Collection 2024, Tropical, Wallcovering, Yellow",
+   "sampleVariantId": 42827599773747,
+   "sampleSku": "DWRT-5038F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460294195,
+   "handle": "grs-20335",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Anselmo Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Yellow, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819617894451,
+   "sampleSku": "GRS-20335",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882878193715,
+   "handle": "dwjj-41100-antonio-ombre-mural",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Antonio Ombre Mural, Antonio Ombre Mural Hand Woven Paper Yarn Mural Naturals, Architectural, Commercial, contact-for-price, Contemporary, Dark Green, display_variant, Eggshell, Hand Woven Paper Yarn Mural, Light Gray, Mural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 41180290875443,
+   "sampleSku": "DWJJ-41100-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460326963,
+   "handle": "grs-20336",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Araldo Natural Wallcovering, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819617927219,
+   "sampleSku": "GRS-20336",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460359731,
+   "handle": "grs-20337",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Armano Natural Wallcovering, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819617959987,
+   "sampleSku": "GRS-20337",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460392499,
+   "handle": "grs-20338",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Armina Natural Wallcovering, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819617992755,
+   "sampleSku": "GRS-20338",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460425267,
+   "handle": "grs-20339",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Armino Natural Wallcovering, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Lattice, Light Beige, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Yellow",
+   "sampleVariantId": 31819618025523,
+   "sampleSku": "GRS-20339",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460458035,
+   "handle": "grs-20340",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Arnoldo Natural Wallcovering, Beige, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 31819618091059,
+   "sampleSku": "GRS-20340",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460523571,
+   "handle": "grs-20341",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Aroldo Natural Wallcovering, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 31819618123827,
+   "sampleSku": "GRS-20341",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460556339,
+   "handle": "grs-20342",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Arrigo Natural Wallcovering, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618156595,
+   "sampleSku": "GRS-20342",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460589107,
+   "handle": "grs-20343",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Aryana Natural Wallcovering, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, Coral, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Coral, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Pink, Red, Salmon, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618189363,
+   "sampleSku": "GRS-20343",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460621875,
+   "handle": "grs-20344",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Aryanna Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Orange, Peach, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819618222131,
+   "sampleSku": "GRS-20344",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7717105827891,
+   "handle": "ashanti-on-paper-blueberry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, animal, Animal Print, animal-skins, Animal/Insects, Architectural, Ashanti On Paper, Bedroom, Blue, blueberry, br-69551-279, brunschwig-fils, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, decor wallcovering, display_variant, Hallway, Indigo, insects, Living Room, Modern, Navy, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off White, paper, Phillipe Romano, Playful, print, Showroom Line, Trending Wallcovering Collection 2025, wallcovering, White, Zebra",
+   "sampleVariantId": 43770691354675,
+   "sampleSku": "DWWC-509150-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460654643,
+   "handle": "grs-20345",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Assisi Natural Wallcovering, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Showroom Line, Texture, Textured, Tropical, Wallcovering, Yellow",
+   "sampleVariantId": 31819618254899,
+   "sampleSku": "GRS-20345",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500777021552,
+   "handle": "ataga-bay-rayon-textile-txt-34598",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Gray, Light Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13968228974704,
+   "sampleSku": "TXT-34598-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500777873520,
+   "handle": "ataga-bay-rayon-textile-txt-34600",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Fabric, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13968238116976,
+   "sampleSku": "TXT-34600-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460687411,
+   "handle": "grs-20346",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Aurelio Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Coral, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Coral, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Red, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618287667,
+   "sampleSku": "GRS-20346",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700949073971,
+   "handle": "avalonis-como-blue-koi-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, avalonis, Avalonis Como Blue / Koi Wallcovering, Bedroom, Birds, Blue, Brick Red, Chinoiserie, Chinoiserie Panel, Class A Fire Rated, Commercial, Commercial Wallcovering, como-blue, contact-for-price, cotswolds-manor-wallcoverings, decor wallcovering, Deer, Denim Blue, Dining Room, display_variant, Dramatic, Eclectic, Gold, Khaki, koi, Lion, Living Room, Needs-Image, Needs-Price, Needs-Width, Paper, Peacock, Phillipe Romano, Red, Scenic, Showroom Line, Snake, Tan, Traditional, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43722313924659,
+   "sampleSku": "DWWC-507240-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499789623408,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956422697072,
+   "sampleSku": "XWY-53176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499790508144,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gold, Grasscloth, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13956425056368,
+   "sampleSku": "XWY-53177-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499791458416,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53178",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Grasscloth, Green, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956436033648,
+   "sampleSku": "XWY-53178-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499792310384,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Grasscloth, LEED, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956437704816,
+   "sampleSku": "XWY-53179-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499793358960,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Blue, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956450156656,
+   "sampleSku": "XWY-53180-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499794374768,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956458152048,
+   "sampleSku": "XWY-53182-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499673231472,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52960",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955465969776,
+   "sampleSku": "XWQ-52960-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499675230320,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52965",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955481010288,
+   "sampleSku": "XWQ-52965-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460720179,
+   "handle": "grs-20347",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baggio Natural Wallcovering, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Ecru, Exposition Collection, Goldenrod, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618320435,
+   "sampleSku": "GRS-20347",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460752947,
+   "handle": "grs-20348",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baldassare Natural Wallcovering, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Red, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618353203,
+   "sampleSku": "GRS-20348",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495936893040,
+   "handle": "balihala-horizontal-grass-cloth-multi-color-grs-38062",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Blue, Brown, Coastal, Commercial, contact-for-price, Dining Room, display_variant, Entryway, Geometric, Gold, grass cloth, grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Hotel Lobby, Living Room, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Phillipe Romano, Phillipe Romano Naturals, Red Green Black Natural, Rustic, Showroom Line, Tan, Textural, Textured, Traditional, Transitional, Tropical, Wallcovering, Woven",
+   "sampleVariantId": 13909039415408,
+   "sampleSku": "GRS-38062-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460785715,
+   "handle": "grs-20349",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bambalina Natural Wallcovering, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Beige, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618385971,
+   "sampleSku": "GRS-20349",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460818483,
+   "handle": "grs-20350",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bambi Natural Wallcovering, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Light Beige, Light Yellow, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618418739,
+   "sampleSku": "GRS-20350",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495926702192,
+   "handle": "bamboot-bamboo-grasscloth-wall-paper-horizontal-weave-grs-38024",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bamboo, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, Denim, display_variant, Ecru, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Kyoto Garden Natural Weaves, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Oyster, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Smoke, Steel, Stripe, Striped, Tan, Textural, Textured, Tomato, Tropical, Wallcovering, Woven",
+   "sampleVariantId": 13908981612656,
+   "sampleSku": "GRS-38024-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460851251,
+   "handle": "grs-20351",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Barbarella Natural Wallcovering, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618451507,
+   "sampleSku": "GRS-20351",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460884019,
+   "handle": "grs-20352",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Barrucio Natural Wallcovering, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618484275,
+   "sampleSku": "GRS-20352",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700903919667,
+   "handle": "basho-wallpaper-seaglass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abaca, aqua, Architectural, basho, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, cotton, cowtan-tout, Cream, ct-naturals-xiv, display_variant, Eggshell, Geometric, grasscloth, Grasscloth Weave, Hallway, Ivory, Light Beige, Linen Texture, Living Room, Minimalist, Modern, natural, Needs-Image, Needs-Price, Needs-Width, Neutral, Organic Modern, Pale Beige, Residential, seaglass, Serene, Showroom Line, Silver, Sophisticated, Subtle, Taupe, Texture, Textured, Traditional, Transitional, wallcovering",
+   "sampleVariantId": 43722221649971,
+   "sampleSku": "DWWC-507010-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460916787,
+   "handle": "grs-20353",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Batista Natural Wallcovering, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819618517043,
+   "sampleSku": "GRS-20353",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460949555,
+   "handle": "grs-20354",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Battista Natural Wallcovering, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618549811,
+   "sampleSku": "GRS-20354",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492460982323,
+   "handle": "grs-20355",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Battiste Natural Wallcovering, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Beige, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819618582579,
+   "sampleSku": "GRS-20355",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461015091,
+   "handle": "grs-20356",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bautiste Natural Wallcovering, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819618615347,
+   "sampleSku": "GRS-20356",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569797171,
+   "handle": "dwrt-5060-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bedroom, Bella Butterflies, Bird, Blue, Bohemian, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Dark Brown, display_variant, Eclectic, Fabric, Floral, Gold, Gray, Living Room, Navy, Needs-Image, Needs-Price, Needs-Width, Non-woven, Nursery, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Playful, Screen Print, Screen Prints, Showroom Line, Silver, Teal, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827600625715,
+   "sampleSku": "DWRT-5060F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569829939,
+   "handle": "dwrt-5061-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bedroom, Bella Butterflies, Bird, Blue, Bohemian, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eclectic, Eggshell, Fabric, Fauna, Floral, Living Room, Mustard, Navy, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Red, Screen Print, Screen Prints, Showroom Line, Teal, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827600658483,
+   "sampleSku": "DWRT-5061F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569862707,
+   "handle": "dwrt-5062-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bathroom, Bedroom, Bella Butterflies, Bird, Blue, Bohemian, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eggshell, Fabric, Fauna, Floral, Forest Green, Golden Yellow, Green, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Orchid, Pale Pink, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Screen Print, Screen Prints, Showroom Line, Sky Blue, Trending Wallcovering Collection 2024, Tropical, Wallcovering, Whimsical",
+   "sampleVariantId": 42827600691251,
+   "sampleSku": "DWRT-5062F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569895475,
+   "handle": "dwrt-5063-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bedroom, Bella Butterflies, Bird, Black, Blue, Bohemian, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eclectic, Eggshell, Fabric, Floral, Living Room, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Playful, Screen Print, Screen Prints, Showroom Line, Teal, Trending Wallcovering Collection 2024, Tropical, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827600724019,
+   "sampleSku": "DWRT-5063F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569928243,
+   "handle": "dwrt-5064-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bedroom, Bella Butterflies, Bird, Blue, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eclectic, Fabric, Floral, Golden Yellow, Lime Green, Living Room, Magenta, Multi, Navy, Needs-Image, Needs-Price, Needs-Width, Nursery, Pale Pink, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Playful, Screen Print, Screen Prints, Showroom Line, Teal, Trending Wallcovering Collection 2024, Tropical, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827600756787,
+   "sampleSku": "DWRT-5064F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569993779,
+   "handle": "dwrt-5065-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Bedroom, Bella Butterflies, Bird, Blue, Bohemian, Botanical, Butterfly, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cornflower Blue, display_variant, Eclectic, Eggshell, Fabric, Fauna, Floral, Flowers, Leaves, Living Room, Mustard, Navy, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Peach, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Screen Print, Screen Prints, Showroom Line, Teal, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827601444915,
+   "sampleSku": "DWRT-5065F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461047859,
+   "handle": "grs-20357",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bellezza Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819618648115,
+   "sampleSku": "GRS-20357",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936776835123,
+   "handle": "xty-949732-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bellingham Texture Durable Vinyl, Bone, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, display_variant, Durable Vinyl, Durable Vinyls, Gray, Hospitality Wallcoverings, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Purchasing Agency, Showroom Line, Textured, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354101096499,
+   "sampleSku": "XTY-949732-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461080627,
+   "handle": "grs-20358",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819618680883,
+   "sampleSku": "GRS-20358",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461113395,
+   "handle": "grs-20359",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819618713651,
+   "sampleSku": "GRS-20359",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461146163,
+   "handle": "grs-20360",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819618746419,
+   "sampleSku": "GRS-20360",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461178931,
+   "handle": "grs-20361",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Exposition Collection, geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, textured, Wallcovering, woven",
+   "sampleVariantId": 31819618779187,
+   "sampleSku": "GRS-20361",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461211699,
+   "handle": "grs-20362",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819618844723,
+   "sampleSku": "GRS-20362",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461244467,
+   "handle": "grs-20363",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819618877491,
+   "sampleSku": "GRS-20363",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461277235,
+   "handle": "grs-20364",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819618910259,
+   "sampleSku": "GRS-20364",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461310003,
+   "handle": "grs-20365",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819618943027,
+   "sampleSku": "GRS-20365",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520196147,
+   "handle": "berlin-calvin-aloe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aloe, Beige, Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792247418931,
+   "sampleSku": "DWPP-206094-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520032307,
+   "handle": "berlin-calvin-amazon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amazon, Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792247681075,
+   "sampleSku": "DWPP-206091-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520163379,
+   "handle": "berlin-calvin-cattail-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, Brown, Cattail, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792247713843,
+   "sampleSku": "DWPP-206093-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519934003,
+   "handle": "berlin-calvin-celtic-gray-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, Celtic Gray, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792247779379,
+   "sampleSku": "DWPP-206089-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520294451,
+   "handle": "berlin-calvin-cottage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, Cottage, display_variant, Farmhouse, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792247975987,
+   "sampleSku": "DWPP-206096-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519901235,
+   "handle": "berlin-calvin-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792248107059,
+   "sampleSku": "DWPP-206088-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519966771,
+   "handle": "berlin-calvin-tulle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Tulle, Type II, Wallcovering",
+   "sampleVariantId": 44792248172595,
+   "sampleSku": "DWPP-206090-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519868467,
+   "handle": "berlin-calvin-urban-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Urban, Wallcovering",
+   "sampleVariantId": 44792248303667,
+   "sampleSku": "DWPP-206087-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520228915,
+   "handle": "berlin-calvin-wild-flower-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Floral, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Wild Flower, Yellow",
+   "sampleVariantId": 44792248369203,
+   "sampleSku": "DWPP-206095-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520097843,
+   "handle": "berlin-calvin-yukon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Calvin, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow, Yukon",
+   "sampleVariantId": 44792248500275,
+   "sampleSku": "DWPP-206092-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520785971,
+   "handle": "berlin-colt-ashen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ashen, Beige, Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792248664115,
+   "sampleSku": "DWPP-206105-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520687667,
+   "handle": "berlin-colt-camel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Colt, Camel, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792248795187,
+   "sampleSku": "DWPP-206102-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520753203,
+   "handle": "berlin-colt-copper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Colt, contact-for-price, Contract Vinyl, Copper, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792248893491,
+   "sampleSku": "DWPP-206104-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520523827,
+   "handle": "berlin-colt-ecru-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Ecru, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792249024563,
+   "sampleSku": "DWPP-206099-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520654899,
+   "handle": "berlin-colt-emerald-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Emerald, Phillipe Romano, pr-capital-berlin, quote-only, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792249122867,
+   "sampleSku": "DWPP-206101-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520327219,
+   "handle": "berlin-colt-gilded-saddle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Gilded Saddle, Phillipe Romano, pr-capital-berlin, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792249253939,
+   "sampleSku": "DWPP-206097-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520556595,
+   "handle": "berlin-colt-icy-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Icy Blue, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792249614387,
+   "sampleSku": "DWPP-206100-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520851507,
+   "handle": "berlin-colt-silver-lilac-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver Lilac, Type II, Wallcovering",
+   "sampleVariantId": 44792250007603,
+   "sampleSku": "DWPP-206106-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520720435,
+   "handle": "berlin-colt-stable-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Colt, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Stable, Type II, Wallcovering",
+   "sampleVariantId": 44792250171443,
+   "sampleSku": "DWPP-206103-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520491059,
+   "handle": "berlin-colt-whitewash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Colt, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Whitewash",
+   "sampleVariantId": 44792250466355,
+   "sampleSku": "DWPP-206098-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521277491,
+   "handle": "berlin-fossey-canopy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Fossey, Canopy, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792250826803,
+   "sampleSku": "DWPP-206116-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520884275,
+   "handle": "berlin-fossey-deep-woods-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Fossey, Brown, contact-for-price, Contract Vinyl, Deep Woods, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792250957875,
+   "sampleSku": "DWPP-206107-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521244723,
+   "handle": "berlin-fossey-glacier-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Glacier, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792250990643,
+   "sampleSku": "DWPP-206115-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521080883,
+   "handle": "berlin-fossey-jade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Jade, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792251023411,
+   "sampleSku": "DWPP-206112-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521015347,
+   "handle": "berlin-fossey-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Lagoon, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792251121715,
+   "sampleSku": "DWPP-206110-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521179187,
+   "handle": "berlin-fossey-marble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Berlin, Berlin Fossey, contact-for-price, Contemporary, Contract Vinyl, display_variant, Marble, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792251187251,
+   "sampleSku": "DWPP-206113-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521048115,
+   "handle": "berlin-fossey-orchid-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Gray, Orchid Slate, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792251383859,
+   "sampleSku": "DWPP-206111-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521211955,
+   "handle": "berlin-fossey-paper-mache-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Paper, Paper Maché, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792251482163,
+   "sampleSku": "DWPP-206114-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520982579,
+   "handle": "berlin-fossey-spearmint-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Spearmint, Type II, Wallcovering",
+   "sampleVariantId": 44792251842611,
+   "sampleSku": "DWPP-206109-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896520949811,
+   "handle": "berlin-fossey-watercolor-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Berlin, Berlin Fossey, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering, Watercolor",
+   "sampleVariantId": 44792252137523,
+   "sampleSku": "DWPP-206108-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521375795,
+   "handle": "berlin-galapagos-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, Cashmere, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792252170291,
+   "sampleSku": "DWPP-206119-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521441331,
+   "handle": "berlin-galapagos-cinderblock-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, Charcoal, Cinderblock, contact-for-price, Contract Vinyl, display_variant, Industrial, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792252235827,
+   "sampleSku": "DWPP-206121-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521539635,
+   "handle": "berlin-galapagos-ecru-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Ecru, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792252268595,
+   "sampleSku": "DWPP-206124-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521572403,
+   "handle": "berlin-galapagos-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Gold, Mink, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792252301363,
+   "sampleSku": "DWPP-206125-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521506867,
+   "handle": "berlin-galapagos-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Modern, Pearl, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792252399667,
+   "sampleSku": "DWPP-206123-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521474099,
+   "handle": "berlin-galapagos-raven-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, Black, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Raven, Type II, Wallcovering",
+   "sampleVariantId": 44792252465203,
+   "sampleSku": "DWPP-206122-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521605171,
+   "handle": "berlin-galapagos-saffron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, Brown, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Saffron, Type II, Wallcovering",
+   "sampleVariantId": 44792252497971,
+   "sampleSku": "DWPP-206126-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521408563,
+   "handle": "berlin-galapagos-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-berlin, quote-only, Smoke, Type II, Wallcovering",
+   "sampleVariantId": 44792252596275,
+   "sampleSku": "DWPP-206120-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521343027,
+   "handle": "berlin-galapagos-snow-cap-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Snow Cap, Type II, Wallcovering",
+   "sampleVariantId": 44792252727347,
+   "sampleSku": "DWPP-206118-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521310259,
+   "handle": "berlin-galapagos-wineberry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Galapagos, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Red, Type II, Wallcovering, Wineberry",
+   "sampleVariantId": 44792252760115,
+   "sampleSku": "DWPP-206117-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521900083,
+   "handle": "berlin-geode-amber-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amber, Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792252792883,
+   "sampleSku": "DWPP-206133-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521834547,
+   "handle": "berlin-geode-amethyst-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amethyst, Berlin, Berlin Geode, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792252825651,
+   "sampleSku": "DWPP-206131-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521736243,
+   "handle": "berlin-geode-granite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Granite, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792253382707,
+   "sampleSku": "DWPP-206129-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521998387,
+   "handle": "berlin-geode-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Graystone, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792253448243,
+   "sampleSku": "DWPP-206136-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521932851,
+   "handle": "berlin-geode-limestone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Limestone, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792253546547,
+   "sampleSku": "DWPP-206134-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521703475,
+   "handle": "berlin-geode-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Opal, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792253579315,
+   "sampleSku": "DWPP-206128-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521637939,
+   "handle": "berlin-geode-quartzite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, Quartzite, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792253677619,
+   "sampleSku": "DWPP-206127-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521769011,
+   "handle": "berlin-geode-sandstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-berlin, quote-only, Sandstone, Tan, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792253710387,
+   "sampleSku": "DWPP-206130-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521965619,
+   "handle": "berlin-geode-talc-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Talc, Type II, Wallcovering",
+   "sampleVariantId": 44792253775923,
+   "sampleSku": "DWPP-206135-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896521867315,
+   "handle": "berlin-geode-thistle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Geode, Brown, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-berlin, quote-only, Thistle, Type II, Wallcovering",
+   "sampleVariantId": 44792253841459,
+   "sampleSku": "DWPP-206132-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522260531,
+   "handle": "berlin-kennedy-anvil-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Anvil, Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Industrial, Phillipe Romano, pr-capital-berlin, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792262164531,
+   "sampleSku": "DWPP-206143-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522031155,
+   "handle": "berlin-kennedy-black-walnut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, Black Walnut, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262197299,
+   "sampleSku": "DWPP-206137-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522162227,
+   "handle": "berlin-kennedy-canvas-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, Canvas, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262230067,
+   "sampleSku": "DWPP-206140-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522063923,
+   "handle": "berlin-kennedy-cypress-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, Cypress, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262328371,
+   "sampleSku": "DWPP-206138-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522096691,
+   "handle": "berlin-kennedy-pacific-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Gold, Pacific, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262361139,
+   "sampleSku": "DWPP-206139-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522358835,
+   "handle": "berlin-kennedy-pumice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, Pumice, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262393907,
+   "sampleSku": "DWPP-206145-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522227763,
+   "handle": "berlin-kennedy-seagrass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, Coastal, contact-for-price, Contract Vinyl, display_variant, Gold, Grasscloth, Phillipe Romano, pr-capital-berlin, quote-only, Seagrass, Type II, Wallcovering",
+   "sampleVariantId": 44792262459443,
+   "sampleSku": "DWPP-206142-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522293299,
+   "handle": "berlin-kennedy-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Stone, Type II, Wallcovering",
+   "sampleVariantId": 44792262524979,
+   "sampleSku": "DWPP-206144-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522391603,
+   "handle": "berlin-kennedy-thatch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Thatch, Type II, Wallcovering",
+   "sampleVariantId": 44792262590515,
+   "sampleSku": "DWPP-206146-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522194995,
+   "handle": "berlin-kennedy-vapor-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kennedy, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vapor, Wallcovering",
+   "sampleVariantId": 44792262623283,
+   "sampleSku": "DWPP-206141-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522555443,
+   "handle": "berlin-kimball-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Kimball, Birch, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262656051,
+   "sampleSku": "DWPP-206151-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522653747,
+   "handle": "berlin-kimball-black-licorice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, Black Licorice, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262688819,
+   "sampleSku": "DWPP-206153-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522752051,
+   "handle": "berlin-kimball-chamomile-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, Chamomile, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792262721587,
+   "sampleSku": "DWPP-206156-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522489907,
+   "handle": "berlin-kimball-earl-gray-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Earl Gray, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262787123,
+   "sampleSku": "DWPP-206149-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522457139,
+   "handle": "berlin-kimball-futon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Futon, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262819891,
+   "sampleSku": "DWPP-206148-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522424371,
+   "handle": "berlin-kimball-marshmallow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Marshmallow, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262852659,
+   "sampleSku": "DWPP-206147-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522719283,
+   "handle": "berlin-kimball-peach-tint-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Modern, Peach Tint, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792262885427,
+   "sampleSku": "DWPP-206155-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522522675,
+   "handle": "berlin-kimball-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, Brown, contact-for-price, Contract Vinyl, display_variant, Pewter, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792262918195,
+   "sampleSku": "DWPP-206150-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522686515,
+   "handle": "berlin-kimball-saddle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Saddle, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792262950963,
+   "sampleSku": "DWPP-206154-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522620979,
+   "handle": "berlin-kimball-sage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Kimball, contact-for-price, Contract Vinyl, display_variant, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792263016499,
+   "sampleSku": "DWPP-206152-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523079731,
+   "handle": "berlin-lennox-caribbean-surf-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, Caribbean Surf, Coastal, contact-for-price, Contract Vinyl, display_variant, Green, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263049267,
+   "sampleSku": "DWPP-206165-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522850355,
+   "handle": "berlin-lennox-darjeeling-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, Darjeeling, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792263114803,
+   "sampleSku": "DWPP-206159-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522915891,
+   "handle": "berlin-lennox-dark-roast-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, Brown, contact-for-price, Contract Vinyl, Dark Roast, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263180339,
+   "sampleSku": "DWPP-206161-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522784819,
+   "handle": "berlin-lennox-flamenco-dancer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Flamenco Dancer, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263213107,
+   "sampleSku": "DWPP-206157-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522883123,
+   "handle": "berlin-lennox-grand-canyon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, Brown, contact-for-price, Contract Vinyl, display_variant, Grand Canyon, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263245875,
+   "sampleSku": "DWPP-206160-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523145267,
+   "handle": "berlin-lennox-honeysuckle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Honeysuckle, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792263278643,
+   "sampleSku": "DWPP-206166-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522817587,
+   "handle": "berlin-lennox-papyrus-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Papyrus, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44792263573555,
+   "sampleSku": "DWPP-206158-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896522948659,
+   "handle": "berlin-lennox-peridot-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Gold, Modern, Peridot, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263606323,
+   "sampleSku": "DWPP-206162-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523046963,
+   "handle": "berlin-lennox-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Stormy, Type II, Wallcovering",
+   "sampleVariantId": 44792263639091,
+   "sampleSku": "DWPP-206164-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523014195,
+   "handle": "berlin-lennox-tumble-weed-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Lennox, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Tumble Weed, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792263671859,
+   "sampleSku": "DWPP-206163-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523407411,
+   "handle": "berlin-milena-aquarium-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aquarium, Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263704627,
+   "sampleSku": "DWPP-206174-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523309107,
+   "handle": "berlin-milena-beach-walk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beach Walk, Berlin, Berlin Milena, Coastal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792263737395,
+   "sampleSku": "DWPP-206171-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523374643,
+   "handle": "berlin-milena-english-breakfast-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, English Breakfast, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263802931,
+   "sampleSku": "DWPP-206173-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523178035,
+   "handle": "berlin-milena-fuchsia-pop-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Fuchsia Pop, Gold, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263835699,
+   "sampleSku": "DWPP-206167-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523341875,
+   "handle": "berlin-milena-pebble-path-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Pebble Path, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792263901235,
+   "sampleSku": "DWPP-206172-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523276339,
+   "handle": "berlin-milena-slate-tile-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Slate Tile, Type II, Wallcovering",
+   "sampleVariantId": 44792263966771,
+   "sampleSku": "DWPP-206170-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523210803,
+   "handle": "berlin-milena-stone-pillar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Stone Pillar, Type II, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44792264065075,
+   "sampleSku": "DWPP-206168-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523243571,
+   "handle": "berlin-milena-sunburst-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Milena, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Sunburst, Type II, Wallcovering",
+   "sampleVariantId": 44792264097843,
+   "sampleSku": "DWPP-206169-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523538483,
+   "handle": "berlin-morris-cardigan-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, Bohemian, Cardigan, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264163379,
+   "sampleSku": "DWPP-206178-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523669555,
+   "handle": "berlin-morris-cliff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, Cliff, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264196147,
+   "sampleSku": "DWPP-206181-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523604019,
+   "handle": "berlin-morris-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, Denim, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264228915,
+   "sampleSku": "DWPP-206179-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523505715,
+   "handle": "berlin-morris-leisure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Gold, Leisure, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264294451,
+   "sampleSku": "DWPP-206177-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523636787,
+   "handle": "berlin-morris-outback-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Gold, Outback, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264327219,
+   "sampleSku": "DWPP-206180-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523702323,
+   "handle": "berlin-morris-rye-grass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Rye Grass, Type II, Wallcovering",
+   "sampleVariantId": 44792264359987,
+   "sampleSku": "DWPP-206182-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523735091,
+   "handle": "berlin-morris-stampede-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, Bohemian, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Stampede, Type II, Wallcovering",
+   "sampleVariantId": 44792264392755,
+   "sampleSku": "DWPP-206183-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523767859,
+   "handle": "berlin-morris-straw-hat-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Straw Hat, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792264458291,
+   "sampleSku": "DWPP-206184-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523472947,
+   "handle": "berlin-morris-thistle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Thistle, Type II, Wallcovering",
+   "sampleVariantId": 44792264491059,
+   "sampleSku": "DWPP-206176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523440179,
+   "handle": "berlin-morris-tweed-vest-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Morris, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Tweed Vest, Type II, Wallcovering",
+   "sampleVariantId": 44792264589363,
+   "sampleSku": "DWPP-206175-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523964467,
+   "handle": "berlin-napolean-butterscotch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, Butterscotch, contact-for-price, Contract Vinyl, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792264720435,
+   "sampleSku": "DWPP-206188-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524193843,
+   "handle": "berlin-napolean-cirrus-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, Cirrus, contact-for-price, Contract Vinyl, Cream, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792264753203,
+   "sampleSku": "DWPP-206194-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524030003,
+   "handle": "berlin-napolean-creamy-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, Creamy Pearl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792276746291,
+   "sampleSku": "DWPP-206190-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523931699,
+   "handle": "berlin-napolean-golden-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Golden Taupe, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792276779059,
+   "sampleSku": "DWPP-206187-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524161075,
+   "handle": "berlin-napolean-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Gold, Graphite, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792276844595,
+   "sampleSku": "DWPP-206193-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523800627,
+   "handle": "berlin-napolean-metallum-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Metallum, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792276877363,
+   "sampleSku": "DWPP-206185-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524128307,
+   "handle": "berlin-napolean-royal-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Royal Gold, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792277008435,
+   "sampleSku": "DWPP-206192-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524062771,
+   "handle": "berlin-napolean-sage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792277106739,
+   "sampleSku": "DWPP-206191-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523997235,
+   "handle": "berlin-napolean-spanish-tile-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Geometric, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Spanish Tile, Type II, Wallcovering",
+   "sampleVariantId": 44792277139507,
+   "sampleSku": "DWPP-206189-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896523866163,
+   "handle": "berlin-napolean-stone-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Napolean, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Stone Grey, Type II, Wallcovering",
+   "sampleVariantId": 44792277172275,
+   "sampleSku": "DWPP-206186-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524521523,
+   "handle": "berlin-orchard-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Berlin, Berlin Orchard, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792277237811,
+   "sampleSku": "DWPP-206203-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524324915,
+   "handle": "berlin-orchard-barnwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Barnwood, Berlin, Berlin Orchard, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792277270579,
+   "sampleSku": "DWPP-206198-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524259379,
+   "handle": "berlin-orchard-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, Birch, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792277401651,
+   "sampleSku": "DWPP-206196-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524554291,
+   "handle": "berlin-orchard-driftwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, Brown, Coastal, contact-for-price, Contract Vinyl, display_variant, Driftwood, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792277532723,
+   "sampleSku": "DWPP-206204-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524292147,
+   "handle": "berlin-orchard-hickory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Orchard, contact-for-price, Contract Vinyl, display_variant, Hickory, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792277598259,
+   "sampleSku": "DWPP-206197-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524226611,
+   "handle": "berlin-orchard-oak-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, contact-for-price, Contract Vinyl, display_variant, Oak, Phillipe Romano, pr-capital-berlin, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792277663795,
+   "sampleSku": "DWPP-206195-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524390451,
+   "handle": "berlin-orchard-pine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, Pine, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792277696563,
+   "sampleSku": "DWPP-206200-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524455987,
+   "handle": "berlin-orchard-rosewood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Rosewood, Type II, Wallcovering",
+   "sampleVariantId": 44792277729331,
+   "sampleSku": "DWPP-206201-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524488755,
+   "handle": "berlin-orchard-walnut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Walnut",
+   "sampleVariantId": 44792277958707,
+   "sampleSku": "DWPP-206202-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524357683,
+   "handle": "berlin-orchard-weathered-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Orchard, Black, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Weathered Grey",
+   "sampleVariantId": 44792277991475,
+   "sampleSku": "DWPP-206199-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524652595,
+   "handle": "berlin-owen-antique-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antique White, Berlin, Berlin Owen, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792278057011,
+   "sampleSku": "DWPP-206206-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524587059,
+   "handle": "berlin-owen-castle-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, Castle Stone, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792278155315,
+   "sampleSku": "DWPP-206205-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525013043,
+   "handle": "berlin-owen-cilantro-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, Cilantro, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792278188083,
+   "sampleSku": "DWPP-206212-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524849203,
+   "handle": "berlin-owen-desert-lily-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, contact-for-price, Contract Vinyl, Desert Lily, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792278220851,
+   "sampleSku": "DWPP-206210-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524718131,
+   "handle": "berlin-owen-french-gild-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, contact-for-price, Contract Vinyl, display_variant, French Gild, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792278253619,
+   "sampleSku": "DWPP-206208-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524783667,
+   "handle": "berlin-owen-hyacinth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, Brown, contact-for-price, Contract Vinyl, display_variant, hyacinth, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792278351923,
+   "sampleSku": "DWPP-206209-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524947507,
+   "handle": "berlin-owen-khaki-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, contact-for-price, Contract Vinyl, display_variant, Gold, Khaki, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792278417459,
+   "sampleSku": "DWPP-206211-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525078579,
+   "handle": "berlin-owen-shabby-chic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Shabby Chic, Type II, Wallcovering",
+   "sampleVariantId": 44792278614067,
+   "sampleSku": "DWPP-206214-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525045811,
+   "handle": "berlin-owen-sweet-fig-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, Brown, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Sweet Fig, Type II, Wallcovering",
+   "sampleVariantId": 44792278679603,
+   "sampleSku": "DWPP-206213-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896524685363,
+   "handle": "berlin-owen-tea-cookie-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Owen, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Tea Cookie, Type II, Wallcovering",
+   "sampleVariantId": 44792278745139,
+   "sampleSku": "DWPP-206207-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525471795,
+   "handle": "berlin-reid-antique-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antique, Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792278810675,
+   "sampleSku": "DWPP-206223-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525406259,
+   "handle": "berlin-reid-bamboo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bamboo, Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Rustic, Tropical, Type II, Wallcovering",
+   "sampleVariantId": 44792278876211,
+   "sampleSku": "DWPP-206222-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525144115,
+   "handle": "berlin-reid-blood-orange-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, Blood Orange, contact-for-price, Contract Vinyl, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792278908979,
+   "sampleSku": "DWPP-206216-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525176883,
+   "handle": "berlin-reid-copper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, contact-for-price, Contract Vinyl, Copper, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792278974515,
+   "sampleSku": "DWPP-206217-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525209651,
+   "handle": "berlin-reid-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44792279007283,
+   "sampleSku": "DWPP-206218-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525373491,
+   "handle": "berlin-reid-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Gold, Natural, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792279040051,
+   "sampleSku": "DWPP-206221-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525504563,
+   "handle": "berlin-reid-periwinkle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Periwinkle, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792279105587,
+   "sampleSku": "DWPP-206224-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525242419,
+   "handle": "berlin-reid-saffron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Saffron, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792279138355,
+   "sampleSku": "DWPP-206219-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525307955,
+   "handle": "berlin-reid-snow-drift-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Snow Drift, Type II, Wallcovering",
+   "sampleVariantId": 44792279171123,
+   "sampleSku": "DWPP-206220-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525111347,
+   "handle": "berlin-reid-treasure-chest-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Reid, contact-for-price, Contract Vinyl, display_variant, Orange, Phillipe Romano, pr-capital-berlin, quote-only, Treasure Chest, Type II, Wallcovering",
+   "sampleVariantId": 44792279302195,
+   "sampleSku": "DWPP-206215-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525733939,
+   "handle": "berlin-sequoia-beech-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beech, Beige, Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792279564339,
+   "sampleSku": "DWPP-206231-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525668403,
+   "handle": "berlin-sequoia-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, Birch, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792279662643,
+   "sampleSku": "DWPP-206229-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525537331,
+   "handle": "berlin-sequoia-magnolia-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Floral, Magnolia, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792279859251,
+   "sampleSku": "DWPP-206225-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525570099,
+   "handle": "berlin-sequoia-maple-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Maple, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792279924787,
+   "sampleSku": "DWPP-206226-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525766707,
+   "handle": "berlin-sequoia-oak-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, Brown, contact-for-price, Contract Vinyl, display_variant, Oak, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792280023091,
+   "sampleSku": "DWPP-206232-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525832243,
+   "handle": "berlin-sequoia-pembury-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Modern, Pembury, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792280154163,
+   "sampleSku": "DWPP-206234-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525701171,
+   "handle": "berlin-sequoia-pine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, Pine, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792280219699,
+   "sampleSku": "DWPP-206230-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525799475,
+   "handle": "berlin-sequoia-poplar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Sequoia, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, Poplar, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792280252467,
+   "sampleSku": "DWPP-206233-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525635635,
+   "handle": "berlin-sequoia-redwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Redwood, Type II, Wallcovering",
+   "sampleVariantId": 44792280318003,
+   "sampleSku": "DWPP-206228-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525602867,
+   "handle": "berlin-sequoia-teak-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Sequoia, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Teak, Type II, Wallcovering",
+   "sampleVariantId": 44792280449075,
+   "sampleSku": "DWPP-206227-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526028851,
+   "handle": "berlin-stonehenge-agate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Agate, Beige, Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792280514611,
+   "sampleSku": "DWPP-206239-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526061619,
+   "handle": "berlin-stonehenge-alabaster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alabaster, Beige, Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792280547379,
+   "sampleSku": "DWPP-206240-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526094387,
+   "handle": "berlin-stonehenge-brass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, Brass, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792283496499,
+   "sampleSku": "DWPP-206241-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526127155,
+   "handle": "berlin-stonehenge-jasper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, Brown, contact-for-price, Contract Vinyl, display_variant, Geometric, Jasper, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792283529267,
+   "sampleSku": "DWPP-206242-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526192691,
+   "handle": "berlin-stonehenge-marble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Berlin, Berlin Stonehenge, contact-for-price, Contemporary, Contract Vinyl, display_variant, Marble, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792283627571,
+   "sampleSku": "DWPP-206243-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525865011,
+   "handle": "berlin-stonehenge-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Geometric, Pearl, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792283725875,
+   "sampleSku": "DWPP-206235-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525996083,
+   "handle": "berlin-stonehenge-shale-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, Brown, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-berlin, quote-only, Shale, Type II, Wallcovering",
+   "sampleVariantId": 44792283791411,
+   "sampleSku": "DWPP-206238-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526225459,
+   "handle": "berlin-stonehenge-sidewalk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Geometric, Gray, Phillipe Romano, pr-capital-berlin, quote-only, Sidewalk, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792283824179,
+   "sampleSku": "DWPP-206244-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525963315,
+   "handle": "berlin-stonehenge-smokey-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Smokey Quartz, Type II, Wallcovering",
+   "sampleVariantId": 44792283889715,
+   "sampleSku": "DWPP-206237-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896525930547,
+   "handle": "berlin-stonehenge-stonewall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Stonehenge, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-berlin, quote-only, Stonewall, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792283955251,
+   "sampleSku": "DWPP-206236-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526290995,
+   "handle": "berlin-tacora-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Beige, Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284053555,
+   "sampleSku": "DWPP-206245-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526454835,
+   "handle": "berlin-tacora-cameo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tacora, Cameo, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284086323,
+   "sampleSku": "DWPP-206249-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527339571,
+   "handle": "berlin-tacora-elkhorn-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Elkhorn, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284315699,
+   "sampleSku": "DWPP-206252-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527274035,
+   "handle": "berlin-tacora-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Mist, Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284348467,
+   "sampleSku": "DWPP-206251-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526848051,
+   "handle": "berlin-tacora-overcast-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Modern, Overcast, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792284414003,
+   "sampleSku": "DWPP-206250-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526422067,
+   "handle": "berlin-tacora-sand-bar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sand Bar, Type II, Wallcovering",
+   "sampleVariantId": 44792284479539,
+   "sampleSku": "DWPP-206248-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527405107,
+   "handle": "berlin-tacora-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Tan, Taupe, Type II, Wallcovering",
+   "sampleVariantId": 44792284545075,
+   "sampleSku": "DWPP-206254-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526389299,
+   "handle": "berlin-tacora-vanilla-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vanilla Cream, Wallcovering",
+   "sampleVariantId": 44792284643379,
+   "sampleSku": "DWPP-206247-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527372339,
+   "handle": "berlin-tacora-waterfall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering, Waterfall",
+   "sampleVariantId": 44792284676147,
+   "sampleSku": "DWPP-206253-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896526356531,
+   "handle": "berlin-tacora-white-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tacora, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, White Smoke",
+   "sampleVariantId": 44792284741683,
+   "sampleSku": "DWPP-206246-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527568947,
+   "handle": "berlin-tulle-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, Bisque, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284839987,
+   "sampleSku": "DWPP-206258-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527667251,
+   "handle": "berlin-tulle-butter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, Butter, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284872755,
+   "sampleSku": "DWPP-206261-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527503411,
+   "handle": "berlin-tulle-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, Cream, display_variant, Dove, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284938291,
+   "sampleSku": "DWPP-206257-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527601715,
+   "handle": "berlin-tulle-ecru-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, Cream, display_variant, Ecru, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792284971059,
+   "sampleSku": "DWPP-206259-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527732787,
+   "handle": "berlin-tulle-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792285036595,
+   "sampleSku": "DWPP-206263-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527634483,
+   "handle": "berlin-tulle-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, Cream, display_variant, Parchment, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792285069363,
+   "sampleSku": "DWPP-206260-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527700019,
+   "handle": "berlin-tulle-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sand, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792285134899,
+   "sampleSku": "DWPP-206262-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527437875,
+   "handle": "berlin-tulle-sterling-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Sterling, Type II, Wallcovering",
+   "sampleVariantId": 44792285200435,
+   "sampleSku": "DWPP-206255-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527765555,
+   "handle": "berlin-tulle-sunshine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sunshine, Type II, Wallcovering",
+   "sampleVariantId": 44792285265971,
+   "sampleSku": "DWPP-206264-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527470643,
+   "handle": "berlin-tulle-winter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Tulle, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Winter",
+   "sampleVariantId": 44792285364275,
+   "sampleSku": "DWPP-206256-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528191539,
+   "handle": "berlin-weiss-cocoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, Cocoon, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792285397043,
+   "sampleSku": "DWPP-206273-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527896627,
+   "handle": "berlin-weiss-colonial-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Weiss, Colonial, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792285462579,
+   "sampleSku": "DWPP-206268-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527831091,
+   "handle": "berlin-weiss-cotton-seed-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, contact-for-price, Contract Vinyl, Cotton, Cotton seed, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792285495347,
+   "sampleSku": "DWPP-206266-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528158771,
+   "handle": "berlin-weiss-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, Brown, contact-for-price, Contract Vinyl, Denim, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792285560883,
+   "sampleSku": "DWPP-206272-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527798323,
+   "handle": "berlin-weiss-everglades-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, Brown, contact-for-price, Contract Vinyl, display_variant, Everglades, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792285954099,
+   "sampleSku": "DWPP-206265-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527863859,
+   "handle": "berlin-weiss-grey-sky-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, contact-for-price, Contract Vinyl, display_variant, Gold, Grey Sky, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792286183475,
+   "sampleSku": "DWPP-206267-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527929395,
+   "handle": "berlin-weiss-hamptons-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Weiss, contact-for-price, Contract Vinyl, display_variant, Hamptons, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286216243,
+   "sampleSku": "DWPP-206269-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528224307,
+   "handle": "berlin-weiss-nantucket-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, Coastal, contact-for-price, Contract Vinyl, display_variant, Gold, Nantucket, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286281779,
+   "sampleSku": "DWPP-206274-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896527962163,
+   "handle": "berlin-weiss-palisades-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, contact-for-price, Contract Vinyl, display_variant, Gold, Modern, Palisades, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286314547,
+   "sampleSku": "DWPP-206270-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528060467,
+   "handle": "berlin-weiss-waterfall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Weiss, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering, Waterfall",
+   "sampleVariantId": 44792286412851,
+   "sampleSku": "DWPP-206271-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528289843,
+   "handle": "berlin-woodbridge-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Woodbridge, Birch, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286543923,
+   "sampleSku": "DWPP-206276-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528322611,
+   "handle": "berlin-woodbridge-cottonwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, Cottonwood, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286576691,
+   "sampleSku": "DWPP-206277-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528650291,
+   "handle": "berlin-woodbridge-granite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Granite, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286609459,
+   "sampleSku": "DWPP-206283-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528551987,
+   "handle": "berlin-woodbridge-greyson-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Greyson, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286674995,
+   "sampleSku": "DWPP-206280-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528683059,
+   "handle": "berlin-woodbridge-juniper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Juniper, Phillipe Romano, pr-capital-berlin, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792286740531,
+   "sampleSku": "DWPP-206284-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528617523,
+   "handle": "berlin-woodbridge-quarry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, Quarry, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792286937139,
+   "sampleSku": "DWPP-206282-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528257075,
+   "handle": "berlin-woodbridge-sagebrush-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sagebrush, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792286969907,
+   "sampleSku": "DWPP-206275-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528388147,
+   "handle": "berlin-woodbridge-silkwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silkwood, Type II, Wallcovering",
+   "sampleVariantId": 44792287035443,
+   "sampleSku": "DWPP-206278-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528584755,
+   "handle": "berlin-woodbridge-silverleaf-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Silverleaf, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792287068211,
+   "sampleSku": "DWPP-206281-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528486451,
+   "handle": "berlin-woodbridge-timber-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Woodbridge, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Timber, Type II, Wallcovering",
+   "sampleVariantId": 44792287133747,
+   "sampleSku": "DWPP-206279-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528814131,
+   "handle": "berlin-zirconium-cabos-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Zirconium, Cabos, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792287166515,
+   "sampleSku": "DWPP-206286-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528977971,
+   "handle": "berlin-zirconium-el-dorado-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, El Dorado, Gold, Mid-Century Modern, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792287232051,
+   "sampleSku": "DWPP-206291-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528879667,
+   "handle": "berlin-zirconium-lapis-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Lapis, Navy, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792295587891,
+   "sampleSku": "DWPP-206288-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528781363,
+   "handle": "berlin-zirconium-nightclub-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, Charcoal, contact-for-price, Contract Vinyl, display_variant, Nightclub, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792295653427,
+   "sampleSku": "DWPP-206285-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528912435,
+   "handle": "berlin-zirconium-opera-house-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Opera House, Phillipe Romano, pr-capital-berlin, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792296144947,
+   "sampleSku": "DWPP-206289-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529043507,
+   "handle": "berlin-zirconium-rose-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Floral, Phillipe Romano, pr-capital-berlin, quote-only, Rose Gold, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792296210483,
+   "sampleSku": "DWPP-206292-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528945203,
+   "handle": "berlin-zirconium-sand-castle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-berlin, quote-only, Sand Castle, Type II, Wallcovering",
+   "sampleVariantId": 44792296439859,
+   "sampleSku": "DWPP-206290-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529076275,
+   "handle": "berlin-zirconium-silver-spring-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-berlin, quote-only, Silver Spring, Type II, Wallcovering",
+   "sampleVariantId": 44792296472627,
+   "sampleSku": "DWPP-206293-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529109043,
+   "handle": "berlin-zirconium-sterling-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-berlin, quote-only, Sterling, Type II, Wallcovering",
+   "sampleVariantId": 44792296570931,
+   "sampleSku": "DWPP-206294-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896528846899,
+   "handle": "berlin-zirconium-topaz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berlin, Berlin Zirconium, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-berlin, quote-only, Topaz, Type II, Wallcovering",
+   "sampleVariantId": 44792296636467,
+   "sampleSku": "DWPP-206287-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461342771,
+   "handle": "grs-20366",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819618975795,
+   "sampleSku": "GRS-20366",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461375539,
+   "handle": "grs-20367",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819619008563,
+   "sampleSku": "GRS-20367",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461408307,
+   "handle": "grs-20368",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lightblue, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819619041331,
+   "sampleSku": "GRS-20368",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461441075,
+   "handle": "grs-20369",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819619074099,
+   "sampleSku": "GRS-20369",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461506611,
+   "handle": "grs-20370",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Teal, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819619106867,
+   "sampleSku": "GRS-20370",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461539379,
+   "handle": "grs-20371",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819620646963,
+   "sampleSku": "GRS-20371",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461572147,
+   "handle": "grs-20372",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Teal, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819620679731,
+   "sampleSku": "GRS-20372",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568027699,
+   "handle": "dwrt-5016-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Big Boy Berries, Botanical, Charcoal Grey, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Crimson, Dining Room, display_variant, English Country, Fabric, Floral, Grandmillennial, Gray, Grey, Lattice, Leaf, Living Room, Needs-Image, Needs-Price, Needs-Width, Off-white, Pale Beige, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598626867,
+   "sampleSku": "DWRT-5016F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568060467,
+   "handle": "dwrt-5017-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Big Boy Berries, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Crimson, display_variant, Fabric, Floral, Gold, Grandmillennial, Greige, Lattice, Navy, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Room, Screen Print, Screen Prints, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827598659635,
+   "sampleSku": "DWRT-5017F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568126003,
+   "handle": "dwrt-5018-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Arts & Crafts, Bedroom, Big Boy Berries, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Crimson, display_variant, English Country, Fabric, Grandmillennial, Green, Lattice, Leaf, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Olive Green, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Room, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598757939,
+   "sampleSku": "DWRT-5018F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568191539,
+   "handle": "dwrt-5019-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Big Boy Berries, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Denim Blue, display_variant, Fabric, Floral, Grandmillennial, Light Sky Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Room, Ruby, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827598823475,
+   "sampleSku": "DWRT-5019F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568224307,
+   "handle": "dwrt-5020-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Big Boy Berries, Blue, Botanical, Burnt Orange, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Crimson, display_variant, Fabric, Gold, Grandmillennial, Indigo, Lattice, Leaf, Needs-Image, Needs-Price, Needs-Width, Nursery, Orange, Organic, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, Yellow",
+   "sampleVariantId": 42827598856243,
+   "sampleSku": "DWRT-5020F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568257075,
+   "handle": "dwrt-5021-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Bedroom, Big Boy Berries, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Crimson, display_variant, Fabric, Grandmillennial, Green, Lattice, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage Green, Screen Print, Screen Prints, Showroom Line, Terra Cotta, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598889011,
+   "sampleSku": "DWRT-5021F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461604915,
+   "handle": "grs-20373",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819620712499,
+   "sampleSku": "GRS-20373",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7696925229107,
+   "handle": "blossom-chinoisserie-mural-silver-grascloth-wallcovering",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, animals, Architectural, Bedroom, Bird, birds, blossom, Blossom Chinoisserie Mural, Botanical, Champagne, Chinoiserie, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cottagecore, decor wallcovering, Dining Room, display_variant, Floral, Grandmillennial, grass, grasscloth, Green, insects, Lemon Yellow, Living Room, mural, natural-fibers, Needs-Image, Needs-Price, Needs-Width, Paper, pewters, Phillipe Romano, Pink, Rose Quartz, Sage Green, Serene, Showroom Line, Silver, silvers, Taupe, Teal, TEXTURED & HIGH PERFORMANCE WALLCOVERING, Traditional, Trending Wallcovering Collection 2025, Wallcovering, White, Yellow",
+   "sampleVariantId": 43712402751539,
+   "sampleSku": "DWWC-503400-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7697050304563,
+   "handle": "blossom-mural-blush-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Bird, blossom-mural, Blush, Botanical, botanicals, Chinoiserie, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cottagecore, Cream, decor wallcovering, Dining Room, display_variant, Floral, florals, Forest Green, Grandmillennial, Lemon Yellow, Light Pink, Living Room, mural, Needs-Image, Needs-Price, Needs-Width, nonwoven, Paper, Phillipe Romano, Pink, pinks, Rose Quartz, Serene, Showroom Line, Taupe, Traditional, Trending Wallcovering Collection 2025, tropicals, Wallcovering, White, Yellow",
+   "sampleVariantId": 43712626229299,
+   "sampleSku": "DWCC-31801",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7696942497843,
+   "handle": "blossom-mural-emerald-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Bird, Birds, blossom-mural, Blush Pink, Botanical, botanicals, Chinoiserie, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cottagecore, Cream, Dark Brown, decor wallcovering, Dining Room, display_variant, Floral, florals, Grandmillennial, Green, greens, Hunter Green, Lemon Yellow, Light Green, Living Room, mural, Needs-Image, Needs-Price, Needs-Width, nonwoven, Paper, Phillipe Romano, Pink, Sage Green, Serene, Showroom Line, Tan, Traditional, Trending Wallcovering Collection 2025, tropicals, Wallcovering, White, Yellow",
+   "sampleVariantId": 43712441745459,
+   "sampleSku": "DWCC-31804",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7697041195059,
+   "handle": "blossom-mural-sky-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Bird, blossom-mural, Blue, blues, Botanical, botanicals, Chinoiserie, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cottagecore, decor wallcovering, Dining Room, display_variant, Floral, florals, Grandmillennial, Lemon Yellow, Light Blue, Living Room, mural, Needs-Image, Needs-Price, Needs-Width, nonwoven, Pale Pink, Paper, paste-the-wall, Phillipe Romano, Powder Blue, Sage Green, Serene, Showroom Line, sky-blue, spongeable, strippable, Tan, Traditional, Trending Wallcovering Collection 2025, tropicals, Wallcovering, Yellow",
+   "sampleVariantId": 43712615448627,
+   "sampleSku": "DWCC-31812",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461637683,
+   "handle": "grs-20374",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Borromeo Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819620745267,
+   "sampleSku": "GRS-20374",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461670451,
+   "handle": "grs-20375",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bosco Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819620778035,
+   "sampleSku": "GRS-20375",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499738931312,
+   "handle": "boynton-stain-repellent-real-suede-xwy-53100",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Geometric, Gray, LEED, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13956031971440,
+   "sampleSku": "XWY-53100-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499739947120,
+   "handle": "boynton-stain-repellent-real-suede-xwy-53101",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Ecru, Fabric, Geometric, LEED, Linen, Mushroom, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13956035379312,
+   "sampleSku": "XWY-53101-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499740766320,
+   "handle": "boynton-stain-repellent-real-suede-xwy-53102",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Geometric, Gray, LEED, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Suede, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13956040458352,
+   "sampleSku": "XWY-53102-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499741519984,
+   "handle": "boynton-stain-repellent-real-suede-xwy-53103",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Ecru, Fabric, Geometric, Ivy, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13956046585968,
+   "sampleSku": "XWY-53103-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499742109808,
+   "handle": "boynton-stain-repellent-real-suede-xwy-53104",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Geometric, Gray, LEED, Mid-Century Modern, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13956050944112,
+   "sampleSku": "XWY-53104-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461703219,
+   "handle": "grs-20376",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brando Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 31819620810803,
+   "sampleSku": "GRS-20376",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499694792816,
+   "handle": "branford-stain-repellent-real-dupione-silk-xww-53015",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Geometric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13955656024176,
+   "sampleSku": "XWW-53015-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461735987,
+   "handle": "grs-20377",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Bravo Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819620843571,
+   "sampleSku": "GRS-20377",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461768755,
+   "handle": "grs-20378",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brigida Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819620876339,
+   "sampleSku": "GRS-20378",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461801523,
+   "handle": "grs-20379",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brio Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Light Beige, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819620909107,
+   "sampleSku": "GRS-20379",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495935352944,
+   "handle": "bruce-s-burlap-jute-wall-paper-grs-38049",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, ASTM E84 Class A, Bedroom, Beige, Burlap, Class A Fire Rated, Coastal, Commercial, contact-for-price, Cream, display_variant, Entryway, Fabric, Grasscloth, Jute, Kyoto Garden Natural Weaves, Lemon, Living Room, Natural Burlap Cream, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 13909028601968,
+   "sampleSku": "GRS-38049-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495936467056,
+   "handle": "bruce-s-burlap-jute-wall-paper-grs-38061",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, ASTM E84 Class A, Bedroom, Beige, Burlap, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Entryway, Fabric, Farmhouse, Grasscloth, Jute, Living Room, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Shell, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909038071920,
+   "sampleSku": "GRS-38061-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461867059,
+   "handle": "grs-20381",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Bruna Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819620974643,
+   "sampleSku": "GRS-20381",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461899827,
+   "handle": "grs-20382",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brune Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819621007411,
+   "sampleSku": "GRS-20382",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461932595,
+   "handle": "grs-20383",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brunetta Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Beige, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Off-white, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 31819621040179,
+   "sampleSku": "GRS-20383",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1501383065712,
+   "handle": "brunzo-glamwalls-prt-16110",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Metallic, Natural, Natural Wallcovering, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13975707910256,
+   "sampleSku": "PRT-16110-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1501392666736,
+   "handle": "brunzo-painted-abaca-bark-prt-16138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Beige, Brown, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Grasscloth, Multi, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13975876173936,
+   "sampleSku": "PRT-16138-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1501393354864,
+   "handle": "brunzo-painted-abaca-bark-prt-16172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Blue, Brown, Commercial, contact-for-price, display_variant, Eggshell, Farmhouse, Grasscloth, Gray, Industrial, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13975893442672,
+   "sampleSku": "PRT-16172-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1501393518704,
+   "handle": "brunzo-painted-abaca-bark-prt-16173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Bone, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Gray, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13975895081072,
+   "sampleSku": "PRT-16173-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461965363,
+   "handle": "grs-20384",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Buona Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819621072947,
+   "sampleSku": "GRS-20384",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492461998131,
+   "handle": "grs-20385",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Cadenza Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Light Coral, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819621105715,
+   "sampleSku": "GRS-20385",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644514355,
+   "handle": "calico-shell-colbalt-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, bathroom, Bedroom, Beige, blue, calico-shell, chintz, Class A Fire Rated, coastal, cobalt-blue, Commercial, contact-for-price, Contemporary, Cream, decorative-papers, display_variant, Fan, Geometric, Hallway, Indigo, Light Blue, Light Gray, Nautical, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Paper, Pattern, Scale, Serene, shell-motif, Showroom Line, taupe, Traditional, trellis, V&A Decorative Papers Ii, wallcovering, White, Yellow",
+   "sampleVariantId": 43717825691699,
+   "sampleSku": "DWWC-504840-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644579891,
+   "handle": "calico-shell-verde-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, bathroom, Bedroom, calico-shell, Class A Fire Rated, coastal, Commercial, contact-for-price, Contemporary, Cream, decorative-papers-ii, display_variant, Fan, Geometric, Grandmillennial, Green, Hallway, Light Sage, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, olive, Paper, paste-the-wall, Pattern, sage, Sage Green, Scale, Serene, shell-motif, Showroom Line, strippable, Traditional, trellis-pattern, V&A Decorative Papers Ii, verde, Wallcovering, washable, White",
+   "sampleVariantId": 43717825757235,
+   "sampleSku": "DWWC-504860-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644416051,
+   "handle": "calico-shell-aqua-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, aqua, Architectural, bathroom, Bedroom, blue, chintz, Class A Fire Rated, coastal, Commercial, contact-for-price, Contemporary, Dark Teal, decorative-papers-ii, display_variant, Eclectic, Fan, Hallway, Light Blue, Light Teal, Nautical, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Non-Woven, ocean, Paper, paste-the-wall, Pattern, Scale, Seafoam, Serene, shell, Showroom Line, Sky Blue, Teal, Traditional, trellis, V&A Decorative Papers Ii, Wallcovering, washable, White",
+   "sampleVariantId": 43717825658931,
+   "sampleSku": "DWWC-504830-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644547123,
+   "handle": "calico-shell-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, bathroom, Bedroom, Beige, calico-shell, chintz, Class A Fire Rated, coastal, Commercial, contact-for-price, Cream, decorative-papers-ii, display_variant, Fan, Geometric, Glamorous, ivory, Light Beige, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, Paper, paste-the-wall, Pattern, Pearl, Powder Room, Scale, shell, Showroom Line, Sophisticated, strippable, Taupe, Traditional, trellis, V&A Decorative Papers Ii, Wallcovering, washable",
+   "sampleVariantId": 43717825724467,
+   "sampleSku": "DWWC-504850-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462030899,
+   "handle": "grs-20386",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Calvino Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Phillipe Romano, Pink, Red, Showroom Line, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819621138483,
+   "sampleSku": "GRS-20386",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462063667,
+   "handle": "grs-20387",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Cameo Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Showroom Line, Tan, Terracotta, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 31819621171251,
+   "sampleSku": "GRS-20387",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462096435,
+   "handle": "grs-20388",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Campana Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Goldenrod, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 31819621204019,
+   "sampleSku": "GRS-20388",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1496798789744,
+   "handle": "canstalata-grasscloth-prg-47803",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Canstalata Grasscloth, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Farmhouse, Gold Natural Green, Grasscloth, Grasscloth Texture, Hand Crafted, Light Green, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920797065328,
+   "sampleSku": "PRG-47803-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499676573808,
+   "handle": "cape-horn-stain-repellent-real-textile-walls-xwq-52969",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Ecru, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955492348016,
+   "sampleSku": "XWQ-52969-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499769438320,
+   "handle": "cape-springs-stain-repellent-real-textile-walls-xwy-53146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956272947312,
+   "sampleSku": "XWY-53146-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499770421360,
+   "handle": "cape-springs-stain-repellent-real-textile-walls-xwy-53147",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Grasscloth, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956279795824,
+   "sampleSku": "XWY-53147-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499770912880,
+   "handle": "cape-springs-stain-repellent-real-textile-walls-xwy-53148",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Grasscloth, LEED, Light Gray, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956283760752,
+   "sampleSku": "XWY-53148-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499771404400,
+   "handle": "cape-springs-stain-repellent-real-textile-walls-xwy-53149",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956287365232,
+   "sampleSku": "XWY-53149-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499771994224,
+   "handle": "cape-springs-stain-repellent-real-textile-walls-xwy-53150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, LEED, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956294148208,
+   "sampleSku": "XWY-53150-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462129203,
+   "handle": "grs-20389",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Carina Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Dark Red, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Red, Rosy Brown, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819621236787,
+   "sampleSku": "GRS-20389",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462161971,
+   "handle": "grs-20390",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Carlino Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Ivory, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819621269555,
+   "sampleSku": "GRS-20390",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462227507,
+   "handle": "grs-20391",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Carlo Natural Wallcovering, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819621433395,
+   "sampleSku": "GRS-20391",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462293043,
+   "handle": "grs-20392",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819621630003,
+   "sampleSku": "GRS-20392",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462325811,
+   "handle": "grs-20393",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819621662771,
+   "sampleSku": "GRS-20393",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462358579,
+   "handle": "grs-20394",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819621695539,
+   "sampleSku": "GRS-20394",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462424115,
+   "handle": "grs-20396",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819621761075,
+   "sampleSku": "GRS-20396",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462489651,
+   "handle": "grs-20397",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Ecru, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819622187059,
+   "sampleSku": "GRS-20397",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462522419,
+   "handle": "grs-20398",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819622219827,
+   "sampleSku": "GRS-20398",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462555187,
+   "handle": "grs-20399",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819622252595,
+   "sampleSku": "GRS-20399",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499637088368,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52885",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955187966064,
+   "sampleSku": "XWS-52885-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499637907568,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52886",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955190227056,
+   "sampleSku": "XWS-52886-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499638497392,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52887",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Gold, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Taupe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955198287984,
+   "sampleSku": "XWS-52887-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499639054448,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52888",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13955200942192,
+   "sampleSku": "XWS-52888-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499639513200,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52889",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Taupe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955205759088,
+   "sampleSku": "XWS-52889-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499640037488,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52890",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955207266416,
+   "sampleSku": "XWS-52890-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499640627312,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52891",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Taupe, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955216441456,
+   "sampleSku": "XWS-52891-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499641086064,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52892",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Gray, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955217064048,
+   "sampleSku": "XWS-52892-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499641774192,
+   "handle": "cattaraugus-stain-repellent-real-textile-walls-xws-52893",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Gray, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955221586032,
+   "sampleSku": "XWS-52893-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462620723,
+   "handle": "grs-20400",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819622350899,
+   "sampleSku": "GRS-20400",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462653491,
+   "handle": "grs-20401",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819622383667,
+   "sampleSku": "GRS-20401",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499901100144,
+   "handle": "cedar-lane-stain-repellent-real-silk-walls-xwt-53347",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, LEED, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957237506160,
+   "sampleSku": "XWT-53347-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499902705776,
+   "handle": "cedar-lane-stain-repellent-real-silk-walls-xwt-53353",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, LEED, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Tan, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957257101424,
+   "sampleSku": "XWT-53353-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462686259,
+   "handle": "grs-20402",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819622416435,
+   "sampleSku": "GRS-20402",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462719027,
+   "handle": "grs-20403",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Taupe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819622449203,
+   "sampleSku": "GRS-20403",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462784563,
+   "handle": "grs-20404",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819622514739,
+   "sampleSku": "GRS-20404",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462817331,
+   "handle": "grs-20405",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Yellow",
+   "sampleVariantId": 31819622547507,
+   "sampleSku": "GRS-20405",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462850099,
+   "handle": "grs-20406",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Scandinavian, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819622580275,
+   "sampleSku": "GRS-20406",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7696920641587,
+   "handle": "caf-27-aqua-wallcovering",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, caf, Charlie Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, decor wallcovering, display_variant, Fabric, Fabric-backed Vinyl, Geometric, greens, Hallway, Herringbone, Light Beige, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage, Seafoam, Serene, Showroom Line, strippable, Teal, Textured, TEXTURED & HIGH PERFORMANCE WALLCOVERING, textures, Traditional, Transitional, Trending Wallcovering Collection 2025, Type 2, vinyl, wallcovering, washable",
+   "sampleVariantId": 43712394919987,
+   "sampleSku": "DWWC-503390-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644612659,
+   "handle": "charlotte-apricot-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "apricot, Architectural, Bedroom, Beige, botanical, Champagne, charlotte, chrysanthemums, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, decorative-papers-iii, Dining Room, display_variant, English Country, floral, Grandmillennial, Living Room, Needs-Image, Needs-Price, Needs-Width, Paper, paste-the-wall, Pattern, Peach, Sage Green, Serene, Showroom Line, Silver, straight-match, strippable, Traditional, wallcovering, washable, watercolour, white, Yellow",
+   "sampleVariantId": 43717825790003,
+   "sampleSku": "DWWC-504870-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644678195,
+   "handle": "charlotte-primrose-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Accent Wall, Architectural, Bedroom, botanical, charlotte-primrose, chrysanthemums, Class A Fire Rated, Classic, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Decorative, decorative-papers-iii, Dining Room, display_variant, Eggshell, Elegant, English Country, Feature Wall, floral, Grandmillennial, Living Room, Needs-Image, Needs-Price, Needs-Width, Off-white, Olive Green, Pale Yellow, Paper, paste-the-wall, Pattern, primrose, Print, Residential, Sage Green, Serene, Showroom Line, straight-match, strippable, Traditional, va-wallcovering, Vintage, Wallcovering, washable, watercolour, White, yellow",
+   "sampleVariantId": 43717825855539,
+   "sampleSku": "DWWC-504890-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699644645427,
+   "handle": "charlotte-blush-pink-v-a-wallpaper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Accent Wall, Architectural, Bedroom, blush, Blush Pink, Botanical, charlotte, chrysanthemum, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, decorative-papers-iii, Delicate, Dining Room, display_variant, Dusty Rose, English Country, floral, Grandmillennial, Living Room, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Off-white, Olive Green, Paper, paste-the-wall, Pattern, Pink, Print, Romantic, Sage Green, Serene, Showroom Line, Silver, Steel Blue, strippable, Taupe, Teal, Traditional, Victorian, Vintage, wallcovering, washable, watercolor",
+   "sampleVariantId": 43717825822771,
+   "sampleSku": "DWWC-504880-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499665596528,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52942",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gold, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13955400794224,
+   "sampleSku": "XWQ-52942-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499666022512,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52943",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955405250672,
+   "sampleSku": "XWQ-52943-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499666481264,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52944",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13955407544432,
+   "sampleSku": "XWQ-52944-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499666940016,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52945",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955414458480,
+   "sampleSku": "XWQ-52945-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499667693680,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52947",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Metallic, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955420913776,
+   "sampleSku": "XWQ-52947-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499668054128,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52948",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bronze, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955423207536,
+   "sampleSku": "XWQ-52948-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499668906096,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52950",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Copper, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Metallic, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955428614256,
+   "sampleSku": "XWQ-52950-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499669201008,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52951",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Burgundy, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Geometric, Gold, LEED, Leed Walls, Linen, Metallic, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13955432808560,
+   "sampleSku": "XWQ-52951-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462915635,
+   "handle": "grs-20407",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Green, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819622645811,
+   "sampleSku": "GRS-20407",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462948403,
+   "handle": "grs-20408",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819622678579,
+   "sampleSku": "GRS-20408",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492462981171,
+   "handle": "grs-20409",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Tropical, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819622711347,
+   "sampleSku": "GRS-20409",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463013939,
+   "handle": "grs-20410",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fern, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Green, Lattice, Moss, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819622744115,
+   "sampleSku": "GRS-20410",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463079475,
+   "handle": "grs-20411",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819622776883,
+   "sampleSku": "GRS-20411",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463112243,
+   "handle": "grs-20412",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819622940723,
+   "sampleSku": "GRS-20412",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463145011,
+   "handle": "grs-20413",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819622973491,
+   "sampleSku": "GRS-20413",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463177779,
+   "handle": "grs-20414",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819623006259,
+   "sampleSku": "GRS-20414",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463210547,
+   "handle": "grs-20415",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819623039027,
+   "sampleSku": "GRS-20415",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463243315,
+   "handle": "grs-20416",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819623071795,
+   "sampleSku": "GRS-20416",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463276083,
+   "handle": "grs-20417",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Linen, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819623104563,
+   "sampleSku": "GRS-20417",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463308851,
+   "handle": "grs-20418",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819623137331,
+   "sampleSku": "GRS-20418",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463341619,
+   "handle": "grs-20419",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819623170099,
+   "sampleSku": "GRS-20419",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463374387,
+   "handle": "grs-20420",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819623202867,
+   "sampleSku": "GRS-20420",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463439923,
+   "handle": "grs-20421",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Tropical, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819623268403,
+   "sampleSku": "GRS-20421",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463505459,
+   "handle": "grs-20422",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819623465011,
+   "sampleSku": "GRS-20422",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502311907440,
+   "handle": "concerto-prt-74016",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Fabric, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13986573320304,
+   "sampleSku": "PRT-74016-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463636531,
+   "handle": "grs-20424",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819623727155,
+   "sampleSku": "GRS-20424",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463669299,
+   "handle": "grs-20425",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 31819623759923,
+   "sampleSku": "GRS-20425",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463734835,
+   "handle": "grs-20426",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819623792691,
+   "sampleSku": "GRS-20426",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463833139,
+   "handle": "grs-20427",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819623825459,
+   "sampleSku": "GRS-20427",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498963509360,
+   "handle": "corby-specialty-wallcovering-xkt-47530",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Corby  Specialty Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sand (Calcium Carbonate), Showroom Line, Solid, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13944220516464,
+   "sampleSku": "XKT-47530-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463898675,
+   "handle": "grs-20428",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819623890995,
+   "sampleSku": "GRS-20428",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463931443,
+   "handle": "grs-20429",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819625300019,
+   "sampleSku": "GRS-20429",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492463996979,
+   "handle": "grs-20430",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819625332787,
+   "sampleSku": "GRS-20430",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502314397808,
+   "handle": "cretano-prt-74028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, contact-for-price, Cretano, Dark Gray, display_variant, Fabric, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Purple, Showroom Line, Stripe, Texture, Textured, Traditional, Transitional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986611331184,
+   "sampleSku": "PRT-74028-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502314627184,
+   "handle": "cretano-prt-74029",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Cretano, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986613526640,
+   "sampleSku": "PRT-74029-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464029747,
+   "handle": "grs-20431",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819625365555,
+   "sampleSku": "GRS-20431",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499795030128,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, LEED, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956464115824,
+   "sampleSku": "XWY-53183-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499795718256,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53184",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956466737264,
+   "sampleSku": "XWY-53184-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499805319280,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53186",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Light Blue, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956534304880,
+   "sampleSku": "XWY-53186-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499806040176,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53187",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956541120624,
+   "sampleSku": "XWY-53187-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499807744112,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53189",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956552523888,
+   "sampleSku": "XWY-53189-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499808694384,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53190",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956558618736,
+   "sampleSku": "XWY-53190-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499809579120,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53191",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Putty, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956566155376,
+   "sampleSku": "XWY-53191-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499810332784,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956571529328,
+   "sampleSku": "XWY-53192-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7716428841011,
+   "handle": "cubist-charcoal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, cubist, decor wallcovering, display_variant, ew15018-985, geometric, Gray, Grey, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, Office, paper, Phillipe Romano, print, Showroom Line, Smoke Grey, Sophisticated, Taupe, texture, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43769209913395,
+   "sampleSku": "DWWC-508490-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568945203,
+   "handle": "dwrt-5039-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antique Gold, Architectural, Art Deco, Beige, Class A Fire Rated, Commercial, contact-for-price, Cubist Fantasy, display_variant, Eggshell, Fabric, Geometric, Gold, Hallway, Lattice, Light Grey, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, Office, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Sophisticated, Trending Wallcovering Collection 2024, Wallcovering, White, Yellow",
+   "sampleVariantId": 42827599806515,
+   "sampleSku": "DWRT-5039F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568977971,
+   "handle": "dwrt-5040-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cubist Fantasy, display_variant, Eggshell, Fabric, Geometric, Gray, Grey, Hallway, Light Grey, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, Office, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827599839283,
+   "sampleSku": "DWRT-5040F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464062515,
+   "handle": "grs-20432",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819625398323,
+   "sampleSku": "GRS-20432",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464095283,
+   "handle": "grs-20433",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, stripe, Texture, textured, Traditional, Wallcovering, White, woven",
+   "sampleVariantId": 31819626315827,
+   "sampleSku": "GRS-20433",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464128051,
+   "handle": "grs-20434",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819626938419,
+   "sampleSku": "GRS-20434",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499887730800,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53330",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957113380976,
+   "sampleSku": "XWT-53330-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499897659504,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53336",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Light Gray, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Solid, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957190221936,
+   "sampleSku": "XWT-53336-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499898216560,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53338",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957201199216,
+   "sampleSku": "XWT-53338-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499855683696,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53263",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13956883841136,
+   "sampleSku": "XWC-53263-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499856207984,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53264",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956885348464,
+   "sampleSku": "XWC-53264-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499856732272,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53265",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Light Beige, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Wallcovering, WALLCOVERING : Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13956890034288,
+   "sampleSku": "XWC-53265-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499857879152,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53267",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956898095216,
+   "sampleSku": "XWC-53267-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567634483,
+   "handle": "dwrt-5005-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Bedroom, Botanical, Champagne, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Damask, Dear Deer Damask, Deer, display_variant, Edwardian, Eggshell, Fabric, Fauna, Gold, Gray, Hallway, Leaf, Leaves, Living Room, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Silver, Traditional, Trees, Trending Wallcovering Collection 2024, Wallcovering, White, Yellow",
+   "sampleVariantId": 42827598233651,
+   "sampleSku": "DWRT-5005F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567700019,
+   "handle": "dwrt-5006-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Charcoal Grey, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Green, Hallway, Leaf, Leaves, Living Room, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Screen Print, Screen Prints, Seafoam Green, Serene, Showroom Line, Traditional, Trees, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598299187,
+   "sampleSku": "DWRT-5006F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567732787,
+   "handle": "dwrt-5007-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Bedroom, Blue, Bone, Botanical, Burnt Sienna, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Fabric, Fauna, Leaves, Navy, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Room, Screen Print, Screen Prints, Showroom Line, Teal, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827598331955,
+   "sampleSku": "DWRT-5007F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567765555,
+   "handle": "dwrt-5008-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Bedroom, Botanical, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dark Gray, Dear Deer Damask, Deer, Dining Room, display_variant, Eggshell, Fabric, Fauna, Gray, Grey, Leaf, Leaves, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Teal, Traditional, Trees, Trending Wallcovering Collection 2024, Victorian, Wallcovering",
+   "sampleVariantId": 42827598364723,
+   "sampleSku": "DWRT-5008F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567798323,
+   "handle": "dwrt-5009-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Green, Hallway, Leaf, Leaves, Light Beige, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827598397491,
+   "sampleSku": "DWRT-5009F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567831091,
+   "handle": "dwrt-5010-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Fauna, Juniper, Leaf, Leaves, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Pale Green, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pine, Powder Blue, Powder Room, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Silver, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827598430259,
+   "sampleSku": "DWRT-5010F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567863859,
+   "handle": "dwrt-5011-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Lavender, Leaves, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Purple, Screen Print, Screen Prints, Serene, Showroom Line, Silver, Trees, Trending Wallcovering Collection 2024, Victorian, Wallcovering, White",
+   "sampleVariantId": 42827598463027,
+   "sampleSku": "DWRT-5011F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567896627,
+   "handle": "dwrt-5012-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Dusty Blue, Eggshell, Fabric, Fauna, Leaves, Light Gray, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Room, Screen Print, Screen Prints, Serene, Showroom Line, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827598495795,
+   "sampleSku": "DWRT-5012F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567929395,
+   "handle": "dwrt-5013-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, Dining Room, display_variant, Dusty Rose, Edwardian, Eggshell, Fabric, Fauna, Leaves, Living Room, Needs-Image, Needs-Price, Needs-Width, Off White, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Scenic, Screen Print, Screen Prints, Serene, Showroom Line, Tan, Trees, Trending Wallcovering Collection 2024, Victorian, Wallcovering",
+   "sampleVariantId": 42827598528563,
+   "sampleSku": "DWRT-5013F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567962163,
+   "handle": "dwrt-5014-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Fauna, Hallway, Leaf, Living Room, Needs-Image, Needs-Price, Needs-Width, Novelty, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Silver, Trending Wallcovering Collection 2024, Victorian, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827598561331,
+   "sampleSku": "DWRT-5014F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567994931,
+   "handle": "dwrt-5015-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Damask, Dear Deer Damask, Deer, display_variant, Eggshell, Fabric, Fauna, Green, Hallway, Leaf, Leaves, Light Gray, Needs-Image, Needs-Price, Needs-Width, Nursery, Olive Green, Pale Yellow, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Tree, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827598594099,
+   "sampleSku": "DWRT-5015F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499810988144,
+   "handle": "deerfield-stain-repellent-real-textile-walls-xwy-53193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956573560944,
+   "sampleSku": "XWY-53193-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499812331632,
+   "handle": "deerfield-stain-repellent-real-textile-walls-xwc-53195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Brown, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Stripe, Taupe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956584996976,
+   "sampleSku": "XWC-53195-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499812921456,
+   "handle": "deerfield-stain-repellent-real-textile-walls-xwc-53196",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956586471536,
+   "sampleSku": "XWC-53196-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502315675760,
+   "handle": "del-amore-prt-74035",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Fabric, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13986631712880,
+   "sampleSku": "PRT-74035-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464226355,
+   "handle": "grs-20435",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819627397171,
+   "sampleSku": "GRS-20435",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464291891,
+   "handle": "grs-20436",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628511283,
+   "sampleSku": "GRS-20436",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464390195,
+   "handle": "grs-20437",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819628544051,
+   "sampleSku": "GRS-20437",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464488499,
+   "handle": "grs-20438",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628740659,
+   "sampleSku": "GRS-20438",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464521267,
+   "handle": "grs-20439",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819628773427,
+   "sampleSku": "GRS-20439",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464554035,
+   "handle": "grs-20440",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628806195,
+   "sampleSku": "GRS-20440",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464586803,
+   "handle": "grs-20441",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628838963,
+   "sampleSku": "GRS-20441",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464619571,
+   "handle": "grs-20442",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628871731,
+   "sampleSku": "GRS-20442",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464685107,
+   "handle": "grs-20443",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819628937267,
+   "sampleSku": "GRS-20443",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464717875,
+   "handle": "grs-20444",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819628970035,
+   "sampleSku": "GRS-20444",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464783411,
+   "handle": "grs-20446",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819629035571,
+   "sampleSku": "GRS-20446",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499884159088,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53322",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Light Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957087559792,
+   "sampleSku": "XWT-53322-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499884650608,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53323",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Lattice, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957089034352,
+   "sampleSku": "XWT-53323-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499885109360,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53324",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957092049008,
+   "sampleSku": "XWT-53324-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499885600880,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53325",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957096702064,
+   "sampleSku": "XWT-53325-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499885928560,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53326",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957097816176,
+   "sampleSku": "XWT-53326-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499886387312,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53327",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Linen, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957101453424,
+   "sampleSku": "XWT-53327-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464816179,
+   "handle": "grs-20447",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Yellow, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819629068339,
+   "sampleSku": "GRS-20447",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464881715,
+   "handle": "grs-20449",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819629133875,
+   "sampleSku": "GRS-20449",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464914483,
+   "handle": "grs-20450",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Tropical, Wallcovering, Woven",
+   "sampleVariantId": 31819629166643,
+   "sampleSku": "GRS-20450",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492464947251,
+   "handle": "grs-20451",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819629199411,
+   "sampleSku": "GRS-20451",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465012787,
+   "handle": "grs-20452",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819629297715,
+   "sampleSku": "GRS-20452",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465045555,
+   "handle": "grs-20453",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629330483,
+   "sampleSku": "GRS-20453",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465078323,
+   "handle": "grs-20454",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629363251,
+   "sampleSku": "GRS-20454",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465111091,
+   "handle": "grs-20455",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629396019,
+   "sampleSku": "GRS-20455",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465143859,
+   "handle": "grs-20456",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, textured, Wallcovering, White",
+   "sampleVariantId": 31819629428787,
+   "sampleSku": "GRS-20456",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465176627,
+   "handle": "grs-20457",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819629461555,
+   "sampleSku": "GRS-20457",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1497952714864,
+   "handle": "elena-real-felt-type-2-flt-73339",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Green, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Teal, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933486964848,
+   "sampleSku": "FLT-73339-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465209395,
+   "handle": "grs-20458",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Tropical, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819629494323,
+   "sampleSku": "GRS-20458",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465242163,
+   "handle": "grs-20459",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629527091,
+   "sampleSku": "GRS-20459",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465274931,
+   "handle": "grs-20460",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629559859,
+   "sampleSku": "GRS-20460",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465340467,
+   "handle": "grs-20461",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819629625395,
+   "sampleSku": "GRS-20461",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465373235,
+   "handle": "grs-20462",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629658163,
+   "sampleSku": "GRS-20462",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465406003,
+   "handle": "grs-20463",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819629690931,
+   "sampleSku": "GRS-20463",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465438771,
+   "handle": "grs-20464",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819629723699,
+   "sampleSku": "GRS-20464",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465471539,
+   "handle": "grs-20465",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819629756467,
+   "sampleSku": "GRS-20465",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465504307,
+   "handle": "grs-20466",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819629789235,
+   "sampleSku": "GRS-20466",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465537075,
+   "handle": "grs-20467",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Wallcovering, White, Woven",
+   "sampleVariantId": 31819629822003,
+   "sampleSku": "GRS-20467",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465569843,
+   "handle": "grs-20468",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Teal, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819629854771,
+   "sampleSku": "GRS-20468",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882874884147,
+   "handle": "dwjj-40190-emilia",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Commercial, contact-for-price, Contemporary, display_variant, Emilia, Emilia Grasscloth Naturals, grasscloth, Grasscloth Texture, Gray, Light Gray, Minimalist, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Silver, String, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 41180286025779,
+   "sampleSku": "DWJJ-40190-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465602611,
+   "handle": "grs-20469",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Gray, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 31819629920307,
+   "sampleSku": "GRS-20469",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465668147,
+   "handle": "grs-20470",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Brown, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Multi, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, textured, Wallcovering, White, woven",
+   "sampleVariantId": 31819629953075,
+   "sampleSku": "GRS-20470",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465700915,
+   "handle": "grs-20471",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819629985843,
+   "sampleSku": "GRS-20471",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465733683,
+   "handle": "grs-20472",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630018611,
+   "sampleSku": "GRS-20472",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936752914483,
+   "handle": "xty-949039-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcoverings, contact-for-price, display_variant, Durable Vinyl, Durable Vinyls, Enzo Embossed Linen Durable Vinyl, Hospitality Wallcoverings, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Purchasing Agency, Rustic, Showroom Line, Tan, Textured, Traditional, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354068983859,
+   "sampleSku": "XTY-949039-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465799219,
+   "handle": "grs-20473",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Ecru, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Wallcovering, Woven",
+   "sampleVariantId": 31819630215219,
+   "sampleSku": "GRS-20473",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465864755,
+   "handle": "grs-20474",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Brown, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819630280755,
+   "sampleSku": "GRS-20474",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465897523,
+   "handle": "grs-20475",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sand, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819630313523,
+   "sampleSku": "GRS-20475",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465930291,
+   "handle": "grs-20476",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819630346291,
+   "sampleSku": "GRS-20476",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465963059,
+   "handle": "grs-20477",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819630379059,
+   "sampleSku": "GRS-20477",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492465995827,
+   "handle": "grs-20478",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630411827,
+   "sampleSku": "GRS-20478",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466028595,
+   "handle": "grs-20479",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Ecru, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630444595,
+   "sampleSku": "GRS-20479",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466061363,
+   "handle": "grs-20480",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630477363,
+   "sampleSku": "GRS-20480",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466094131,
+   "handle": "grs-20481",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819630510131,
+   "sampleSku": "GRS-20481",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466126899,
+   "handle": "grs-20482",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819630542899,
+   "sampleSku": "GRS-20482",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466159667,
+   "handle": "grs-20483",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630575667,
+   "sampleSku": "GRS-20483",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1497962217584,
+   "handle": "fabriola-textile-wallpaper-twb-73395",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Cocoa, Commercial, Commercial Wallcovering, contact-for-price, Cotton, display_variant, Eggshell, Fabric, Fabriola Textile, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933591625840,
+   "sampleSku": "TWB-73395-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466192435,
+   "handle": "grs-20484",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Orange, Phillipe Romano, Showroom Line, Texture, Textured, Tropical, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630673971,
+   "sampleSku": "GRS-20484",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466225203,
+   "handle": "grs-20485",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Champagne, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819630706739,
+   "sampleSku": "GRS-20485",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466257971,
+   "handle": "grs-20486",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819630739507,
+   "sampleSku": "GRS-20486",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500597977200,
+   "handle": "faguli-real-cork-cork-34176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, contact-for-price, Cork, Cream, display_variant, Gray, Industrial, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13966380367984,
+   "sampleSku": "CORK-34176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500599713904,
+   "handle": "faguli-real-cork-cork-34181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, contact-for-price, Cork, display_variant, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering, White",
+   "sampleVariantId": 13966396293232,
+   "sampleSku": "CORK-34181-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500600402032,
+   "handle": "faguli-real-cork-cork-34184",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cork, display_variant, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13966404485232,
+   "sampleSku": "CORK-34184-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570026547,
+   "handle": "dwrt-5066-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eggshell, Fabric, Fan Flower, Floral, Grandmillennial, Light Pink, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Pale Pink, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Screen Print, Screen Prints, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Warm",
+   "sampleVariantId": 42827601477683,
+   "sampleSku": "DWRT-5066F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570059315,
+   "handle": "dwrt-5067-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, Bedroom, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eggshell, English Country, Fabric, Fan Flower, Floral, Grandmillennial, Light Blue, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Off White, Pale Green, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Steel Blue, Teal, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827601510451,
+   "sampleSku": "DWRT-5067F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570092083,
+   "handle": "dwrt-5068-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Dusty Blue, Eggshell, Fabric, Fan Flower, Floral, Grandmillennial, Hallway, Light Blue, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Non-woven, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Slate Gray, Traditional, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827601543219,
+   "sampleSku": "DWRT-5068F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570157619,
+   "handle": "dwrt-5069-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eggshell, Fabric, Fan Flower, Floral, Grandmillennial, Hot Pink, Light Pink, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Orange, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Playful, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827601674291,
+   "sampleSku": "DWRT-5069F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570223155,
+   "handle": "dwrt-5070-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, Arts & Crafts, Bedroom, Botanical, Champagne, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, display_variant, Dusty Rose, Eggshell, Fabric, Fan Flower, Floral, Grandmillennial, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Pale Beige, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Yellow",
+   "sampleVariantId": 42827601707059,
+   "sampleSku": "DWRT-5070F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570321459,
+   "handle": "dwrt-5071-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dining Room, display_variant, Eggshell, Fabric, Fan Flower, Floral, Grandmillennial, Green, Leaf, Living Room, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage Green, Screen Print, Screen Prints, Showroom Line, Slate Blue, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827601739827,
+   "sampleSku": "DWRT-5071F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570386995,
+   "handle": "dwrt-5072-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Arts & Crafts, Bedroom, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Dining Room, display_variant, Eggshell, Fabric, Fan Flower, Floral, Gold, Grandmillennial, Green, Living Room, Needs-Image, Needs-Price, Needs-Width, Olive Green, Pale Green, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, White, Yellow",
+   "sampleVariantId": 42827601772595,
+   "sampleSku": "DWRT-5072F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570452531,
+   "handle": "dwrt-5073-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cornflower Blue, Dining Room, display_variant, Eggshell, Fabric, Fan Flower, Floral, Ivory, Light Blue, Living Room, Mustard Yellow, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 42827601805363,
+   "sampleSku": "DWRT-5073F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570583603,
+   "handle": "dwrt-5074-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eggshell, English Country, Fabric, Fan Flower, Floral, Hallway, Light Blue, Living Room, Navy, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Steel Blue, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827601936435,
+   "sampleSku": "DWRT-5074F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570616371,
+   "handle": "dwrt-5075-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dining Room, display_variant, Eggshell, Fabric, Fan Flower, Floral, Living Room, Magenta, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Purple, Screen Print, Screen Prints, Showroom Line, Teal, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Warm, White",
+   "sampleVariantId": 42827602100275,
+   "sampleSku": "DWRT-5075F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466290739,
+   "handle": "grs-20487",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819630772275,
+   "sampleSku": "GRS-20487",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466356275,
+   "handle": "grs-20488",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Slate, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630903347,
+   "sampleSku": "GRS-20488",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466389043,
+   "handle": "grs-20489",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819630936115,
+   "sampleSku": "GRS-20489",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466454579,
+   "handle": "grs-20490",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Fabric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819630968883,
+   "sampleSku": "GRS-20490",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466520115,
+   "handle": "grs-20491",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Wallcovering, Woven",
+   "sampleVariantId": 31819631657011,
+   "sampleSku": "GRS-20491",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466585651,
+   "handle": "grs-20492",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819632607283,
+   "sampleSku": "GRS-20492",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466651187,
+   "handle": "grs-20493",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819632672819,
+   "sampleSku": "GRS-20493",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466683955,
+   "handle": "grs-20494",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, display_variant, Exposition Collection, Fabric, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Sand, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819632705587,
+   "sampleSku": "GRS-20494",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466716723,
+   "handle": "grs-20495",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Tropical, Wallcovering, White, Woven",
+   "sampleVariantId": 31819632738355,
+   "sampleSku": "GRS-20495",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466782259,
+   "handle": "grs-20496",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Light Brown, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819632803891,
+   "sampleSku": "GRS-20496",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466815027,
+   "handle": "grs-20497",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 31819632836659,
+   "sampleSku": "GRS-20497",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466847795,
+   "handle": "grs-20498",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, contact-for-price, Contemporary, Dark Brown, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Pink, Showroom Line, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819632869427,
+   "sampleSku": "GRS-20498",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569141811,
+   "handle": "dwrt-5045-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Beige, Biophilic, Class A Fire Rated, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Fabric, Fifino Feather, Gold, Golden Brown, Hallway, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, smooth, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827600003123,
+   "sampleSku": "DWRT-5045F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569207347,
+   "handle": "dwrt-5046-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Fabric, Fifino Feather, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Silver, smooth, Teal, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827600134195,
+   "sampleSku": "DWRT-5046F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569240115,
+   "handle": "dwrt-5047-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Fifino Feather, Hallway, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Purple, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827600166963,
+   "sampleSku": "DWRT-5047F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569272883,
+   "handle": "dwrt-5048-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Fabric, Fifino Feather, Living Room, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, smooth, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827600199731,
+   "sampleSku": "DWRT-5048F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569305651,
+   "handle": "dwrt-5049-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Brushstroke, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Dusty Rose, Eggshell, Fabric, Fifino Feather, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827600232499,
+   "sampleSku": "DWRT-5049F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569403955,
+   "handle": "dwrt-5050-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, contemporary, Cream, display_variant, Eggshell, Fabric, Fifino Feather, Green, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Sage Green, Screen Print, Screen Prints, Showroom Line, smooth, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827600265267,
+   "sampleSku": "DWRT-5050F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569469491,
+   "handle": "dwrt-5051-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Fifino Feather, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Pale Blue, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Seafoam Green, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827600298035,
+   "sampleSku": "DWRT-5051F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466880563,
+   "handle": "grs-20499",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819632902195,
+   "sampleSku": "GRS-20499",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466913331,
+   "handle": "grs-20500",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Metallic, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819632934963,
+   "sampleSku": "GRS-20500",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492466946099,
+   "handle": "grs-20501",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819632967731,
+   "sampleSku": "GRS-20501",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467011635,
+   "handle": "grs-20502",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, contact-for-price, contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Green, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, stripe, Texture, textured, Wallcovering",
+   "sampleVariantId": 31819633131571,
+   "sampleSku": "GRS-20502",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467044403,
+   "handle": "grs-20503",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Ivory, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819633164339,
+   "sampleSku": "GRS-20503",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467077171,
+   "handle": "grs-20504",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633197107,
+   "sampleSku": "GRS-20504",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467142707,
+   "handle": "grs-20506",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, Exposition Collection, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633262643,
+   "sampleSku": "GRS-20506",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467175475,
+   "handle": "grs-20507",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633295411,
+   "sampleSku": "GRS-20507",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467208243,
+   "handle": "grs-20508",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Fiorentina Natural Wallcovering, Grasscloth, Grasscloth Texture, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Tropical, Wallcovering, Yellow",
+   "sampleVariantId": 31819633328179,
+   "sampleSku": "GRS-20508",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467241011,
+   "handle": "grs-20509",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Coastal, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Fiorenza Natural Wallcovering, Grasscloth, Grasscloth Texture, Light Beige, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633360947,
+   "sampleSku": "GRS-20509",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467306547,
+   "handle": "grs-20510",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819633426483,
+   "sampleSku": "GRS-20510",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467339315,
+   "handle": "grs-20511",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633459251,
+   "sampleSku": "GRS-20511",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645235251,
+   "handle": "floral-serenade-apricot-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "apricot, Architectural, Bedroom, Beige, Bird, birds, botanical, Champagne, Chinoiserie, Class A Fire Rated, clematis, Colorful, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Decorative, decorative-papers-ii, Dining Room, display_variant, floral, floral-serenade, Gold, Grandmillennial, half-drop, Living Room, Nature, Needs-Image, Needs-Price, Needs-Width, Paper, paste-the-wall, Pattern, Peach, peonies, Purple, Residential, Showroom Line, strippable, Taupe, Traditional, tropical, Vintage, wallcovering, Warm, washable, watercolour, White",
+   "sampleVariantId": 43717825953843,
+   "sampleSku": "DWWC-504910-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645268019,
+   "handle": "floral-serenade-sky-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bird, birds, blue, Bohemian, Botanical, Chinoiserie, Class A Fire Rated, clematis, Commercial, contact-for-price, Contemporary, Cottagecore, Dark Green, decorative-papers-ii, Dining Room, display_variant, Eclectic, floral, floral-serenade, Gold, Grandmillennial, Light Blue, Light Brown, Light Pink, Living Room, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Non-woven, paste-the-wall, Pattern, peonies, Powder Blue, Sage Green, Serene, Showroom Line, Silver, sky-blue, strippable, Traditional, tropical, V&A Decorative Papers Ii, wallcovering, washable, watercolour, White, Yellow",
+   "sampleVariantId": 43717826052147,
+   "sampleSku": "DWWC-504920-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645366323,
+   "handle": "flower-meadow-celeste-turquoise-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aqua, Architectural, arts-and-crafts, Bathroom, Bedroom, Blue, bluebells, Botanical, celeste, Class A Fire Rated, Colorful, Commercial, contact-for-price, Contemporary, Cottagecore, daisies, dandelion, decorative-papers-ii, Dining Room, display_variant, dulce-domum, English Country, floral, flower-meadow, Gold, Grandmillennial, Hallway, Light Blue, lilac, Living Room, Luxury, Maximalist, meadow, Multi, Mustard Yellow, Navy, Needs-Image, Needs-Price, Needs-Width, ochre, Olive Green, Paper, paste-the-wall, Pattern, Periwinkle, Purple, Residential, Serene, Showroom Line, strippable, sweet-home, Teal, traditional, turquoise, Victorian, wallcovering, walter-crane, washable, white, wildflower, Yellow",
+   "sampleVariantId": 43717826183219,
+   "sampleSku": "DWWC-504940-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645399091,
+   "handle": "flower-meadow-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, arts-and-crafts, Bedroom, bluebells, Botanical, Burgundy, Burnt Sienna, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, cream, daisies, dandelion, decorative-papers-ii, Dining Room, display_variant, dulce-domum, Dusty Rose, Eggshell, floral, flower-meadow, Living Room, meadow, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, Organic, Paper, Pattern, Pink, Purple, Red, Red-Pink, Sage Green, Showroom Line, sweet-home, Taupe, traditional, V&A Decorative Papers Ii, Victorian, wallcovering, walter-crane, wildflower, Yellow",
+   "sampleVariantId": 43717826215987,
+   "sampleSku": "DWWC-504950-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645431859,
+   "handle": "flower-meadow-forest-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, arts-and-crafts, Bedroom, bluebells, Botanical, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, daisies, dandelion, Dark Teal, decorative-papers-ii, Dining Room, display_variant, dulce-domum, Dusty Rose, floral, flower-meadow, forest-green, Gold, Golden Yellow, Grandmillennial, Green, half-drop, Light Blue, Living Room, meadow, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Organic, Paper, Pattern, Pink, Sage, Sage Green, Showroom Line, Sky Blue, strippable, Traditional, V&A Decorative Papers Ii, Victorian, wallcovering, walter-crane, washable, White, wildflower, woodland",
+   "sampleVariantId": 43717826248755,
+   "sampleSku": "DWWC-504960-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1497965199472,
+   "handle": "fortuna-textile-wallpaper-twd-73413",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Fortuna Textile, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13933623967856,
+   "sampleSku": "TWD-73413-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1497966116976,
+   "handle": "fortuna-textile-wallpaper-twd-73419",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Fortuna Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933636059248,
+   "sampleSku": "TWD-73419-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467372083,
+   "handle": "grs-20512",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Butter, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31819633492019,
+   "sampleSku": "GRS-20512",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467404851,
+   "handle": "grs-20513",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819633524787,
+   "sampleSku": "GRS-20513",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499960836208,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53543",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958170148976,
+   "sampleSku": "XWL-53543-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499961032816,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53544",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958173491312,
+   "sampleSku": "XWL-53544-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499961327728,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53545",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958177882224,
+   "sampleSku": "XWL-53545-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499961622640,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53546",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958179946608,
+   "sampleSku": "XWL-53546-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499961917552,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53547",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958185320560,
+   "sampleSku": "XWL-53547-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499962114160,
+   "handle": "fruitland-stain-repellent-real-textile-walls-xwl-53548",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958190792816,
+   "sampleSku": "XWL-53548-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500584018032,
+   "handle": "fukaura-durable-vinyl-xrm-34132",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966225899632,
+   "sampleSku": "XRM-34132-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500585525360,
+   "handle": "fukaura-durable-vinyl-xrm-34138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966243266672,
+   "sampleSku": "XRM-34138-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499597570160,
+   "handle": "fulton-stain-repellent-real-textile-walls-xws-52809",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13954873524336,
+   "sampleSku": "XWS-52809-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499597865072,
+   "handle": "fulton-stain-repellent-real-textile-walls-xws-52810",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, contemporary, display_variant, Eggshell, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, stripe, textured, Wallcovering, WALLCOVERING : Wallcovering, woven",
+   "sampleVariantId": 13954874540144,
+   "sampleSku": "XWS-52810-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499598356592,
+   "handle": "fulton-stain-repellent-real-textile-walls-xws-52811",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Gray, display_variant, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13954880176240,
+   "sampleSku": "XWS-52811-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499598749808,
+   "handle": "fulton-stain-repellent-real-textile-walls-xws-52812",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13954882994288,
+   "sampleSku": "XWS-52812-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467437619,
+   "handle": "grs-20514",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31819633557555,
+   "sampleSku": "GRS-20514",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467470387,
+   "handle": "grs-20515",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31819633590323,
+   "sampleSku": "GRS-20515",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467503155,
+   "handle": "grs-20516",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Geometric, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31819633623091,
+   "sampleSku": "GRS-20516",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467535923,
+   "handle": "grs-20517",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Commercial, contact-for-price, display_variant, Exposition Collection, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 31819633655859,
+   "sampleSku": "GRS-20517",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467568691,
+   "handle": "grs-20518",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633688627,
+   "sampleSku": "GRS-20518",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467634227,
+   "handle": "grs-20519",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Cream, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 31819633852467,
+   "sampleSku": "GRS-20519",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467699763,
+   "handle": "grs-20520",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Commercial, contact-for-price, Contemporary, display_variant, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Lattice, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Sage, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633918003,
+   "sampleSku": "GRS-20520",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4492467765299,
+   "handle": "grs-20521",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Exposition Collection, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 31819633950771,
+   "sampleSku": "GRS-20521",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502356996208,
+   "handle": "georgio-suede-prt-74216",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Solid, Suede, Taupe, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987280453744,
+   "sampleSku": "PRT-74216-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502357192816,
+   "handle": "georgio-suede-prt-74217",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Suede, Tan, Textured, Traditional, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987281240176,
+   "sampleSku": "PRT-74217-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502357651568,
+   "handle": "georgio-suede-prt-74219",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Suede, Taupe, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987292086384,
+   "sampleSku": "PRT-74219-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882876588083,
+   "handle": "dwjj-40650-giorgio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Giorgio, Giorgio Mural Naturals, Grasscloth, Light Gray, Mural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 41180289040435,
+   "sampleSku": "DWJJ-40650-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7708474703923,
+   "handle": "glaze-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Beige, blue, Camellia, camellia-collection, Class A Fire Rated, Commercial, contact-for-price, Contemporary, crackle, Dark Gray, denim, display_variant, Geometric, glasshouse, glaze, Hallway, Light Blue, Minimalist, Needs-Image, Needs-Price, Needs-Width, Non-Woven, pattern, Peacock, Serene, Showroom Line, Sky Blue, straight-match, surface-print, Texture, victorian, Vinyl, wallcovering, White",
+   "sampleVariantId": 43741164568627,
+   "sampleSku": "DWWC-507920-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499330773104,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49253",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Stripe, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13950575870064,
+   "sampleSku": "XUX-49253-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499331035248,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49254",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13950583537776,
+   "sampleSku": "XUX-49254-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500969205872,
+   "handle": "grand-dame-by-pr-rwy-55149",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Gray, material-group-metallic-foil, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970645844080,
+   "sampleSku": "RWY-55149-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500972089456,
+   "handle": "grand-dame-by-pr-rwy-55157",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Fretwork, Geometric, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970686214256,
+   "sampleSku": "RWY-55157-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500974121072,
+   "handle": "grand-dame-by-pr-rwy-55162",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Off-White, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970711216240,
+   "sampleSku": "RWY-55162-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500974612592,
+   "handle": "grand-dame-by-pr-rwy-55163",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, contact-for-price, display_variant, Linen, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Tan, Textured, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970712821872,
+   "sampleSku": "RWY-55163-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500976054384,
+   "handle": "grand-dame-by-pr-rwy-55166",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Light Blue, material-group-grasscloth, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970734383216,
+   "sampleSku": "RWY-55166-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500977299568,
+   "handle": "grand-dame-by-pr-rwy-55168",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Tan, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970751619184,
+   "sampleSku": "RWY-55168-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500979429488,
+   "handle": "grand-dame-by-pr-rwy-55173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Commercial, contact-for-price, Contemporary, display_variant, Gold, Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Teal, Usually In Stock, Wallcovering, Yellow",
+   "sampleVariantId": 13970779832432,
+   "sampleSku": "RWY-55173-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500979822704,
+   "handle": "grand-dame-by-pr-rwy-55174",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, Cream, display_variant, Geometric, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Steel, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970788974704,
+   "sampleSku": "RWY-55174-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500980641904,
+   "handle": "grand-dame-by-pr-rwy-55176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Commercial, contact-for-price, display_variant, Ecru, Geometric, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Tan, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970801066096,
+   "sampleSku": "RWY-55176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500983459952,
+   "handle": "grand-dame-by-pr-rwy-55183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Botanical, Commercial, contact-for-price, Contemporary, Cream, display_variant, Gold, Leaf, Needs-Image, Needs-Price, Needs-Width, Pale Blue, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, Yellow",
+   "sampleVariantId": 13970838552688,
+   "sampleSku": "RWY-55183-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500983951472,
+   "handle": "grand-dame-by-pr-rwy-55184",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, contact-for-price, display_variant, Eggshell, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Sage, Sage Green, Showroom Line, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970847563888,
+   "sampleSku": "RWY-55184-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500984410224,
+   "handle": "grand-dame-by-pr-rwy-55185",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Botanical, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Gray, Greige, Leaf, material-group-metallic-foil, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Taupe, Textured, Usually In Stock, Wallcovering, Walnut",
+   "sampleVariantId": 13970852282480,
+   "sampleSku": "RWY-55185-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500985983088,
+   "handle": "grand-dame-by-pr-rwy-55188",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970870042736,
+   "sampleSku": "RWY-55188-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500986835056,
+   "handle": "grand-dame-by-pr-rwy-55190",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Commercial, contact-for-price, Contemporary, display_variant, Gray, Light Gray, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Teal, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970876989552,
+   "sampleSku": "RWY-55190-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500988047472,
+   "handle": "grand-dame-by-pr-rwy-55194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Botanical, Commercial, contact-for-price, display_variant, Green, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Sage, Showroom Line, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970897698928,
+   "sampleSku": "RWY-55194-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500988932208,
+   "handle": "grand-dame-by-pr-rwy-55196",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, Botanical, Commercial, contact-for-price, Cream, display_variant, Eggshell, Gold, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Traditional, Usually In Stock, Wallcovering, White, Yellow",
+   "sampleVariantId": 13970912116848,
+   "sampleSku": "RWY-55196-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500989292656,
+   "handle": "grand-dame-by-pr-rwy-55197",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Off-White, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970914836592,
+   "sampleSku": "RWY-55197-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500990799984,
+   "handle": "grand-dame-by-pr-rwy-55201",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, contact-for-price, Contemporary, Cream, display_variant, Green, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Sage, Showroom Line, Wallcovering, White",
+   "sampleVariantId": 13970933121136,
+   "sampleSku": "RWY-55201-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495942856816,
+   "handle": "grasses-weaves-micas-grs-38080",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Bedroom, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Ecru, Geometric, Grasscloth, Light Blue, Lightblue, Living Room, Mica, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Scandinavian, Showroom Line, Silver, Spa, Stripe, Textural, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13909070151792,
+   "sampleSku": "GRS-38080-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495943282800,
+   "handle": "grasses-weaves-micas-grs-38081",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Blue, Brown, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Entryway, Geometric, Grasscloth, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Sand, Showroom Line, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909072380016,
+   "sampleSku": "GRS-38081-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499456536688,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwd-52192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Capiz, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Gray, Leed Walls, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Stripe, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13952667811952,
+   "sampleSku": "XWD-52192-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499457454192,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52196",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Capiz, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Leed Walls, Mfr-Image-Refreshed, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Silver, Specialty Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13952683933808,
+   "sampleSku": "XWF-52196-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499457650800,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52197",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Capiz, Commercial, contact-for-price, Contemporary, Cream, display_variant, Grasscloth, Leed Walls, Mfr-Image-Refreshed, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Specialty Wallcovering, Stripe, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13952685899888,
+   "sampleSku": "XWF-52197-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499457880176,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52198",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Camel, Capiz, Commercial, contact-for-price, Contemporary, display_variant, Gold, Grasscloth, Leed Walls, Mfr-Image-Refreshed, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Specialty Wallcovering, Stripe, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13952689274992,
+   "sampleSku": "XWF-52198-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499458142320,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52199",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Capiz, Commercial, contact-for-price, Contemporary, Dark Green, display_variant, Eggshell, Grasscloth, Leed Walls, Mfr-Image-Refreshed, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Specialty Wallcovering, Stripe, Teal, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13952696844400,
+   "sampleSku": "XWF-52199-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499458338928,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Capiz, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gold, Leed Walls, Metallic, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Specialty Wallcovering, Stripe, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13952700547184,
+   "sampleSku": "XWF-52200-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500056223856,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Capiz, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Silver, Stripe, Textured, Vinyl, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13959627931760,
+   "sampleSku": "XWF-52193-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936755699763,
+   "handle": "xty-949116-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Chevron, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, display_variant, Durable Vinyl, Durable Vinyls, Fabric, Geometric, Gregory Geometric Durable Vinyl, Hospitality Wallcoverings, Midnightblue, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Purchasing Agency, Showroom Line, Steelblue, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354072391731,
+   "sampleSku": "XTY-949116-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936755765299,
+   "handle": "xty-949118-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, contemporary, Contract Wallcovering, Cream, display_variant, Durable Vinyl, Durable Vinyls, geometric, Gray, Hospitality Wallcoverings, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Purchasing Agency, Showroom Line, textured, Vinyl, Wallcovering, White, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354072457267,
+   "sampleSku": "XTY-949118-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936755798067,
+   "handle": "xty-949119-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, Cream, display_variant, Durable Vinyl, Durable Vinyls, Eggshell, Geometric, Gregory Geometric Durable Vinyl, Hospitality Wallcoverings, Light Brown, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillipe Romano, Purchasing Agency, Showroom Line, Textured, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354072490035,
+   "sampleSku": "XTY-949119-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936755830835,
+   "handle": "xty-949120-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, Contract Wallcovering, display_variant, Durable Vinyl, Durable Vinyls, Geometric, Hospitality Wallcoverings, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Purchasing Agency, Showroom Line, Silver, Textured, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354072522803,
+   "sampleSku": "XTY-949120-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700947730483,
+   "handle": "grosvenor-eggshell-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, beiges, Champagne, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, Damask, damasks, decor wallcovering, Dining Room, display_variant, Eggshell, Grandmillennial, grosvenor, Light Beige, Living Room, Luxe, Needs-Image, Needs-Price, Needs-Width, Pale Beige, paper, Phillipe Romano, Scroll, scrolls, Showroom Line, Sophisticated, spongeable, straight-match, Stripe, textile-string-wallcovering, Traditional, Trending Wallcovering Collection 2025, Vinyl, Wallcovering, warm-neutrals, wet-removable, Yellow",
+   "sampleVariantId": 43722310287411,
+   "sampleSku": "DWWC-507210-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499903164528,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53355",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Dark Brown, display_variant, Fabric, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Wool",
+   "sampleVariantId": 13957265719408,
+   "sampleSku": "XWT-53355-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499903459440,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53356",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Gray, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Light Gray, Light Steelblue, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Transitional, Wallcovering, Wool",
+   "sampleVariantId": 13957269880944,
+   "sampleSku": "XWT-53356-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499904082032,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53358",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Wool",
+   "sampleVariantId": 13957274992752,
+   "sampleSku": "XWT-53358-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499904409712,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53359",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, Wool",
+   "sampleVariantId": 13957281022064,
+   "sampleSku": "XWT-53359-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499904704624,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53360",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Dark Brown, display_variant, Eggshell, Fabric, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Taupe, Textured, Traditional, Wallcovering, Wool",
+   "sampleVariantId": 13957283348592,
+   "sampleSku": "XWT-53360-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499904966768,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53361",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Textured, Traditional, Wallcovering, Wool",
+   "sampleVariantId": 13957286920304,
+   "sampleSku": "XWT-53361-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499905163376,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53362",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Gray, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, Wool, Woven",
+   "sampleVariantId": 13957292523632,
+   "sampleSku": "XWT-53362-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499905425520,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53363",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Gold, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Wool, Woven, Yellow",
+   "sampleVariantId": 13957296423024,
+   "sampleSku": "XWT-53363-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499905687664,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53364",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Wool",
+   "sampleVariantId": 13957299437680,
+   "sampleSku": "XWT-53364-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570649139,
+   "handle": "dwrt-5076-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Haley, Living Room, Needs-Image, Needs-Price, Needs-Width, Olive Drab, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Scale, Screen Print, Screen Prints, Serene, Showroom Line, Silver Gray, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827602133043,
+   "sampleSku": "DWRT-5076F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570681907,
+   "handle": "dwrt-5077-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Blue, Bone, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Haley, Light Turquoise, Navy, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Scale, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827602165811,
+   "sampleSku": "DWRT-5077F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570780211,
+   "handle": "dwrt-5078-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Haley, Lavender, Needs-Image, Needs-Price, Needs-Width, Non-woven, Nursery, Orchid, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Purple, Scale, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827602198579,
+   "sampleSku": "DWRT-5078F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570911283,
+   "handle": "dwrt-5079-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Blue, display_variant, Eggshell, Fabric, Green, Haley, Living Room, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage Green, Scale, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Vinyl, Wallcovering, Whimsical",
+   "sampleVariantId": 42827602231347,
+   "sampleSku": "DWRT-5079F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471570976819,
+   "handle": "dwrt-5080-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Haley, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Scale, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Steel Blue, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827602264115,
+   "sampleSku": "DWRT-5080F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471571009587,
+   "handle": "dwrt-5081-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Teal, display_variant, Eggshell, Fabric, Haley, Hallway, Living Room, Modern, Mustard Yellow, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Scale, Screen Print, Screen Prints, Showroom Line, Sophisticated, Trending Wallcovering Collection 2024, Vinyl, Wallcovering, Whimsical, Yellow",
+   "sampleVariantId": 42827602296883,
+   "sampleSku": "DWRT-5081F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471571075123,
+   "handle": "dwrt-5082-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Cream, display_variant, Eggshell, Fabric, Haley, Needs-Image, Needs-Price, Needs-Width, Nursery, Pale Pink, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Playful, Powder Room, Scale, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827602329651,
+   "sampleSku": "DWRT-5082F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471571107891,
+   "handle": "dwrt-5083-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Grey, Haley, Light Blue, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Scale, Screen Print, Screen Prints, Serene, Showroom Line, Teal, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827602362419,
+   "sampleSku": "DWRT-5083F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471571140659,
+   "handle": "dwrt-5084-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Blue, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gold, Haley, Hallway, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Scale, Screen Print, Screen Prints, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827602395187,
+   "sampleSku": "DWRT-5084F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495927914608,
+   "handle": "hank-s-horizontal-grasscloth-wall-paper-grs-38026",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Commercial, contact-for-price, Contemporary, display_variant, Ecru, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Kyoto Garden Natural Weaves, Light Grey Brown, Living Room, Minimalist, Modern, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Retail, Rustic, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13908989247600,
+   "sampleSku": "GRS-38026-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495928307824,
+   "handle": "hank-s-horizontal-grasscloth-wall-paper-grs-38027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Coastal, Commercial, contact-for-price, display_variant, Ecru, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Light Blue, Living Room, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Spa, Textural, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13908990001264,
+   "sampleSku": "GRS-38027-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699645464627,
+   "handle": "henley-alabaster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "alabaster, Architectural, Bedroom, beige, Champagne, Class A Fire Rated, Commercial, contact-for-price, cream, decorative-papers-iii, display_variant, Eggshell, Elegant, Hallway, henley, Ivory, Light Gray, Living Room, matt, natural-stone, Needs-Image, Needs-Price, Needs-Width, neutral, Organic, Pale Pink, plain, plaster-effect, Residential, Rustic, Showroom Line, Silver, Sophisticated, Stucco, Subtle, Taupe, texture, Textured, Traditional, Transitional, Vinyl, wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 43717826314291,
+   "sampleSku": "DWWC-504970-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7699646054451,
+   "handle": "henley-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "alabaster, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Dark Green, decorative-papers-iii, display_variant, Eggshell, Green, Hallway, henley, ivory, Light Sage, Living Room, material-group-grasscloth, Minimalist, natural, natural-stone, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-White, Pale Beige, Pale Green, Paper, paste-the-wall, plain, plaster-effect, Rustic Charm, Scandinavian, Serene, Showroom Line, Silver, stone, strippable, Stucco, texture, Textured, Traditional, Transitional, V&A Decorative Papers Iii, wallcovering, washable, White",
+   "sampleVariantId": 43717826969651,
+   "sampleSku": "DWWC-504980-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495864279152,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38045",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, ASTM E84 Class A, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Hilary's Horizontal Grasscloth, Hotel Lobby, Light Gray, Living Room, Minimalist, Natural, Natural on Green, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Silver, Stripe, Striped, Textured, Wallcovering, White",
+   "sampleVariantId": 13908427210864,
+   "sampleSku": "GRS-38045-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495929389168,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38029",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Coastal, Commercial, contact-for-price, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Tomato, Wallcovering, White, Woven",
+   "sampleVariantId": 13908995637360,
+   "sampleSku": "GRS-38029-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495929978992,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38030",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bone, Commercial, contact-for-price, Cream, display_variant, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Living Room, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Solid/Textural, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 13908996718704,
+   "sampleSku": "GRS-38030-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495930470512,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, display_variant, Entryway, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Light Brown, Lilac Pink Purple, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Silver, Textural, Textured, Traditional, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 13908998848624,
+   "sampleSku": "GRS-38031-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495930962032,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38032",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, Cream, Dining Room, display_variant, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Light Yellow, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Textural, Textured, Traditional, Wallcovering, Woven, Yellow Sun",
+   "sampleVariantId": 13909003174000,
+   "sampleSku": "GRS-38032-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495931453552,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38033",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, display_variant, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Orange Tangerine, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Silver, Solid/Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909008941168,
+   "sampleSku": "GRS-38033-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495931879536,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, Dark Brown, display_variant, Eggshell, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Light Mocha Brown, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909009825904,
+   "sampleSku": "GRS-38034-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495932371056,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38035",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Kyoto Garden Natural Weaves, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909013528688,
+   "sampleSku": "GRS-38035-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495934304368,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Black, Bone, Brown, Charcoal, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Industrial, Kyoto Garden Natural Weaves, Living Room, Minimalist, Modern, Natural, Natural On Green, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Spa, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13909025718384,
+   "sampleSku": "GRS-38042-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495937843312,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38064",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Ecru, Entryway, Geometric, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Yellow, Living Room, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Neutral, Off-White, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Textural, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13909042200688,
+   "sampleSku": "GRS-38064-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495938334832,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38066",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, display_variant, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Java Brown, Light Brown, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Solid/Textural, Stripe, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909048688752,
+   "sampleSku": "GRS-38066-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495938826352,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38067",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bohemian, Brown, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909050523760,
+   "sampleSku": "GRS-38067-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495939121264,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38068",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, Cream, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909051048048,
+   "sampleSku": "GRS-38068-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495940006000,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38074",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Brown, Commercial, contact-for-price, Dining Room, display_variant, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Olive Green Brown, Phillipe Romano, Phillipe Romano Naturals, Red, Rustic, Sand, Showroom Line, Terracotta, Textural, Textured, Traditional, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 13909055471728,
+   "sampleSku": "GRS-38074-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495940464752,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38075",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909057470576,
+   "sampleSku": "GRS-38075-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495940857968,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38076",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Purple Lavendar Brown, Rustic, Scandinavian, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909059371120,
+   "sampleSku": "GRS-38076-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495941349488,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38077",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Solid/Textural, Stripe, Textural, Textured, Traditional, Transitional, Wallcovering, White, Woven",
+   "sampleVariantId": 13909062090864,
+   "sampleSku": "GRS-38077-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495941841008,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38078",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Blue, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Stripe, Striped, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909064548464,
+   "sampleSku": "GRS-38078-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495942299760,
+   "handle": "hilary-s-horizontal-grasscloth-wall-paper-grs-38079",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Entryway, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Tan, Textural, Textured, Traditional, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 13909067661424,
+   "sampleSku": "GRS-38079-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500578938992,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34113",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966163738736,
+   "sampleSku": "XRK-34113-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495934926960,
+   "handle": "holly-s-horizontal-grass-cloth-wall-paper-grs-38046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, contact-for-price, Cream, display_variant, Eggshell, grass cloth, grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Natural Silver Mylar, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Stripe, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13909027225712,
+   "sampleSku": "GRS-38046-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500576284784,
+   "handle": "honshu-durable-vinyl-xrj-34103",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966130937968,
+   "sampleSku": "XRJ-34103-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500515074160,
+   "handle": "horito-bay-xrb-33932",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965362561136,
+   "sampleSku": "XRB-33932-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500516089968,
+   "handle": "horito-bay-xrb-33934",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Taupe, Texture, Textured, Vinyls, Wallcovering",
+   "sampleVariantId": 13965375340656,
+   "sampleSku": "XRB-33934-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500517105776,
+   "handle": "horito-bay-xrb-33937",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Texture, Textured, Traditional, Vinyls, Wallcovering",
+   "sampleVariantId": 13965386088560,
+   "sampleSku": "XRB-33937-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567503411,
+   "handle": "dwrt-5002-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Bedroom, Birds, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Cottagecore, display_variant, Eclectic, Eggshell, Fabric, Fauna, Gold, Hallway, Iconic Village, Light Blue, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Plants, Playful, Rabbits, Sage Green, Screen Print, Screen Prints, Showroom Line, Squirrels, Teal, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, Yellow",
+   "sampleVariantId": 42827597971507,
+   "sampleSku": "DWRT-5002F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567568947,
+   "handle": "dwrt-5003-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Bedroom, Bird, Blue, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Cottagecore, display_variant, Eclectic, Eggshell, Fabric, Fauna, Gold, Green, Hallway, Iconic Village, Navy, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Olive Green, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Plants, Playful, Rabbit, Screen Print, Screen Prints, Showroom Line, Squirrel, Teal, Tree, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827598168115,
+   "sampleSku": "DWRT-5003F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567601715,
+   "handle": "dwrt-5004-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal/Insects, Architectural, Bedroom, Beige, Bird, Birds, Black, Bohemian, Botanical, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Eclectic, Eggshell, Fabric, Fauna, Flowers, Fox, Foxes, Gold, Iconic Village, Needs-Image, Needs-Price, Needs-Width, Non-woven, Novelty, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Powder Room, Rabbit, Rabbits, Screen Print, Screen Prints, Showroom Line, Teal, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, Yellow",
+   "sampleVariantId": 42827598200883,
+   "sampleSku": "DWRT-5004F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500443541616,
+   "handle": "ikeda-durable-vinyl-xqf-33760",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964607750256,
+   "sampleSku": "XQF-33760-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498303070320,
+   "handle": "italiano-textile-wallpaper-fbk-43512",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, European, European Import : Washable, Fabric, Gold, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935906783344,
+   "sampleSku": "FBK-43512-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500508815472,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33917",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cream, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13965291815024,
+   "sampleSku": "XRA-33917-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500510519408,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33921",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Wheat",
+   "sampleVariantId": 13965311049840,
+   "sampleSku": "XRA-33921-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500512026736,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33925",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965332250736,
+   "sampleSku": "XRA-33925-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500775514224,
+   "handle": "juleard-durable-water-color-xls-34593",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Gray, Juleard Durable Water Color, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13968209248368,
+   "sampleSku": "XLS-34593-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500017557616,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53709",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Coastal, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959072022640,
+   "sampleSku": "XJE-53709-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500769747056,
+   "handle": "karumai-canal-durable-vinyl-xlr-34571",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Gray, Karumai Canal Durable Vinyl, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968121954416,
+   "sampleSku": "XLR-34571-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500770009200,
+   "handle": "karumai-canal-durable-vinyl-xlr-34572",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Gray, Karumai Canal Durable Vinyl, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Traditional, Transitional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968122839152,
+   "sampleSku": "XLR-34572-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500771254384,
+   "handle": "karumai-canal-durable-vinyl-xlr-34576",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Dark Brown, display_variant, Eggshell, Fabric, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Plaid, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968141156464,
+   "sampleSku": "XLR-34576-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499995766896,
+   "handle": "kenneth-real-suede-walls-xwo-53652",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Ecru, Fabric, Geometric, Gold, Lattice, LEED, Leed Walls, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13958722027632,
+   "sampleSku": "XWO-53652-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499996160112,
+   "handle": "kenneth-real-suede-walls-xwo-53653",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bone, Brick, Class A Fire Rated, Commercial, contact-for-price, Cyan, display_variant, Fabric, Geometric, Gold, LEED, Leed Walls, Linen, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Suede, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13958724190320,
+   "sampleSku": "XWO-53653-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500364046448,
+   "handle": "kimo-durable-vinyl-xpf-33583",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Bone, Class A Fire Rated, COLORS: Taupe, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Light Brown, Mushroom Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Gray",
+   "sampleVariantId": 13963790712944,
+   "sampleSku": "XPF-33583-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500365357168,
+   "handle": "kimo-durable-vinyl-xpf-33586",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, COLORS: Warm Beige, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Golden Brown, Light Taupe, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Soft Tan, Tan, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963803852912,
+   "sampleSku": "XPF-33586-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500330229872,
+   "handle": "koshi-xoy-33532",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Texture, Textured, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13963483807856,
+   "sampleSku": "XOY-33532-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500330786928,
+   "handle": "koshi-xoy-33533",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Fabric, Gold, Metallic, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Texture, Traditional, Vinyls, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13963488690288,
+   "sampleSku": "XOY-33533-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500331671664,
+   "handle": "koshi-xoy-33535",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Fabric, Gold, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Texture, Textured, Traditional, Vinyls, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13963494621296,
+   "sampleSku": "XOY-33535-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500332163184,
+   "handle": "koshi-xoy-33536",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Gray, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Texture, Textured, Vinyls, Wallcovering",
+   "sampleVariantId": 13963501666416,
+   "sampleSku": "XOY-33536-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495923392624,
+   "handle": "kumashi-multi-color-grasscloth-horizontal-weave-grs-38002",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Spice Red Natural, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13908966899824,
+   "sampleSku": "GRS-38002-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500535881840,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34000",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Beige, Commercial, contact-for-price, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13965616349296,
+   "sampleSku": "GRS-34000-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500537225328,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Sisal, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13965636403312,
+   "sampleSku": "GRS-34004-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502320033904,
+   "handle": "la-corka-prt-74055",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Black, Brown, Commercial, contact-for-price, Cork, Dark Brown, display_variant, Gold, La Corka, Moss, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13986702884976,
+   "sampleSku": "PRT-74055-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502320525424,
+   "handle": "la-corka-prt-74058",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Commercial, contact-for-price, Cork, Dark Brown, display_variant, Dove Gray, La Corka, Light Pink, Maroon, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986710257776,
+   "sampleSku": "PRT-74058-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502320689264,
+   "handle": "la-corka-prt-74059",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Commercial, contact-for-price, Cork, display_variant, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Powder Blue, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986713305200,
+   "sampleSku": "PRT-74059-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1496806424688,
+   "handle": "la-halelua-grasscloth-prg-47842",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Blue-Gray, Coastal, Commercial, contact-for-price, Dark Gray, Dining Room, display_variant, Grasscloth, Grasscloth Texture, Gray, Green Blue Aqua, Hand Crafted, La Halelua Grasscloth, Light Gray, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Silver, Solid/Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13920928235632,
+   "sampleSku": "PRG-47842-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502343659632,
+   "handle": "labarina-prt-74152",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Gray, Herringbone, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987077095536,
+   "sampleSku": "PRT-74152-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502344446064,
+   "handle": "labarina-prt-74156",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987088236656,
+   "sampleSku": "PRT-74156-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498785939568,
+   "handle": "lawrence-of-linen-walls-prx-79101",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Wallcovering, White, Woven",
+   "sampleVariantId": 13940841939056,
+   "sampleSku": "PRX-79101-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498787872880,
+   "handle": "lawrence-of-linen-walls-prx-79109",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Rustic, Showroom Line, Wallcovering, Woven",
+   "sampleVariantId": 13940880769136,
+   "sampleSku": "PRX-79109-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500656238704,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34365",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967056044144,
+   "sampleSku": "XCH-34365-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500658270320,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34369",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967074558064,
+   "sampleSku": "XCH-34369-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500667052144,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34374",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967166570608,
+   "sampleSku": "XCH-34374-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700475707443,
+   "handle": "wallcovering-collections-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, avalon, Bedroom, Beige, Botanical, Burnt Sienna, Class A Fire Rated, collections, Commercial, contact-for-price, Contemporary, Dining Room, display_variant, epiphany, in-bloom, indochine, intrigue, jf-fabrics, Living Room, mayfair, metaphor, Mural, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic, papier-peint, Pattern, sanctuary, Scenic, Serene, seychelles, Showroom Line, Tangerine, Taupe, tempest, terra, tones-textures, topiary, Traditional, Transitional, wallcovering, wilder",
+   "sampleVariantId": 43721574318131,
+   "sampleSku": "DWWC-506550-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500469723248,
+   "handle": "leonardo-walls-xda-33828",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Fabric, Light Brown, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13964868321392,
+   "sampleSku": "XDA-33828-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500470509680,
+   "handle": "leonardo-walls-xda-33830",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, Grasscloth, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13964875038832,
+   "sampleSku": "XDA-33830-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500472148080,
+   "handle": "leonardo-walls-xda-33834",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Metallic, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Texture, Textured, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13964888342640,
+   "sampleSku": "XDA-33834-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495936008304,
+   "handle": "lillian-s-horizontal-grass-cloth-grs-38057",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Coastal, Commercial, contact-for-price, display_variant, Ecru, Entryway, Farmhouse, grass cloth, grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Living Room, Metal Silver Gold Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13909035384944,
+   "sampleSku": "GRS-38057-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882875080755,
+   "handle": "dwjj-40230-lilliana",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Grasscloth, Lattice, Lilliana, Linen, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper Weave Wallcovering, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripes, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 41180286386227,
+   "sampleSku": "DWJJ-40230-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500231925872,
+   "handle": "linia-faux-durable-linen-xoh-33430",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Faux, Faux Linen, Grasscloth, Light Brown, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962298097776,
+   "sampleSku": "XOH-33430-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500237234288,
+   "handle": "linia-faux-durable-linen-xoh-33435",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Faux, Faux Linen, Gold, Grasscloth, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962364715120,
+   "sampleSku": "XOH-33435-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472780851,
+   "handle": "london-all-about-big-geo-blushing-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blushing, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792296865843,
+   "sampleSku": "DWPP-205006-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472748083,
+   "handle": "london-all-about-big-geo-calming-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Calming Cream, Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792296931379,
+   "sampleSku": "DWPP-205005-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472813619,
+   "handle": "london-all-about-big-geo-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Denim, display_variant, Geometric, London, London All About Big Geo, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792297979955,
+   "sampleSku": "DWPP-205007-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472715315,
+   "handle": "london-all-about-big-geo-pitch-black-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, Pitch-Black, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792298012723,
+   "sampleSku": "DWPP-205004-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472584243,
+   "handle": "london-all-about-big-geo-platinum-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, Platinum White, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792298045491,
+   "sampleSku": "DWPP-205000-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472682547,
+   "handle": "london-all-about-big-geo-titanium-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gray, London, London All About Big Geo, Phillipe Romano, pr-capital-london, quote-only, Titanium, Type II, Wallcovering",
+   "sampleVariantId": 44792298176563,
+   "sampleSku": "DWPP-205003-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472617011,
+   "handle": "london-all-about-big-geo-vanilla-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Vanilla, Wallcovering",
+   "sampleVariantId": 44792298209331,
+   "sampleSku": "DWPP-205001-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472649779,
+   "handle": "london-all-about-big-geo-warm-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, London, London All About Big Geo, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering, Warm Grey",
+   "sampleVariantId": 44792298242099,
+   "sampleSku": "DWPP-205002-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473206835,
+   "handle": "london-all-about-geo-black-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black & White, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792299290675,
+   "sampleSku": "DWPP-205017-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472846387,
+   "handle": "london-all-about-geo-chickpea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chickpea, contact-for-price, Contract Vinyl, display_variant, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792299356211,
+   "sampleSku": "DWPP-205008-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473010227,
+   "handle": "london-all-about-geo-cloud-cover-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud Cover, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792299487283,
+   "sampleSku": "DWPP-205011-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473108531,
+   "handle": "london-all-about-geo-gold-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Gold & White, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792299520051,
+   "sampleSku": "DWPP-205014-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473075763,
+   "handle": "london-all-about-geo-greige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Greige, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792299552819,
+   "sampleSku": "DWPP-205013-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472977459,
+   "handle": "london-all-about-geo-pale-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London All About Geo, Pale Grey, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792299716659,
+   "sampleSku": "DWPP-205010-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473141299,
+   "handle": "london-all-about-geo-rose-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Floral, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Rose Beige, Type II, Wallcovering",
+   "sampleVariantId": 44792299749427,
+   "sampleSku": "DWPP-205015-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473174067,
+   "handle": "london-all-about-geo-ruby-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Ruby, Type II, Wallcovering",
+   "sampleVariantId": 44792299814963,
+   "sampleSku": "DWPP-205016-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896472911923,
+   "handle": "london-all-about-geo-simply-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Simply White, Type II, Wallcovering",
+   "sampleVariantId": 44792299847731,
+   "sampleSku": "DWPP-205009-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473042995,
+   "handle": "london-all-about-geo-warm-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London All About Geo, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering, Warm White",
+   "sampleVariantId": 44792299880499,
+   "sampleSku": "DWPP-205012-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473403443,
+   "handle": "london-all-about-linen-cobblestone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cobblestone, contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792299946035,
+   "sampleSku": "DWPP-205023-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473305139,
+   "handle": "london-all-about-linen-deep-teal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Deep Teal, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792300011571,
+   "sampleSku": "DWPP-205020-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473468979,
+   "handle": "london-all-about-linen-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Denim, display_variant, Linen, London, London All About Linen, Navy, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792300044339,
+   "sampleSku": "DWPP-205025-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473239603,
+   "handle": "london-all-about-linen-kiwi-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Kiwi, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792300109875,
+   "sampleSku": "DWPP-205018-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473534515,
+   "handle": "london-all-about-linen-pale-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Pale Grey, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792300175411,
+   "sampleSku": "DWPP-205027-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473337907,
+   "handle": "london-all-about-linen-royal-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Navy, Phillipe Romano, pr-capital-london, quote-only, Royal Blue, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792300240947,
+   "sampleSku": "DWPP-205021-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473370675,
+   "handle": "london-all-about-linen-skylight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Skylight, Type II, Wallcovering, White",
+   "sampleVariantId": 44792300273715,
+   "sampleSku": "DWPP-205022-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473436211,
+   "handle": "london-all-about-linen-titanium-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Titanium, Type II, Wallcovering",
+   "sampleVariantId": 44792300339251,
+   "sampleSku": "DWPP-205024-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473272371,
+   "handle": "london-all-about-linen-waterfall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Teal, Type II, Wallcovering, Waterfall",
+   "sampleVariantId": 44792300372019,
+   "sampleSku": "DWPP-205019-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473501747,
+   "handle": "london-all-about-linen-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, London, London All About Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering, White",
+   "sampleVariantId": 44792300437555,
+   "sampleSku": "DWPP-205026-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473763891,
+   "handle": "london-apex-cord-antimony-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "ANTIMONY, Beige, contact-for-price, Contract Vinyl, display_variant, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792300503091,
+   "sampleSku": "DWPP-205032-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473796659,
+   "handle": "london-apex-cord-glacial-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, GLACIAL, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792300535859,
+   "sampleSku": "DWPP-205033-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473993267,
+   "handle": "london-apex-cord-green-tea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, GREEN TEA, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792300961843,
+   "sampleSku": "DWPP-205036-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473731123,
+   "handle": "london-apex-cord-greystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, GREYSTONE, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792300994611,
+   "sampleSku": "DWPP-205031-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474026035,
+   "handle": "london-apex-cord-infinite-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, INFINITE GREY, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792301027379,
+   "sampleSku": "DWPP-205037-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473665587,
+   "handle": "london-apex-cord-midnight-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Apex Cord, MIDNIGHT HAZE, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792301158451,
+   "sampleSku": "DWPP-205030-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473960499,
+   "handle": "london-apex-cord-moonlit-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Apex Cord, MOONLIT IVORY, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792301223987,
+   "sampleSku": "DWPP-205035-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473894963,
+   "handle": "london-apex-cord-sable-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, SABLE, Type II, Wallcovering",
+   "sampleVariantId": 44792301289523,
+   "sampleSku": "DWPP-205034-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473600051,
+   "handle": "london-apex-cord-silver-streak-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, SILVER STREAK, Type II, Wallcovering, White",
+   "sampleVariantId": 44792301322291,
+   "sampleSku": "DWPP-205028-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896473632819,
+   "handle": "london-apex-cord-tinsmith-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Apex Cord, Phillipe Romano, pr-capital-london, quote-only, TINSMITH, Type II, Wallcovering",
+   "sampleVariantId": 44792301453363,
+   "sampleSku": "DWPP-205029-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474189875,
+   "handle": "london-balancing-act-gentle-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gentle Grey, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792301551667,
+   "sampleSku": "DWPP-205041-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474386483,
+   "handle": "london-balancing-act-heart-of-a-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Heart Of A Dove, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792301584435,
+   "sampleSku": "DWPP-205045-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474124339,
+   "handle": "london-balancing-act-navy-seal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Navy, Navy Seal, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792301682739,
+   "sampleSku": "DWPP-205039-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474320947,
+   "handle": "london-balancing-act-noble-nickel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Noble Nickel, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792301715507,
+   "sampleSku": "DWPP-205044-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474484787,
+   "handle": "london-balancing-act-profound-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Phillipe Romano, pr-capital-london, Profound Beige, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792306171955,
+   "sampleSku": "DWPP-205047-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474222643,
+   "handle": "london-balancing-act-sincere-silver-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, Silver, Sincere Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792306270259,
+   "sampleSku": "DWPP-205042-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474288179,
+   "handle": "london-balancing-act-solid-steel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, Solid Steel, Type II, Wallcovering",
+   "sampleVariantId": 44792306303027,
+   "sampleSku": "DWPP-205043-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474157107,
+   "handle": "london-balancing-act-touch-of-turq-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Navy, Phillipe Romano, pr-capital-london, quote-only, Touch Of Turq, Type II, Wallcovering",
+   "sampleVariantId": 44792306335795,
+   "sampleSku": "DWPP-205040-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474058803,
+   "handle": "london-balancing-act-true-angora-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, True Angora, Type II, Wallcovering, White",
+   "sampleVariantId": 44792306401331,
+   "sampleSku": "DWPP-205038-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474452019,
+   "handle": "london-balancing-act-trusted-leather-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Leather, London, London Balancing Act, Phillipe Romano, pr-capital-london, quote-only, Trusted Leather, Type II, Wallcovering",
+   "sampleVariantId": 44792306696243,
+   "sampleSku": "DWPP-205046-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474812467,
+   "handle": "london-bali-arabica-bean-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arabica Bean, Brown, contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792307056691,
+   "sampleSku": "DWPP-205056-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474583091,
+   "handle": "london-bali-black-cobra-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Cobra, Bohemian, Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792307089459,
+   "sampleSku": "DWPP-205050-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474550323,
+   "handle": "london-bali-dolphin-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, Charcoal, contact-for-price, Contract Vinyl, display_variant, Dolphin Grey, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792307122227,
+   "sampleSku": "DWPP-205049-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474746931,
+   "handle": "london-bali-jamine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Jamine, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792307187763,
+   "sampleSku": "DWPP-205054-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474681395,
+   "handle": "london-bali-reef-shark-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, Coastal, contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Reef Shark, Type II, Wallcovering",
+   "sampleVariantId": 44792307548211,
+   "sampleSku": "DWPP-205053-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474615859,
+   "handle": "london-bali-rice-field-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Rice Field, Type II, Wallcovering, White",
+   "sampleVariantId": 44792307580979,
+   "sampleSku": "DWPP-205051-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474648627,
+   "handle": "london-bali-stone-carving-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Silver, Stone Carving, Type II, Wallcovering",
+   "sampleVariantId": 44792307679283,
+   "sampleSku": "DWPP-205052-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474845235,
+   "handle": "london-bali-sunfish-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Sunfish, Type II, Wallcovering",
+   "sampleVariantId": 44792307712051,
+   "sampleSku": "DWPP-205057-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474779699,
+   "handle": "london-bali-tamarind-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Silver, Tamarind, Type II, Wallcovering",
+   "sampleVariantId": 44792307744819,
+   "sampleSku": "DWPP-205055-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474517555,
+   "handle": "london-bali-water-lily-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Bali, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering, Water Lily, White",
+   "sampleVariantId": 44792307777587,
+   "sampleSku": "DWPP-205048-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475009075,
+   "handle": "london-bead-bare-azurite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azurite, contact-for-price, Contract Vinyl, display_variant, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792307810355,
+   "sampleSku": "DWPP-205060-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475533363,
+   "handle": "london-bead-bare-chanton-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chanton Shadow, contact-for-price, Contract Vinyl, display_variant, Gray, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792308334643,
+   "sampleSku": "DWPP-205065-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475140147,
+   "handle": "london-bead-bare-filigrey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, FiliGrey, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792308367411,
+   "sampleSku": "DWPP-205061-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474910771,
+   "handle": "london-bead-bare-frosted-leaf-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Botanical, contact-for-price, Contract Vinyl, display_variant, Frosted Leaf, London, London Bead Bare, Organic Modern, Phillipe Romano, pr-capital-london, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792308432947,
+   "sampleSku": "DWPP-205059-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896474878003,
+   "handle": "london-bead-bare-glass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glass, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792308531251,
+   "sampleSku": "DWPP-205058-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475566131,
+   "handle": "london-bead-bare-kyanite-black-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Kyanite Black, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792308891699,
+   "sampleSku": "DWPP-205066-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475435059,
+   "handle": "london-bead-bare-navy-nibblet-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Bead Bare, Navy, Navy Nibblet, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792308957235,
+   "sampleSku": "DWPP-205063-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475238451,
+   "handle": "london-bead-bare-pencil-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Bead Bare, Pencil, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792308990003,
+   "sampleSku": "DWPP-205062-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475664435,
+   "handle": "london-bead-bare-porcelain-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Bead Bare, Phillipe Romano, Porcelain, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792309022771,
+   "sampleSku": "DWPP-205067-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475467827,
+   "handle": "london-bead-bare-selenite-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Bead Bare, Phillipe Romano, pr-capital-london, quote-only, Selenite White, Type II, Wallcovering, White",
+   "sampleVariantId": 44792309088307,
+   "sampleSku": "DWPP-205064-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476024883,
+   "handle": "london-big-sur-bixby-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bixby Beige, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792309153843,
+   "sampleSku": "DWPP-205077-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475992115,
+   "handle": "london-big-sur-canyon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Canyon, contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792309252147,
+   "sampleSku": "DWPP-205076-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475959347,
+   "handle": "london-big-sur-carmel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Carmel, contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792309317683,
+   "sampleSku": "DWPP-205075-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475795507,
+   "handle": "london-big-sur-coast-road-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Coast Road, Coastal, contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792309350451,
+   "sampleSku": "DWPP-205071-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475926579,
+   "handle": "london-big-sur-cove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Cove, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792309383219,
+   "sampleSku": "DWPP-205074-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475828275,
+   "handle": "london-big-sur-ewoldsen-trail-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ewoldsen Trail, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792309612595,
+   "sampleSku": "DWPP-205072-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475762739,
+   "handle": "london-big-sur-pfeiffer-plum-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Pfeiffer Plum, Phillipe Romano, pr-capital-london, quote-only, Red, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792309678131,
+   "sampleSku": "DWPP-205070-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475729971,
+   "handle": "london-big-sur-redwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Red, Redwood, Type II, Wallcovering",
+   "sampleVariantId": 44792309710899,
+   "sampleSku": "DWPP-205069-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475893811,
+   "handle": "london-big-sur-rocky-point-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Rocky Point, Type II, Wallcovering",
+   "sampleVariantId": 44792309743667,
+   "sampleSku": "DWPP-205073-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896475697203,
+   "handle": "london-big-sur-santa-rosa-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Big Sur, Phillipe Romano, pr-capital-london, quote-only, Santa Rosa, Tan, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792309841971,
+   "sampleSku": "DWPP-205068-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476483635,
+   "handle": "london-free-spirit-aint-grey-nomore-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ain't Grey Nomore, contact-for-price, Contract Vinyl, display_variant, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792309874739,
+   "sampleSku": "DWPP-205086-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476385331,
+   "handle": "london-free-spirit-cream-puff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Cream Puff, display_variant, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792310202419,
+   "sampleSku": "DWPP-205084-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476188723,
+   "handle": "london-free-spirit-easy-ecru-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Easy Ecru, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792310235187,
+   "sampleSku": "DWPP-205081-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476287027,
+   "handle": "london-free-spirit-grapevine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grapevine, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44792310267955,
+   "sampleSku": "DWPP-205082-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476057651,
+   "handle": "london-free-spirit-grey-daze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Daze, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792310399027,
+   "sampleSku": "DWPP-205078-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476319795,
+   "handle": "london-free-spirit-heart-of-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Heart Of Gold, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792310431795,
+   "sampleSku": "DWPP-205083-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476516403,
+   "handle": "london-free-spirit-ocean-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, London, London Free Spirit, Ocean Spirit, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792310497331,
+   "sampleSku": "DWPP-205087-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476155955,
+   "handle": "london-free-spirit-sand-tropez-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Sand Tropez, Type II, Wallcovering",
+   "sampleVariantId": 44792310562867,
+   "sampleSku": "DWPP-205080-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476450867,
+   "handle": "london-free-spirit-silver-springs-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Silver Springs, Type II, Wallcovering",
+   "sampleVariantId": 44792310628403,
+   "sampleSku": "DWPP-205085-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896476090419,
+   "handle": "london-free-spirit-sweet-caroline-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Free Spirit, Phillipe Romano, pr-capital-london, quote-only, Silver, Sweet Caroline, Type II, Wallcovering",
+   "sampleVariantId": 44792310661171,
+   "sampleSku": "DWPP-205079-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478482483,
+   "handle": "london-fused-cement-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cement Grey, contact-for-price, Contract Vinyl, display_variant, London, London Fused, Minimalist, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792310988851,
+   "sampleSku": "DWPP-205094-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478318643,
+   "handle": "london-fused-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Geometric, Graphite, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792311087155,
+   "sampleSku": "DWPP-205091-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896477401139,
+   "handle": "london-fused-hint-of-mint-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Hint of Mint, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792311119923,
+   "sampleSku": "DWPP-205088-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478220339,
+   "handle": "london-fused-midnight-navy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Fused, Midnight Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792311152691,
+   "sampleSku": "DWPP-205090-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896477958195,
+   "handle": "london-fused-sage-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Sage Mist, Type II, Wallcovering",
+   "sampleVariantId": 44792331993139,
+   "sampleSku": "DWPP-205089-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478613555,
+   "handle": "london-fused-sand-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Sand Dune, Type II, Wallcovering",
+   "sampleVariantId": 44792332025907,
+   "sampleSku": "DWPP-205097-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478515251,
+   "handle": "london-fused-silver-satin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Silver Satin, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792335335475,
+   "sampleSku": "DWPP-205095-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478416947,
+   "handle": "london-fused-snowfall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Snowfall, Type II, Wallcovering",
+   "sampleVariantId": 44792338645043,
+   "sampleSku": "DWPP-205092-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478449715,
+   "handle": "london-fused-stone-dust-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Stone Dust, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792340742195,
+   "sampleSku": "DWPP-205093-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478548019,
+   "handle": "london-fused-white-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Fused, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering, White Dove",
+   "sampleVariantId": 44792340774963,
+   "sampleSku": "DWPP-205096-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478842931,
+   "handle": "london-glamour-stripe-ambergrace-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ambergrace, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792340807731,
+   "sampleSku": "DWPP-205104-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478744627,
+   "handle": "london-glamour-stripe-black-metal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Metal, Charcoal, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792343789619,
+   "sampleSku": "DWPP-205101-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478679091,
+   "handle": "london-glamour-stripe-bronzed-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bronzed Stone, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792343822387,
+   "sampleSku": "DWPP-205099-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478810163,
+   "handle": "london-glamour-stripe-chalked-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chalked Gold, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792345231411,
+   "sampleSku": "DWPP-205103-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478875699,
+   "handle": "london-glamour-stripe-copper-plum-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Copper Plum, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Red, Stripe, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792345264179,
+   "sampleSku": "DWPP-205105-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478777395,
+   "handle": "london-glamour-stripe-platinum-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, Platinum Pearl, pr-capital-london, quote-only, Stripe, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792348606515,
+   "sampleSku": "DWPP-205102-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478711859,
+   "handle": "london-glamour-stripe-sage-patina-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glam, Gray, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Sage Patina, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792349261875,
+   "sampleSku": "DWPP-205100-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478646323,
+   "handle": "london-glamour-stripe-white-luster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glam, London, London Glamour Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering, White, White Luster",
+   "sampleVariantId": 44792349294643,
+   "sampleSku": "DWPP-205098-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478974003,
+   "handle": "london-grate-expectations-blue-boar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Boar, contact-for-price, Contract Vinyl, display_variant, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792349327411,
+   "sampleSku": "DWPP-205107-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479072307,
+   "handle": "london-grate-expectations-forge-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Forge Grey, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792350048307,
+   "sampleSku": "DWPP-205110-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896478908467,
+   "handle": "london-grate-expectations-gargery-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gargery Green, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792353357875,
+   "sampleSku": "DWPP-205106-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479203379,
+   "handle": "london-grate-expectations-havishams-sun-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Havisham's Sun, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792353849395,
+   "sampleSku": "DWPP-205114-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479105075,
+   "handle": "london-grate-expectations-honorable-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Honorable Cream, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792357158963,
+   "sampleSku": "DWPP-205111-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479236147,
+   "handle": "london-grate-expectations-pips-pink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Grate Expectations, Phillipe Romano, Pink, Pip's Pink, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792357191731,
+   "sampleSku": "DWPP-205115-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479006771,
+   "handle": "london-grate-expectations-shadow-navy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Grate Expectations, Navy, Phillipe Romano, pr-capital-london, quote-only, Shadow Navy, Type II, Wallcovering",
+   "sampleVariantId": 44792357224499,
+   "sampleSku": "DWPP-205108-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479039539,
+   "handle": "london-grate-expectations-silver-file-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Silver, Silver File, Type II, Wallcovering",
+   "sampleVariantId": 44792357257267,
+   "sampleSku": "DWPP-205109-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479137843,
+   "handle": "london-grate-expectations-wheelwright-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering, Wheelwright",
+   "sampleVariantId": 44792357290035,
+   "sampleSku": "DWPP-205112-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479170611,
+   "handle": "london-grate-expectations-whimple-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Grate Expectations, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Whimple White",
+   "sampleVariantId": 44792357322803,
+   "sampleSku": "DWPP-205113-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479531059,
+   "handle": "london-hayfield-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792360632371,
+   "sampleSku": "DWPP-205124-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479596595,
+   "handle": "london-hayfield-grey-pond-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Pond, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792360665139,
+   "sampleSku": "DWPP-205125-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479334451,
+   "handle": "london-hayfield-kitten-gray-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Kitten Gray, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792365809715,
+   "sampleSku": "DWPP-205118-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479268915,
+   "handle": "london-hayfield-moonlight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Moonlight, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792368169011,
+   "sampleSku": "DWPP-205116-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479399987,
+   "handle": "london-hayfield-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Sand, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792368201779,
+   "sampleSku": "DWPP-205120-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479301683,
+   "handle": "london-hayfield-sea-gull-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Sea Gull, Type II, Wallcovering",
+   "sampleVariantId": 44792368365619,
+   "sampleSku": "DWPP-205117-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479367219,
+   "handle": "london-hayfield-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Slate, Type II, Wallcovering",
+   "sampleVariantId": 44792368398387,
+   "sampleSku": "DWPP-205119-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479465523,
+   "handle": "london-hayfield-spring-meadows-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Silver, Spring Meadows, Type II, Wallcovering",
+   "sampleVariantId": 44792368463923,
+   "sampleSku": "DWPP-205122-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479432755,
+   "handle": "london-hayfield-sweet-clover-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Phillipe Romano, pr-capital-london, quote-only, Silver, Sweet Clover, Type II, Wallcovering",
+   "sampleVariantId": 44792368496691,
+   "sampleSku": "DWPP-205121-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479498291,
+   "handle": "london-hayfield-wetlands-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Hayfield, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Wetlands",
+   "sampleVariantId": 44792368562227,
+   "sampleSku": "DWPP-205123-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480055347,
+   "handle": "london-interweave-bark-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bark, Brown, contact-for-price, Contract Vinyl, display_variant, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792368594995,
+   "sampleSku": "DWPP-205127-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480776243,
+   "handle": "london-interweave-blue-swipe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Swipe, Brown, contact-for-price, Contract Vinyl, display_variant, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792368627763,
+   "sampleSku": "DWPP-205135-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480383027,
+   "handle": "london-interweave-brassy-olive-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brassy Olive, contact-for-price, Contract Vinyl, display_variant, Gold, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792368660531,
+   "sampleSku": "DWPP-205131-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480514099,
+   "handle": "london-interweave-frosty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Frosty, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792368726067,
+   "sampleSku": "DWPP-205134-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480219187,
+   "handle": "london-interweave-gilded-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Gilded Ash, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792369152051,
+   "sampleSku": "DWPP-205128-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480284723,
+   "handle": "london-interweave-neutral-flake-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, London, London Interweave, Neutral Flake, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792369774643,
+   "sampleSku": "DWPP-205129-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480448563,
+   "handle": "london-interweave-pale-powder-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Interweave, Pale Powder, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792369840179,
+   "sampleSku": "DWPP-205133-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480317491,
+   "handle": "london-interweave-scoured-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Scoured Gold, Type II, Wallcovering",
+   "sampleVariantId": 44792369938483,
+   "sampleSku": "DWPP-205130-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896479793203,
+   "handle": "london-interweave-the-rub-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Tan, The Rub, Type II, Wallcovering",
+   "sampleVariantId": 44792370167859,
+   "sampleSku": "DWPP-205126-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480415795,
+   "handle": "london-interweave-white-out-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Interweave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White Out",
+   "sampleVariantId": 44792370200627,
+   "sampleSku": "DWPP-205132-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481038387,
+   "handle": "london-kasumi-black-mondo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Mondo, Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792370266163,
+   "sampleSku": "DWPP-205143-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480940083,
+   "handle": "london-kasumi-blue-heaven-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Heaven, contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792370495539,
+   "sampleSku": "DWPP-205140-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480841779,
+   "handle": "london-kasumi-cattail-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Cattail, contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792370528307,
+   "sampleSku": "DWPP-205137-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480972851,
+   "handle": "london-kasumi-cotton-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cotton, Cream, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792370561075,
+   "sampleSku": "DWPP-205141-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481103923,
+   "handle": "london-kasumi-feather-reed-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Feather Reed, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792370626611,
+   "sampleSku": "DWPP-205145-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481431603,
+   "handle": "london-kasumi-glam-black-mondo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Mondo, Charcoal, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792370855987,
+   "sampleSku": "DWPP-205154-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481267763,
+   "handle": "london-kasumi-glam-blue-heaven-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Heaven, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Kasumi Glam, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792377409587,
+   "sampleSku": "DWPP-205150-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481136691,
+   "handle": "london-kasumi-glam-cattail-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Cattail, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792377442355,
+   "sampleSku": "DWPP-205146-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481300531,
+   "handle": "london-kasumi-glam-cotton-gilt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cotton, Cotton Gilt, Cream, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792377475123,
+   "sampleSku": "DWPP-205151-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481169459,
+   "handle": "london-kasumi-glam-cotton-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cotton, Cream, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792377540659,
+   "sampleSku": "DWPP-205147-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481333299,
+   "handle": "london-kasumi-glam-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Dune, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792377606195,
+   "sampleSku": "DWPP-205152-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481234995,
+   "handle": "london-kasumi-glam-feather-reed-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Feather Reed, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792377671731,
+   "sampleSku": "DWPP-205149-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481202227,
+   "handle": "london-kasumi-glam-huron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glam, Huron, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792377737267,
+   "sampleSku": "DWPP-205148-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481464371,
+   "handle": "london-kasumi-glam-rice-field-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Rice Field, Type II, Wallcovering",
+   "sampleVariantId": 44792377966643,
+   "sampleSku": "DWPP-205155-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481366067,
+   "handle": "london-kasumi-glam-wetlands-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glam, London, London Kasumi Glam, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering, Wetlands",
+   "sampleVariantId": 44792377999411,
+   "sampleSku": "DWPP-205153-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481071155,
+   "handle": "london-kasumi-huron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Huron, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378196019,
+   "sampleSku": "DWPP-205144-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480874547,
+   "handle": "london-kasumi-north-wind-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, North Wind, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378327091,
+   "sampleSku": "DWPP-205138-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480809011,
+   "handle": "london-kasumi-rice-field-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Rice Field, Type II, Wallcovering",
+   "sampleVariantId": 44792378425395,
+   "sampleSku": "DWPP-205136-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481005619,
+   "handle": "london-kasumi-salt-marsh-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Salt Marsh, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792378490931,
+   "sampleSku": "DWPP-205142-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896480907315,
+   "handle": "london-kasumi-thistle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Kasumi, Phillipe Romano, pr-capital-london, quote-only, Silver, Thistle, Type II, Wallcovering",
+   "sampleVariantId": 44792378523699,
+   "sampleSku": "DWPP-205139-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481857587,
+   "handle": "london-li-ming-candle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Candle, Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378556467,
+   "sampleSku": "DWPP-205165-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481693747,
+   "handle": "london-li-ming-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, Ivory, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792378753075,
+   "sampleSku": "DWPP-205161-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481628211,
+   "handle": "london-li-ming-one-true-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Li Ming, One True Beige, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378785843,
+   "sampleSku": "DWPP-205159-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481660979,
+   "handle": "london-li-ming-porcelain-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Li Ming, Phillipe Romano, Porcelain, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378818611,
+   "sampleSku": "DWPP-205160-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481562675,
+   "handle": "london-li-ming-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, display_variant, Gray, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Shadow, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792378851379,
+   "sampleSku": "DWPP-205158-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481759283,
+   "handle": "london-li-ming-soothing-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, display_variant, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Silver, Soothing Green, Type II, Wallcovering",
+   "sampleVariantId": 44792378949683,
+   "sampleSku": "DWPP-205163-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481497139,
+   "handle": "london-li-ming-stoneware-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Stoneware, Type II, Wallcovering",
+   "sampleVariantId": 44792379080755,
+   "sampleSku": "DWPP-205156-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481529907,
+   "handle": "london-li-ming-tranquil-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, display_variant, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Silver, Tranquil Grey, Type II, Wallcovering",
+   "sampleVariantId": 44792379146291,
+   "sampleSku": "DWPP-205157-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481726515,
+   "handle": "london-li-ming-white-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Li Ming, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White Dove",
+   "sampleVariantId": 44792379179059,
+   "sampleSku": "DWPP-205162-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481792051,
+   "handle": "london-li-ming-zen-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chinoiserie, contact-for-price, Contract Vinyl, display_variant, London, London Li Ming, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Zen Blue",
+   "sampleVariantId": 44792379277363,
+   "sampleSku": "DWPP-205164-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482185267,
+   "handle": "london-malta-linen-beach-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beach, Beige, Coastal, contact-for-price, Contract Vinyl, display_variant, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792379375667,
+   "sampleSku": "DWPP-205173-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481890355,
+   "handle": "london-malta-linen-dolphin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dolphin, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792379473971,
+   "sampleSku": "DWPP-205166-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482054195,
+   "handle": "london-malta-linen-foggy-night-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Foggy Night, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792379539507,
+   "sampleSku": "DWPP-205170-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482021427,
+   "handle": "london-malta-linen-grotto-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Grotto, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792379572275,
+   "sampleSku": "DWPP-205169-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482218035,
+   "handle": "london-malta-linen-icecap-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Icecap, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792379605043,
+   "sampleSku": "DWPP-205174-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482119731,
+   "handle": "london-malta-linen-island-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Island Beige, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792379670579,
+   "sampleSku": "DWPP-205172-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481955891,
+   "handle": "london-malta-linen-mediterranean-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London Malta Linen, Mediterranean, Navy, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792379932723,
+   "sampleSku": "DWPP-205167-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482250803,
+   "handle": "london-malta-linen-meteorite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Linen, London, London Malta Linen, Meteorite, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792380063795,
+   "sampleSku": "DWPP-205175-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482086963,
+   "handle": "london-malta-linen-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, London, London Malta Linen, Pearl, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792380096563,
+   "sampleSku": "DWPP-205171-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896481988659,
+   "handle": "london-malta-linen-sands-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London Malta Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Sands, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792380194867,
+   "sampleSku": "DWPP-205168-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482480179,
+   "handle": "london-malta-mid-stripe-alloy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alloy, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380391475,
+   "sampleSku": "DWPP-205178-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482512947,
+   "handle": "london-malta-mid-stripe-dark-grotto-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Dark Grotto, display_variant, Geometric, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380457011,
+   "sampleSku": "DWPP-205179-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896485888051,
+   "handle": "london-malta-mid-stripe-island-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Island Blue, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380522547,
+   "sampleSku": "DWPP-205183-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482316339,
+   "handle": "london-malta-mid-stripe-ivory-hue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Ivory Hue, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380555315,
+   "sampleSku": "DWPP-205176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482578483,
+   "handle": "london-malta-mid-stripe-magnolia-bud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Floral, Geometric, London, London Malta Mid Stripe, Magnolia Bud, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792380620851,
+   "sampleSku": "DWPP-205180-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896485789747,
+   "handle": "london-malta-mid-stripe-sage-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Sage Pearl, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380719155,
+   "sampleSku": "DWPP-205182-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896482414643,
+   "handle": "london-malta-mid-stripe-sands-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Sands, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792380784691,
+   "sampleSku": "DWPP-205177-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896484511795,
+   "handle": "london-malta-mid-stripe-warm-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London Malta Mid Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering, Warm Pearl",
+   "sampleVariantId": 44792380817459,
+   "sampleSku": "DWPP-205181-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896485986355,
+   "handle": "london-malta-mini-stripe-beach-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beach, Coastal, contact-for-price, Contract Vinyl, display_variant, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792380981299,
+   "sampleSku": "DWPP-205186-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486871091,
+   "handle": "london-malta-mini-stripe-blackboard-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blackboard, Charcoal, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381014067,
+   "sampleSku": "DWPP-205190-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486445107,
+   "handle": "london-malta-mini-stripe-dolphin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dolphin, Geometric, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381046835,
+   "sampleSku": "DWPP-205188-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896485920819,
+   "handle": "london-malta-mini-stripe-fresh-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Fresh Pearl, Geometric, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381079603,
+   "sampleSku": "DWPP-205184-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486707251,
+   "handle": "london-malta-mini-stripe-grotto-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Grotto, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381112371,
+   "sampleSku": "DWPP-205189-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486903859,
+   "handle": "london-malta-mini-stripe-island-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Island Beige, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381177907,
+   "sampleSku": "DWPP-205191-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486182963,
+   "handle": "london-malta-mini-stripe-mediterranean-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Malta Mini Stripe, Mediterranean, Phillipe Romano, pr-capital-london, quote-only, Red, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381341747,
+   "sampleSku": "DWPP-205187-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896485953587,
+   "handle": "london-malta-mini-stripe-red-hue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London Malta Mini Stripe, Phillipe Romano, pr-capital-london, quote-only, Red Hue, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792381374515,
+   "sampleSku": "DWPP-205185-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487002163,
+   "handle": "london-mylar-arches-amber-waves-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amber Waves, contact-for-price, Contract Vinyl, display_variant, London, London Mylar Arches, Mylar, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792382390323,
+   "sampleSku": "DWPP-205194-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487067699,
+   "handle": "london-mylar-arches-cocoa-flare-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cocoa Flare, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Mylar Arches, Mylar, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792382455859,
+   "sampleSku": "DWPP-205195-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486936627,
+   "handle": "london-mylar-arches-sterling-shimmer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Mylar Arches, Mylar, Phillipe Romano, pr-capital-london, quote-only, Sterling Shimmer, Type II, Wallcovering",
+   "sampleVariantId": 44792382521395,
+   "sampleSku": "DWPP-205192-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896486969395,
+   "handle": "london-mylar-arches-warm-glow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Mylar Arches, Mylar, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Warm Glow",
+   "sampleVariantId": 44792382554163,
+   "sampleSku": "DWPP-205193-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487329843,
+   "handle": "london-nano-asteroid-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Asteroid, contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792382586931,
+   "sampleSku": "DWPP-205202-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487395379,
+   "handle": "london-nano-black-hole-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Hole, Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792382652467,
+   "sampleSku": "DWPP-205204-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487297075,
+   "handle": "london-nano-clear-sky-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Clear Sky, contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792382685235,
+   "sampleSku": "DWPP-205201-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487362611,
+   "handle": "london-nano-grey-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Shadow, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792382718003,
+   "sampleSku": "DWPP-205203-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487264307,
+   "handle": "london-nano-night-sky-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Nano, Night Sky, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792382750771,
+   "sampleSku": "DWPP-205200-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487460915,
+   "handle": "london-nano-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Nano, Opal, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792382816307,
+   "sampleSku": "DWPP-205205-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487133235,
+   "handle": "london-nano-pale-moon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Nano, Modern, Pale Moon, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792382914611,
+   "sampleSku": "DWPP-205197-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487166003,
+   "handle": "london-nano-sandstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Sandstone, Type II, Wallcovering",
+   "sampleVariantId": 44792382980147,
+   "sampleSku": "DWPP-205198-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487198771,
+   "handle": "london-nano-topsoil-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Silver, Topsoil, Type II, Wallcovering",
+   "sampleVariantId": 44792383078451,
+   "sampleSku": "DWPP-205199-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487100467,
+   "handle": "london-nano-white-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Nano, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering, White Sand",
+   "sampleVariantId": 44792383143987,
+   "sampleSku": "DWPP-205196-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487690291,
+   "handle": "london-northern-lights-aglow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aglow, contact-for-price, Contract Vinyl, display_variant, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792383242291,
+   "sampleSku": "DWPP-205211-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487526451,
+   "handle": "london-northern-lights-arctic-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arctic White, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792383340595,
+   "sampleSku": "DWPP-205206-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487657523,
+   "handle": "london-northern-lights-atmospheric-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Atmospheric Beige, Beige, contact-for-price, Contract Vinyl, display_variant, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792383406131,
+   "sampleSku": "DWPP-205210-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487788595,
+   "handle": "london-northern-lights-aurora-blues-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aurora Blues, contact-for-price, Contract Vinyl, display_variant, Gray, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792383504435,
+   "sampleSku": "DWPP-205213-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487624755,
+   "handle": "london-northern-lights-cream-corona-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Cream Corona, display_variant, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792383602739,
+   "sampleSku": "DWPP-205209-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487559219,
+   "handle": "london-northern-lights-grey-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Haze, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792383668275,
+   "sampleSku": "DWPP-205207-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487723059,
+   "handle": "london-northern-lights-magnetic-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Northern Lights, Magnetic Green, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792383766579,
+   "sampleSku": "DWPP-205212-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487591987,
+   "handle": "london-northern-lights-stormy-sunset-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, London, London Northern Lights, Phillipe Romano, pr-capital-london, quote-only, Stormy Sunset, Type II, Wallcovering",
+   "sampleVariantId": 44792383864883,
+   "sampleSku": "DWPP-205208-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488116275,
+   "handle": "london-paper-weave-antique-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antique Blue, contact-for-price, Contract Vinyl, display_variant, Geometric, Gray, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792383963187,
+   "sampleSku": "DWPP-205222-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487821363,
+   "handle": "london-paper-weave-bianca-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bianca, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792383995955,
+   "sampleSku": "DWPP-205214-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487854131,
+   "handle": "london-paper-weave-canvas-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Canvas, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792384028723,
+   "sampleSku": "DWPP-205215-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487886899,
+   "handle": "london-paper-weave-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Cashmere, contact-for-price, Contract Vinyl, display_variant, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792384061491,
+   "sampleSku": "DWPP-205216-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487919667,
+   "handle": "london-paper-weave-floss-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Floss, Geometric, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792384192563,
+   "sampleSku": "DWPP-205217-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487985203,
+   "handle": "london-paper-weave-jute-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Grasscloth, Jute, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792384421939,
+   "sampleSku": "DWPP-205219-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896487952435,
+   "handle": "london-paper-weave-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792384487475,
+   "sampleSku": "DWPP-205218-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488149043,
+   "handle": "london-paper-weave-mangrove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, London, London Paper Weave, Mangrove, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792384913459,
+   "sampleSku": "DWPP-205223-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488050739,
+   "handle": "london-paper-weave-rein-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Rein, Type II, Wallcovering",
+   "sampleVariantId": 44792385011763,
+   "sampleSku": "DWPP-205221-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488017971,
+   "handle": "london-paper-weave-tussah-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gray, London, London Paper Weave, Paper-weave, Phillipe Romano, pr-capital-london, quote-only, Tussah, Type II, Wallcovering",
+   "sampleVariantId": 44792385044531,
+   "sampleSku": "DWPP-205220-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488214579,
+   "handle": "london-pebble-linen-aqua-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aqua, contact-for-price, Contract Vinyl, display_variant, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792385175603,
+   "sampleSku": "DWPP-205225-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488542259,
+   "handle": "london-pebble-linen-berry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Berry, contact-for-price, Contract Vinyl, display_variant, Linen, London, London Pebble Linen, Phillipe Romano, Pink, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792385208371,
+   "sampleSku": "DWPP-205233-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488443955,
+   "handle": "london-pebble-linen-charcoal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Gray, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792385241139,
+   "sampleSku": "DWPP-205230-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488345651,
+   "handle": "london-pebble-linen-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792385273907,
+   "sampleSku": "DWPP-205229-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488476723,
+   "handle": "london-pebble-linen-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ivory, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792385306675,
+   "sampleSku": "DWPP-205231-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488280115,
+   "handle": "london-pebble-linen-light-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Light Grey, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792385404979,
+   "sampleSku": "DWPP-205227-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488312883,
+   "handle": "london-pebble-linen-midnight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Linen, London, London Pebble Linen, Midnight, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792385437747,
+   "sampleSku": "DWPP-205228-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488247347,
+   "handle": "london-pebble-linen-sapphire-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, display_variant, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Sapphire, Type II, Wallcovering",
+   "sampleVariantId": 44792385470515,
+   "sampleSku": "DWPP-205226-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488181811,
+   "handle": "london-pebble-linen-sky-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Sky, Type II, Wallcovering",
+   "sampleVariantId": 44792385601587,
+   "sampleSku": "DWPP-205224-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488509491,
+   "handle": "london-pebble-linen-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London Pebble Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Taupe, Type II, Wallcovering",
+   "sampleVariantId": 44792385667123,
+   "sampleSku": "DWPP-205232-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488738867,
+   "handle": "london-pinstripe-hype-chalk-lines-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chalk Lines, contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792385699891,
+   "sampleSku": "DWPP-205239-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488706099,
+   "handle": "london-pinstripe-hype-evergreen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Evergreen, Geometric, Green, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792385732659,
+   "sampleSku": "DWPP-205238-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488902707,
+   "handle": "london-pinstripe-hype-fine-chiffon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Fine Chiffon, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386027571,
+   "sampleSku": "DWPP-205243-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488640563,
+   "handle": "london-pinstripe-hype-fresh-dew-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Fresh Dew, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386453555,
+   "sampleSku": "DWPP-205236-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488673331,
+   "handle": "london-pinstripe-hype-mint-sage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Pinstripe Hype, Mint Sage, Phillipe Romano, pr-capital-london, quote-only, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386650163,
+   "sampleSku": "DWPP-205237-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488869939,
+   "handle": "london-pinstripe-hype-navy-blinds-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, London, London Pinstripe Hype, Navy Blinds, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386715699,
+   "sampleSku": "DWPP-205242-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488575027,
+   "handle": "london-pinstripe-hype-salt-pepper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Salt & Pepper, Silver, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386781235,
+   "sampleSku": "DWPP-205234-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488771635,
+   "handle": "london-pinstripe-hype-solar-panel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Silver, Solar Panel, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792386814003,
+   "sampleSku": "DWPP-205240-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488837171,
+   "handle": "london-pinstripe-hype-steel-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Silver, Steel Blue, Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792392220723,
+   "sampleSku": "DWPP-205241-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488607795,
+   "handle": "london-pinstripe-hype-white-satin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Pinstripe Hype, Phillipe Romano, pr-capital-london, quote-only, Stripe, Type II, Wallcovering, White Satin",
+   "sampleVariantId": 44792392384563,
+   "sampleSku": "DWPP-205235-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489197619,
+   "handle": "london-silk-cascade-bluff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bluff, contact-for-price, Contract Vinyl, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792392941619,
+   "sampleSku": "DWPP-205251-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489263155,
+   "handle": "london-silk-cascade-canyon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Canyon, contact-for-price, Contract Vinyl, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Tan, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792392974387,
+   "sampleSku": "DWPP-205252-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489164851,
+   "handle": "london-silk-cascade-desert-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Desert, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792393039923,
+   "sampleSku": "DWPP-205250-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489066547,
+   "handle": "london-silk-cascade-icicle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Icicle, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792393072691,
+   "sampleSku": "DWPP-205247-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489132083,
+   "handle": "london-silk-cascade-moonlight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Silk Cascade, Moonlight, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393105459,
+   "sampleSku": "DWPP-205249-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489099315,
+   "handle": "london-silk-cascade-nickel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Silk Cascade, Nickel, Phillipe Romano, pr-capital-london, quote-only, Silk, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792393138227,
+   "sampleSku": "DWPP-205248-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896488935475,
+   "handle": "london-silk-cascade-rainfall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Rainfall, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792393203763,
+   "sampleSku": "DWPP-205244-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489328691,
+   "handle": "london-silk-cascade-shimmer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Shimmer, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792393236531,
+   "sampleSku": "DWPP-205253-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489033779,
+   "handle": "london-silk-cascade-thunder-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Thunder, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792393334835,
+   "sampleSku": "DWPP-205246-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489001011,
+   "handle": "london-silk-cascade-tuxedo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Silk Cascade, Phillipe Romano, pr-capital-london, quote-only, Silk, Silver, Traditional, Tuxedo, Type II, Wallcovering",
+   "sampleVariantId": 44792393367603,
+   "sampleSku": "DWPP-205245-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489459763,
+   "handle": "london-silk-road-black-tea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Tea, Bohemian, Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393400371,
+   "sampleSku": "DWPP-205257-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489492531,
+   "handle": "london-silk-road-china-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "China White, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393465907,
+   "sampleSku": "DWPP-205258-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489558067,
+   "handle": "london-silk-road-gun-powder-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Gold, Gun Powder, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393531443,
+   "sampleSku": "DWPP-205260-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489361459,
+   "handle": "london-silk-road-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Indigo, London, London Silk Road, Navy, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393662515,
+   "sampleSku": "DWPP-205254-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489590835,
+   "handle": "london-silk-road-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, Cream, display_variant, Ivory, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393695283,
+   "sampleSku": "DWPP-205261-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489525299,
+   "handle": "london-silk-road-mystical-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Silk Road, Mystical, Phillipe Romano, pr-capital-london, quote-only, Silk, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792393793587,
+   "sampleSku": "DWPP-205259-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489394227,
+   "handle": "london-silk-road-salt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Salt, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393859123,
+   "sampleSku": "DWPP-205255-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489623603,
+   "handle": "london-silk-road-sesame-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Sesame, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792393891891,
+   "sampleSku": "DWPP-205262-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489426995,
+   "handle": "london-silk-road-silver-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792393924659,
+   "sampleSku": "DWPP-205256-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489656371,
+   "handle": "london-silk-road-wheat-silk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Silk Road, Phillipe Romano, pr-capital-london, quote-only, Silk, Type II, Wallcovering, Wheat Silk",
+   "sampleVariantId": 44792393990195,
+   "sampleSku": "DWPP-205263-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490049587,
+   "handle": "london-soho-boho-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, Boho Beige, contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792394055731,
+   "sampleSku": "DWPP-205273-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490016819,
+   "handle": "london-soho-caffe-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Caffe Cream, contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792394121267,
+   "sampleSku": "DWPP-205272-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489787443,
+   "handle": "london-soho-cobalt-club-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, Cobalt Club, contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792394154035,
+   "sampleSku": "DWPP-205266-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489885747,
+   "handle": "london-soho-cobblestone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cobblestone, contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792394285107,
+   "sampleSku": "DWPP-205269-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489951283,
+   "handle": "london-soho-gallery-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gallery Grey, Gray, London, London Soho, Modern, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792394317875,
+   "sampleSku": "DWPP-205270-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489984051,
+   "handle": "london-soho-hugo-moss-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Hugo Moss, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792394350643,
+   "sampleSku": "DWPP-205271-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489689139,
+   "handle": "london-soho-rooftop-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Rooftop Frost, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792394416179,
+   "sampleSku": "DWPP-205264-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489754675,
+   "handle": "london-soho-skyscraper-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho, Modern, Phillipe Romano, pr-capital-london, quote-only, Silver, Skyscraper Blue, Type II, Wallcovering",
+   "sampleVariantId": 44792394448947,
+   "sampleSku": "DWPP-205265-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489852979,
+   "handle": "london-soho-street-chic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Silver, Street Chic, Type II, Wallcovering",
+   "sampleVariantId": 44792394547251,
+   "sampleSku": "DWPP-205268-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896489820211,
+   "handle": "london-soho-subway-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Soho, Phillipe Romano, pr-capital-london, quote-only, Subway Slate, Type II, Wallcovering",
+   "sampleVariantId": 44792394842163,
+   "sampleSku": "DWPP-205267-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490475571,
+   "handle": "london-soho-underground-caffe-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Caffe Cream, contact-for-price, Contract Vinyl, display_variant, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792395104307,
+   "sampleSku": "DWPP-205282-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490508339,
+   "handle": "london-soho-underground-cast-iron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Cast Iron, contact-for-price, Contract Vinyl, display_variant, Industrial, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792395169843,
+   "sampleSku": "DWPP-205283-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490442803,
+   "handle": "london-soho-underground-cobblestone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cobblestone, contact-for-price, Contract Vinyl, display_variant, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792395202611,
+   "sampleSku": "DWPP-205281-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490115123,
+   "handle": "london-soho-underground-downtown-teal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Downtown Teal, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792395235379,
+   "sampleSku": "DWPP-205275-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490344499,
+   "handle": "london-soho-underground-gallery-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gallery Grey, Gray, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792395268147,
+   "sampleSku": "DWPP-205278-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490213427,
+   "handle": "london-soho-underground-purple-pub-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Soho Underground, Phillipe Romano, pr-capital-london, Purple Pub, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792395300915,
+   "sampleSku": "DWPP-205276-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490278963,
+   "handle": "london-soho-underground-rooftop-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Rooftop Frost, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792395366451,
+   "sampleSku": "DWPP-205277-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490082355,
+   "handle": "london-soho-underground-sky-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Silver, Sky Blue, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792395464755,
+   "sampleSku": "DWPP-205274-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490410035,
+   "handle": "london-soho-underground-street-chic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Silver, Street Chic, Type II, Wallcovering",
+   "sampleVariantId": 44792395497523,
+   "sampleSku": "DWPP-205280-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490377267,
+   "handle": "london-soho-underground-subway-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Soho Underground, Phillipe Romano, pr-capital-london, quote-only, Subway Slate, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792395530291,
+   "sampleSku": "DWPP-205279-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490737715,
+   "handle": "london-tahitian-linen-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, Cream, display_variant, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792395595827,
+   "sampleSku": "DWPP-205289-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490573875,
+   "handle": "london-tahitian-linen-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Denim, display_variant, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792395661363,
+   "sampleSku": "DWPP-205285-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490672179,
+   "handle": "london-tahitian-linen-emerald-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Emerald, Gray, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792395792435,
+   "sampleSku": "DWPP-205287-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490836019,
+   "handle": "london-tahitian-linen-flint-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Flint, Gray, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792396120115,
+   "sampleSku": "DWPP-205292-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490770483,
+   "handle": "london-tahitian-linen-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ice, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792396349491,
+   "sampleSku": "DWPP-205290-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490868787,
+   "handle": "london-tahitian-linen-ivory-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ivory, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792396382259,
+   "sampleSku": "DWPP-205293-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490639411,
+   "handle": "london-tahitian-linen-pacific-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London Tahitian Linen, Pacific, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792396611635,
+   "sampleSku": "DWPP-205286-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490803251,
+   "handle": "london-tahitian-linen-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, London, London Tahitian Linen, Pebble, Phillipe Romano, pr-capital-london, quote-only, Rustic, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792396644403,
+   "sampleSku": "DWPP-205291-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490541107,
+   "handle": "london-tahitian-linen-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Sand, Type II, Wallcovering",
+   "sampleVariantId": 44792418435123,
+   "sampleSku": "DWPP-205284-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490704947,
+   "handle": "london-tahitian-linen-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Linen, London, London Tahitian Linen, Phillipe Romano, pr-capital-london, quote-only, Rustic, Slate, Type II, Wallcovering",
+   "sampleVariantId": 44792418500659,
+   "sampleSku": "DWPP-205288-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490999859,
+   "handle": "london-tahitian-tapa-coffee-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Coffee, contact-for-price, Contract Vinyl, display_variant, London, London Tahitian Tapa, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792418566195,
+   "sampleSku": "DWPP-205297-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491098163,
+   "handle": "london-tahitian-tapa-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Denim, display_variant, London, London Tahitian Tapa, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792418893875,
+   "sampleSku": "DWPP-205300-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491032627,
+   "handle": "london-tahitian-tapa-flax-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Flax, London, London Tahitian Tapa, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792418926643,
+   "sampleSku": "DWPP-205298-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490901555,
+   "handle": "london-tahitian-tapa-natural-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Tahitian Tapa, Natural Sand, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792419057715,
+   "sampleSku": "DWPP-205294-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491065395,
+   "handle": "london-tahitian-tapa-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Tahitian Tapa, Pebble, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792419221555,
+   "sampleSku": "DWPP-205299-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490967091,
+   "handle": "london-tahitian-tapa-terracotta-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, London, London Tahitian Tapa, Phillipe Romano, pr-capital-london, quote-only, Tan, Terracotta, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792419549235,
+   "sampleSku": "DWPP-205296-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896490934323,
+   "handle": "london-tahitian-tapa-white-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Tahitian Tapa, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White Sand",
+   "sampleVariantId": 44792419582003,
+   "sampleSku": "DWPP-205295-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491196467,
+   "handle": "london-turn-to-stone-chic-cinder-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Chic Cinder, contact-for-price, Contract Vinyl, display_variant, London, London Turn To Stone, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792419778611,
+   "sampleSku": "DWPP-205302-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491229235,
+   "handle": "london-turn-to-stone-crystalized-cobalt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Crystalized Cobalt, display_variant, London, London Turn To Stone, Phillipe Romano, pr-capital-london, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792420139059,
+   "sampleSku": "DWPP-205303-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491327539,
+   "handle": "london-turn-to-stone-elegant-onyx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Elegant Onyx, London, London Turn To Stone, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792420401203,
+   "sampleSku": "DWPP-205306-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491262003,
+   "handle": "london-turn-to-stone-perfect-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, London, London Turn To Stone, Perfect Pebble, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792420466739,
+   "sampleSku": "DWPP-205304-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491163699,
+   "handle": "london-turn-to-stone-quartzite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Turn To Stone, Phillipe Romano, pr-capital-london, Quartzite, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792420532275,
+   "sampleSku": "DWPP-205301-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491294771,
+   "handle": "london-turn-to-stone-sandstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Turn To Stone, Phillipe Romano, pr-capital-london, quote-only, Sandstone, Type II, Wallcovering",
+   "sampleVariantId": 44792420728883,
+   "sampleSku": "DWPP-205305-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491524147,
+   "handle": "london-tuscan-plaster-alabaster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alabaster, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792420859955,
+   "sampleSku": "DWPP-205312-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491393075,
+   "handle": "london-tuscan-plaster-fossil-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Fossil, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792421122099,
+   "sampleSku": "DWPP-205308-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491360307,
+   "handle": "london-tuscan-plaster-limewash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Limewash, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792421318707,
+   "sampleSku": "DWPP-205307-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491458611,
+   "handle": "london-tuscan-plaster-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Tuscan Plaster, Mineral, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792421449779,
+   "sampleSku": "DWPP-205310-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491589683,
+   "handle": "london-tuscan-plaster-pumice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, Pumice, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792421515315,
+   "sampleSku": "DWPP-205314-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491622451,
+   "handle": "london-tuscan-plaster-rustic-clay-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Rustic, Rustic Clay, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792421613619,
+   "sampleSku": "DWPP-205315-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491687987,
+   "handle": "london-tuscan-plaster-smoky-sage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Silver, Smoky Sage, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792421744691,
+   "sampleSku": "DWPP-205316-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491425843,
+   "handle": "london-tuscan-plaster-soapstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Silver, Soapstone, Type II, Wallcovering",
+   "sampleVariantId": 44792421842995,
+   "sampleSku": "DWPP-205309-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491491379,
+   "handle": "london-tuscan-plaster-underground-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Type II, Underground, Wallcovering",
+   "sampleVariantId": 44792421941299,
+   "sampleSku": "DWPP-205311-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491556915,
+   "handle": "london-tuscan-plaster-warm-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Tuscan Plaster, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Warm Cream",
+   "sampleVariantId": 44792422203443,
+   "sampleSku": "DWPP-205313-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493522995,
+   "handle": "london-velvet-arches-black-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Pewter, contact-for-price, Contract Vinyl, display_variant, Gray, London, London Velvet Arches, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422268979,
+   "sampleSku": "DWPP-205330-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896492081203,
+   "handle": "london-velvet-arches-curved-chalk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Curved Chalk, display_variant, London, London Velvet Arches, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422400051,
+   "sampleSku": "DWPP-205327-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493555763,
+   "handle": "london-velvet-arches-golden-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Golden White, London, London Velvet Arches, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422498355,
+   "sampleSku": "DWPP-205331-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896492441651,
+   "handle": "london-velvet-arches-grey-bend-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Bend, London, London Velvet Arches, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422662195,
+   "sampleSku": "DWPP-205328-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493588531,
+   "handle": "london-velvet-arches-opal-arc-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet Arches, Opal Arc, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422727731,
+   "sampleSku": "DWPP-205332-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493228083,
+   "handle": "london-velvet-arches-pacific-silver-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet Arches, Pacific Silver, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792422826035,
+   "sampleSku": "DWPP-205329-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493621299,
+   "handle": "london-velvet-arches-wild-rose-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Floral, London, London Velvet Arches, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Velvet, Wallcovering, Wild Rose",
+   "sampleVariantId": 44792422891571,
+   "sampleSku": "DWPP-205333-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491851827,
+   "handle": "london-velvet-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792423088179,
+   "sampleSku": "DWPP-205321-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491819059,
+   "handle": "london-velvet-chalk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chalk, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792423153715,
+   "sampleSku": "DWPP-205320-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493850675,
+   "handle": "london-velvet-corduroy-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792423284787,
+   "sampleSku": "DWPP-205339-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493981747,
+   "handle": "london-velvet-corduroy-camel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Camel, contact-for-price, Contract Vinyl, display_variant, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792423809075,
+   "sampleSku": "DWPP-205343-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493654067,
+   "handle": "london-velvet-corduroy-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792423940147,
+   "sampleSku": "DWPP-205334-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493719603,
+   "handle": "london-velvet-corduroy-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Indigo, London, London Velvet Corduroy, Navy, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424202291,
+   "sampleSku": "DWPP-205336-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493752371,
+   "handle": "london-velvet-corduroy-kohl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Kohl, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424267827,
+   "sampleSku": "DWPP-205337-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493948979,
+   "handle": "london-velvet-corduroy-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet Corduroy, Opal, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424398899,
+   "sampleSku": "DWPP-205342-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493686835,
+   "handle": "london-velvet-corduroy-pacific-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet Corduroy, Pacific, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424529971,
+   "sampleSku": "DWPP-205335-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493883443,
+   "handle": "london-velvet-corduroy-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Shadow, Silver, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424595507,
+   "sampleSku": "DWPP-205340-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493916211,
+   "handle": "london-velvet-corduroy-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Silver, Taupe, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424661043,
+   "sampleSku": "DWPP-205341-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896493817907,
+   "handle": "london-velvet-corduroy-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet Corduroy, Phillipe Romano, pr-capital-london, quote-only, Type II, Velvet, Wallcovering, White",
+   "sampleVariantId": 44792424759347,
+   "sampleSku": "DWPP-205338-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491720755,
+   "handle": "london-velvet-grey-bend-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Grey Bend, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Silver, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424890419,
+   "sampleSku": "DWPP-205317-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491786291,
+   "handle": "london-velvet-kohl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Kohl, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792424955955,
+   "sampleSku": "DWPP-205319-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491982899,
+   "handle": "london-velvet-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet, Opal, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792425021491,
+   "sampleSku": "DWPP-205324-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491917363,
+   "handle": "london-velvet-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, London, London Velvet, Pewter, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792425152563,
+   "sampleSku": "DWPP-205322-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896492048435,
+   "handle": "london-velvet-putty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, Putty, quote-only, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792425250867,
+   "sampleSku": "DWPP-205326-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491753523,
+   "handle": "london-velvet-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Shadow, Silver, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792425283635,
+   "sampleSku": "DWPP-205318-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896492015667,
+   "handle": "london-velvet-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Silver, Taupe, Traditional, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792429445171,
+   "sampleSku": "DWPP-205325-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896491950131,
+   "handle": "london-velvet-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Velvet, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Velvet, Wallcovering, White",
+   "sampleVariantId": 44792429477939,
+   "sampleSku": "DWPP-205323-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494276659,
+   "handle": "london-vertex-aged-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aged Pewter, contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792429543475,
+   "sampleSku": "DWPP-205351-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494309427,
+   "handle": "london-vertex-infinity-steel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Infinity Steel, London, London Vertex, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792429609011,
+   "sampleSku": "DWPP-205352-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494211123,
+   "handle": "london-vertex-matte-black-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black, contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Matte Black, Phillipe Romano, pr-capital-london, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792429641779,
+   "sampleSku": "DWPP-205349-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494112819,
+   "handle": "london-vertex-matte-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Matte Grey, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792429674547,
+   "sampleSku": "DWPP-205346-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494047283,
+   "handle": "london-vertex-matte-oyster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Matte Oyster, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792429707315,
+   "sampleSku": "DWPP-205345-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494014515,
+   "handle": "london-vertex-matte-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Matte White, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792429740083,
+   "sampleSku": "DWPP-205344-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494342195,
+   "handle": "london-vertex-nickel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Nickel, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792429772851,
+   "sampleSku": "DWPP-205353-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494243891,
+   "handle": "london-vertex-palest-silver-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Palest Silver, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792429838387,
+   "sampleSku": "DWPP-205350-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494178355,
+   "handle": "london-vertex-silverplate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Phillipe Romano, pr-capital-london, quote-only, Silver, Silverplate, Type II, Wallcovering",
+   "sampleVariantId": 44792429903923,
+   "sampleSku": "DWPP-205348-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494145587,
+   "handle": "london-vertex-white-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Vertex, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering, White Pearl",
+   "sampleVariantId": 44792429969459,
+   "sampleSku": "DWPP-205347-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494800947,
+   "handle": "london-weathered-metal-brushed-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Brushed Pewter, contact-for-price, Contract Vinyl, display_variant, Industrial, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431575091,
+   "sampleSku": "DWPP-205360-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494669875,
+   "handle": "london-weathered-metal-chalky-glow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chalky Glow, contact-for-price, Contract Vinyl, Cream, display_variant, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431673395,
+   "sampleSku": "DWPP-205358-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494407731,
+   "handle": "london-weathered-metal-faint-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Faint Cream, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431706163,
+   "sampleSku": "DWPP-205354-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494506035,
+   "handle": "london-weathered-metal-golden-fissures-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Golden Fissures, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431738931,
+   "sampleSku": "DWPP-205355-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494571571,
+   "handle": "london-weathered-metal-peach-alloy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Weathered Metal, Peach Alloy, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431804467,
+   "sampleSku": "DWPP-205356-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494637107,
+   "handle": "london-weathered-metal-rusting-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Rusting Blue, Type II, Wallcovering",
+   "sampleVariantId": 44792431837235,
+   "sampleSku": "DWPP-205357-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494735411,
+   "handle": "london-weathered-metal-sterling-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Weathered Metal, Phillipe Romano, pr-capital-london, quote-only, Sterling Stone, Type II, Wallcovering",
+   "sampleVariantId": 44792431870003,
+   "sampleSku": "DWPP-205359-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495161395,
+   "handle": "london-well-suited-black-tie-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Black Tie, contact-for-price, Contract Vinyl, display_variant, Gray, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431935539,
+   "sampleSku": "DWPP-205365-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495063091,
+   "handle": "london-well-suited-blue-collar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, Blue Collar, contact-for-price, Contract Vinyl, display_variant, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792431968307,
+   "sampleSku": "DWPP-205364-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495358003,
+   "handle": "london-well-suited-charming-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Charming, Chinoiserie, contact-for-price, Contract Vinyl, display_variant, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792432001075,
+   "sampleSku": "DWPP-205370-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495030323,
+   "handle": "london-well-suited-cool-threads-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cool Threads, display_variant, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792434098227,
+   "sampleSku": "DWPP-205363-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495226931,
+   "handle": "london-well-suited-cosmopolitan-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cosmopolitan, Cream, display_variant, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792434130995,
+   "sampleSku": "DWPP-205367-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495325235,
+   "handle": "london-well-suited-dapper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Dapper, display_variant, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Tan, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792434163763,
+   "sampleSku": "DWPP-205369-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495194163,
+   "handle": "london-well-suited-french-cuffs-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, French Cuffs, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792434196531,
+   "sampleSku": "DWPP-205366-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495292467,
+   "handle": "london-well-suited-grey-loafers-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Grey Loafers, London, London Well Suited, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792434229299,
+   "sampleSku": "DWPP-205368-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494866483,
+   "handle": "london-well-suited-nobleman-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Well Suited, Nobleman, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792434262067,
+   "sampleSku": "DWPP-205361-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896494932019,
+   "handle": "london-well-suited-polished-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Well Suited, Phillipe Romano, Polished White, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792434294835,
+   "sampleSku": "DWPP-205362-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495652915,
+   "handle": "london-willow-creamy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Creamy, display_variant, London, London Willow, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792434327603,
+   "sampleSku": "DWPP-205375-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495685683,
+   "handle": "london-willow-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, London, London Willow, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792434393139,
+   "sampleSku": "DWPP-205376-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495587379,
+   "handle": "london-willow-midnight-glow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, London, London Willow, Midnight Glow, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792434524211,
+   "sampleSku": "DWPP-205374-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495489075,
+   "handle": "london-willow-misty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow, Misty, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792434556979,
+   "sampleSku": "DWPP-205372-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495718451,
+   "handle": "london-willow-neutral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow, Neutral, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792434589747,
+   "sampleSku": "DWPP-205377-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495521843,
+   "handle": "london-willow-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Willow, Phillipe Romano, pr-capital-london, quote-only, Silver, Stormy, Type II, Wallcovering",
+   "sampleVariantId": 44792434622515,
+   "sampleSku": "DWPP-205373-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496078899,
+   "handle": "london-willow-weave-creamy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Creamy, display_variant, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792435834931,
+   "sampleSku": "DWPP-205386-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495947827,
+   "handle": "london-willow-weave-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dove, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792435867699,
+   "sampleSku": "DWPP-205383-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495882291,
+   "handle": "london-willow-weave-midnight-glow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, London, London Willow Weave, Midnight Glow, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792435933235,
+   "sampleSku": "DWPP-205381-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495915059,
+   "handle": "london-willow-weave-misty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow Weave, Misty, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792435998771,
+   "sampleSku": "DWPP-205382-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495980595,
+   "handle": "london-willow-weave-nest-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, London, London Willow Weave, Nest, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792436031539,
+   "sampleSku": "DWPP-205384-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496111667,
+   "handle": "london-willow-weave-neutral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow Weave, Neutral, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792436064307,
+   "sampleSku": "DWPP-205387-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495783987,
+   "handle": "london-willow-weave-rain-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Rain, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792436097075,
+   "sampleSku": "DWPP-205379-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495849523,
+   "handle": "london-willow-weave-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Silver, Stormy, Type II, Wallcovering",
+   "sampleVariantId": 44792436162611,
+   "sampleSku": "DWPP-205380-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496046131,
+   "handle": "london-willow-weave-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Taupe, Type II, Wallcovering",
+   "sampleVariantId": 44792436228147,
+   "sampleSku": "DWPP-205385-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495751219,
+   "handle": "london-willow-weave-winter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow Weave, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering, Winter",
+   "sampleVariantId": 44792436326451,
+   "sampleSku": "DWPP-205378-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896495423539,
+   "handle": "london-willow-winter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Willow, Phillipe Romano, pr-capital-london, quote-only, Traditional, Type II, Wallcovering, Winter",
+   "sampleVariantId": 44792436359219,
+   "sampleSku": "DWPP-205371-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496472115,
+   "handle": "london-woodworker-antique-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antique Grey, contact-for-price, Contract Vinyl, display_variant, Gold, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792436391987,
+   "sampleSku": "DWPP-205395-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496537651,
+   "handle": "london-woodworker-bannister-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bannister, contact-for-price, Contract Vinyl, display_variant, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792436424755,
+   "sampleSku": "DWPP-205397-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496373811,
+   "handle": "london-woodworker-butternut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Butternut, contact-for-price, Contract Vinyl, display_variant, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792436850739,
+   "sampleSku": "DWPP-205392-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496275507,
+   "handle": "london-woodworker-chatswood-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chatswood Grey, contact-for-price, Contract Vinyl, display_variant, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792437080115,
+   "sampleSku": "DWPP-205390-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496341043,
+   "handle": "london-woodworker-exotic-black-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Exotic Black, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792445894707,
+   "sampleSku": "DWPP-205391-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496144435,
+   "handle": "london-woodworker-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Frost, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792446058547,
+   "sampleSku": "DWPP-205388-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496406579,
+   "handle": "london-woodworker-gris-beige-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Gris Beige, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792446091315,
+   "sampleSku": "DWPP-205393-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496439347,
+   "handle": "london-woodworker-havana-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Havana, London, London Woodworker, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792446124083,
+   "sampleSku": "DWPP-205394-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496504883,
+   "handle": "london-woodworker-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, London, London Woodworker, Natural, Phillipe Romano, pr-capital-london, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792446451763,
+   "sampleSku": "DWPP-205396-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496209971,
+   "handle": "london-woodworker-pale-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, London, London Woodworker, Pale Ash, Phillipe Romano, pr-capital-london, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792446484531,
+   "sampleSku": "DWPP-205389-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4395703861299,
+   "handle": "luxuria-fine-textile-wallcoverings-m2661",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Burnt Sienna, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Brown, display_variant, Luxuria Fine Textile, material-group-natural-fiber, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Oxblood, Phillipe Romano, Red, Showroom Line, Solid, Stripe, Textile, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31404061524019,
+   "sampleSku": "M2661",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4395704549427,
+   "handle": "luxuria-fine-textile-wallcoverings-m3004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Light Blue, Luxuria Fine Textile, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Powder Blue, Showroom Line, Silver, Stripe, Textile, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 31404063785011,
+   "sampleSku": "M3004",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4395703533619,
+   "handle": "luxuria-fine-textile-wallcoverings-m2623",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Gold, Luxuria Fine Textile, Needs-Image, Needs-Price, Needs-Width, Pale Gold, Phillipe Romano, Showroom Line, Stripe, Tan, Textile, Texture, Textured, Traditional, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 31404060934195,
+   "sampleSku": "M2623",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 4395708088371,
+   "handle": "luxuria-fine-textile-wallcoverings-m6027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, display_variant, Fabric, Luxuria Fine Textile, material-group-textured, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Red, Rosewood, Rosy Brown, Showroom Line, Textile, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 31404083413043,
+   "sampleSku": "M6027",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512856115,
+   "handle": "madrid-borderline-carbon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Carbon, contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792446681139,
+   "sampleSku": "DWPP-205960-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512790579,
+   "handle": "madrid-borderline-good-as-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Good As Gold, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792446713907,
+   "sampleSku": "DWPP-205958-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512921651,
+   "handle": "madrid-borderline-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Graphite, Gray, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447008819,
+   "sampleSku": "DWPP-205962-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512823347,
+   "handle": "madrid-borderline-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447041587,
+   "sampleSku": "DWPP-205959-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513085491,
+   "handle": "madrid-borderline-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lagoon, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792447238195,
+   "sampleSku": "DWPP-205965-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513151027,
+   "handle": "madrid-borderline-marina-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Borderline, Marina, Navy, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447336499,
+   "sampleSku": "DWPP-205966-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512987187,
+   "handle": "madrid-borderline-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Madrid, Madrid Borderline, Mineral, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447369267,
+   "sampleSku": "DWPP-205964-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512888883,
+   "handle": "madrid-borderline-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Borderline, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792447402035,
+   "sampleSku": "DWPP-205961-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512954419,
+   "handle": "madrid-borderline-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Borderline, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Type II, Wallcovering",
+   "sampleVariantId": 44792447467571,
+   "sampleSku": "DWPP-205963-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513183795,
+   "handle": "madrid-cliffhanger-blue-green-beams-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue-Green Beams, contact-for-price, Contract Vinyl, display_variant, Geometric, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792447598643,
+   "sampleSku": "DWPP-205967-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513380403,
+   "handle": "madrid-cliffhanger-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, Denim, display_variant, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447762483,
+   "sampleSku": "DWPP-205971-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513609779,
+   "handle": "madrid-cliffhanger-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graphite, Gray, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792447926323,
+   "sampleSku": "DWPP-205975-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513282099,
+   "handle": "madrid-cliffhanger-heathered-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Heathered, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792448024627,
+   "sampleSku": "DWPP-205969-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513347635,
+   "handle": "madrid-cliffhanger-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lagoon, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792448221235,
+   "sampleSku": "DWPP-205970-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513577011,
+   "handle": "madrid-cliffhanger-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Cliffhanger, Mink, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792448286771,
+   "sampleSku": "DWPP-205974-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513216563,
+   "handle": "madrid-cliffhanger-mixed-metals-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Cliffhanger, Mixed Metals, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792448450611,
+   "sampleSku": "DWPP-205968-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513511475,
+   "handle": "madrid-cliffhanger-sahara-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Sahara, Type II, Wallcovering",
+   "sampleVariantId": 44792448483379,
+   "sampleSku": "DWPP-205973-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513413171,
+   "handle": "madrid-cliffhanger-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Cliffhanger, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Type II, Wallcovering",
+   "sampleVariantId": 44792448712755,
+   "sampleSku": "DWPP-205972-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513773619,
+   "handle": "madrid-coast-to-coast-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792448745523,
+   "sampleSku": "DWPP-205978-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514035763,
+   "handle": "madrid-coast-to-coast-cornflower-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, Cornflower, display_variant, Floral, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792448811059,
+   "sampleSku": "DWPP-205984-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514002995,
+   "handle": "madrid-coast-to-coast-golden-wheat-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Golden Wheat, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792448843827,
+   "sampleSku": "DWPP-205983-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513970227,
+   "handle": "madrid-coast-to-coast-latte-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Latte, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792449040435,
+   "sampleSku": "DWPP-205982-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513806387,
+   "handle": "madrid-coast-to-coast-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792449171507,
+   "sampleSku": "DWPP-205979-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514068531,
+   "handle": "madrid-coast-to-coast-meadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Botanical, Coastal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Meadow, Phillipe Romano, pr-capital-madrid, quote-only, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792449237043,
+   "sampleSku": "DWPP-205985-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513708083,
+   "handle": "madrid-coast-to-coast-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Mineral, Phillipe Romano, pr-capital-madrid, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792449466419,
+   "sampleSku": "DWPP-205977-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513937459,
+   "handle": "madrid-coast-to-coast-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792449531955,
+   "sampleSku": "DWPP-205981-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513904691,
+   "handle": "madrid-coast-to-coast-putty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Coastal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, Putty, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792449597491,
+   "sampleSku": "DWPP-205980-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896513675315,
+   "handle": "madrid-coast-to-coast-vino-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Coast To Coast, Phillipe Romano, pr-capital-madrid, quote-only, Red, Type II, Vino, Wallcovering",
+   "sampleVariantId": 44792449728563,
+   "sampleSku": "DWPP-205976-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514166835,
+   "handle": "madrid-curve-appeal-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792449794099,
+   "sampleSku": "DWPP-205987-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514396211,
+   "handle": "madrid-curve-appeal-earth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Earth, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, quote-only, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792449826867,
+   "sampleSku": "DWPP-205994-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514363443,
+   "handle": "madrid-curve-appeal-latte-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Latte, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792449859635,
+   "sampleSku": "DWPP-205993-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514330675,
+   "handle": "madrid-curve-appeal-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792450023475,
+   "sampleSku": "DWPP-205992-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514199603,
+   "handle": "madrid-curve-appeal-meadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Botanical, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Curve Appeal, Meadow, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792450089011,
+   "sampleSku": "DWPP-205988-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514265139,
+   "handle": "madrid-curve-appeal-pavement-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gray, Madrid, Madrid Curve Appeal, Pavement, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792450187315,
+   "sampleSku": "DWPP-205990-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514101299,
+   "handle": "madrid-curve-appeal-pond-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Curve Appeal, Phillipe Romano, Pond, pr-capital-madrid, quote-only, Teal, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792450318387,
+   "sampleSku": "DWPP-205986-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514232371,
+   "handle": "madrid-curve-appeal-putty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, Putty, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792450383923,
+   "sampleSku": "DWPP-205989-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514297907,
+   "handle": "madrid-curve-appeal-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Curve Appeal, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792450416691,
+   "sampleSku": "DWPP-205991-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514428979,
+   "handle": "madrid-ebb-and-flow-blue-streak-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Streak, contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Ebb and Flow, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792450514995,
+   "sampleSku": "DWPP-205995-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514494515,
+   "handle": "madrid-ebb-and-flow-influencer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Influencer, Madrid, Madrid Ebb and Flow, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792450678835,
+   "sampleSku": "DWPP-205996-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514527283,
+   "handle": "madrid-ebb-and-flow-outside-the-lines-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Ebb and Flow, Outside the Lines, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792450744371,
+   "sampleSku": "DWPP-205997-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514592819,
+   "handle": "madrid-ebb-and-flow-shapeshifter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Ebb and Flow, Phillipe Romano, pr-capital-madrid, quote-only, Shapeshifter, Type II, Wallcovering",
+   "sampleVariantId": 44792450777139,
+   "sampleSku": "DWPP-205998-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514625587,
+   "handle": "madrid-ebb-and-flow-velocity-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Ebb and Flow, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Velocity, Wallcovering",
+   "sampleVariantId": 44792450842675,
+   "sampleSku": "DWPP-205999-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514789427,
+   "handle": "madrid-full-circle-highlight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Highlight, Madrid, Madrid Full Circle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792450908211,
+   "sampleSku": "DWPP-206003-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514691123,
+   "handle": "madrid-full-circle-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Full Circle, Mineral, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792450940979,
+   "sampleSku": "DWPP-206001-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514723891,
+   "handle": "madrid-full-circle-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Full Circle, Mink, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792455069747,
+   "sampleSku": "DWPP-206002-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514658355,
+   "handle": "madrid-full-circle-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Full Circle, Phillipe Romano, pr-capital-madrid, quote-only, Shadow, Type II, Wallcovering",
+   "sampleVariantId": 44792455299123,
+   "sampleSku": "DWPP-206000-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514822195,
+   "handle": "madrid-full-circle-teal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Full Circle, Navy, Phillipe Romano, pr-capital-madrid, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792455331891,
+   "sampleSku": "DWPP-206004-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514920499,
+   "handle": "madrid-great-plains-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792455397427,
+   "sampleSku": "DWPP-206007-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515838003,
+   "handle": "madrid-great-plains-latte-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Latte, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792455495731,
+   "sampleSku": "DWPP-206013-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515149875,
+   "handle": "madrid-great-plains-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792455561267,
+   "sampleSku": "DWPP-206008-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515575859,
+   "handle": "madrid-great-plains-meadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Botanical, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Great Plains, Meadow, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792455594035,
+   "sampleSku": "DWPP-206010-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515870771,
+   "handle": "madrid-great-plains-monsoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Great Plains, Monsoon, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792455757875,
+   "sampleSku": "DWPP-206014-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515772467,
+   "handle": "madrid-great-plains-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Madrid, Madrid Great Plains, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792455790643,
+   "sampleSku": "DWPP-206011-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515805235,
+   "handle": "madrid-great-plains-putty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, Putty, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792455856179,
+   "sampleSku": "DWPP-206012-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515379251,
+   "handle": "madrid-great-plains-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Type II, Wallcovering",
+   "sampleVariantId": 44792455888947,
+   "sampleSku": "DWPP-206009-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514854963,
+   "handle": "madrid-great-plains-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Shadow, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792455954483,
+   "sampleSku": "DWPP-206005-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896514887731,
+   "handle": "madrid-great-plains-white-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Great Plains, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering, White Smoke",
+   "sampleVariantId": 44792455987251,
+   "sampleSku": "DWPP-206006-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516001843,
+   "handle": "madrid-high-gear-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Madrid, Madrid High Gear, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456020019,
+   "sampleSku": "DWPP-206018-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515903539,
+   "handle": "madrid-high-gear-granite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Granite, Madrid, Madrid High Gear, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456085555,
+   "sampleSku": "DWPP-206015-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515936307,
+   "handle": "madrid-high-gear-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Madrid, Madrid High Gear, Phillipe Romano, pr-capital-madrid, quote-only, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792456151091,
+   "sampleSku": "DWPP-206016-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896515969075,
+   "handle": "madrid-high-gear-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Madrid, Madrid High Gear, Phillipe Romano, pr-capital-madrid, quote-only, Shadow, Type II, Wallcovering",
+   "sampleVariantId": 44792456183859,
+   "sampleSku": "DWPP-206017-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516034611,
+   "handle": "madrid-high-gear-white-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Madrid, Madrid High Gear, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering, White Smoke",
+   "sampleVariantId": 44792456282163,
+   "sampleSku": "DWPP-206019-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516067379,
+   "handle": "madrid-mix-this-bonds-wing-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bond's Wing, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792456347699,
+   "sampleSku": "DWPP-206020-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516984883,
+   "handle": "madrid-mix-this-bramble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bramble, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456446003,
+   "sampleSku": "DWPP-206029-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516395059,
+   "handle": "madrid-mix-this-colour-copy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Colour Copy, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792456478771,
+   "sampleSku": "DWPP-206023-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516788275,
+   "handle": "madrid-mix-this-dark-n-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Dark 'n Stormy, display_variant, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792456511539,
+   "sampleSku": "DWPP-206026-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516952115,
+   "handle": "madrid-mix-this-free-zone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Free Zone, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456609843,
+   "sampleSku": "DWPP-206028-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516886579,
+   "handle": "madrid-mix-this-glamour-daze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Glam, Glamour Daze, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456642611,
+   "sampleSku": "DWPP-206027-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516100147,
+   "handle": "madrid-mix-this-icebreaker-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Icebreaker, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456708147,
+   "sampleSku": "DWPP-206021-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516755507,
+   "handle": "madrid-mix-this-metropolis-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Madrid, Madrid Mix This, Metropolis, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792456970291,
+   "sampleSku": "DWPP-206025-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516526131,
+   "handle": "madrid-mix-this-paradise-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Mix This, Paradise, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792457003059,
+   "sampleSku": "DWPP-206024-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896516231219,
+   "handle": "madrid-mix-this-silverlake-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Mix This, Phillipe Romano, pr-capital-madrid, quote-only, Silverlake, Type II, Wallcovering",
+   "sampleVariantId": 44792457035827,
+   "sampleSku": "DWPP-206022-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517181491,
+   "handle": "madrid-penciled-in-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792457134131,
+   "sampleSku": "DWPP-206034-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517115955,
+   "handle": "madrid-penciled-in-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792457461811,
+   "sampleSku": "DWPP-206032-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517279795,
+   "handle": "madrid-penciled-in-desert-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Desert, display_variant, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792457494579,
+   "sampleSku": "DWPP-206036-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517148723,
+   "handle": "madrid-penciled-in-froth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Froth, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792457527347,
+   "sampleSku": "DWPP-206033-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517345331,
+   "handle": "madrid-penciled-in-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graphite, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792457658419,
+   "sampleSku": "DWPP-206037-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517017651,
+   "handle": "madrid-penciled-in-jade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Jade, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792457723955,
+   "sampleSku": "DWPP-206030-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517410867,
+   "handle": "madrid-penciled-in-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lagoon, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792457756723,
+   "sampleSku": "DWPP-206038-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517247027,
+   "handle": "madrid-penciled-in-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Penciled In, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792457887795,
+   "sampleSku": "DWPP-206035-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517443635,
+   "handle": "madrid-penciled-in-saddle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Saddle, Type II, Wallcovering",
+   "sampleVariantId": 44792457920563,
+   "sampleSku": "DWPP-206039-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517083187,
+   "handle": "madrid-penciled-in-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Penciled In, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792457953331,
+   "sampleSku": "DWPP-206031-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517673011,
+   "handle": "madrid-rock-steady-bare-surge-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bare Surge, Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792457986099,
+   "sampleSku": "DWPP-206044-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517574707,
+   "handle": "madrid-rock-steady-bongo-builder-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bongo Builder, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792458051635,
+   "sampleSku": "DWPP-206041-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517738547,
+   "handle": "madrid-rock-steady-boom-batch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Boom Batch, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Mid-Century Modern, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792458084403,
+   "sampleSku": "DWPP-206045-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517607475,
+   "handle": "madrid-rock-steady-cuffed-frenzy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Cuffed Frenzy, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792458149939,
+   "sampleSku": "DWPP-206042-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517804083,
+   "handle": "madrid-rock-steady-hi-rise-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Hi-Rise, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792458182707,
+   "sampleSku": "DWPP-206047-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517476403,
+   "handle": "madrid-rock-steady-midtown-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Midtown, Phillipe Romano, pr-capital-madrid, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792458215475,
+   "sampleSku": "DWPP-206040-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517836851,
+   "handle": "madrid-rock-steady-rock-da-block-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Industrial, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Rock Da Block, Type II, Wallcovering",
+   "sampleVariantId": 44792458248243,
+   "sampleSku": "DWPP-206048-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517640243,
+   "handle": "madrid-rock-steady-sugar-shade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Sugar Shade, Type II, Wallcovering",
+   "sampleVariantId": 44792458379315,
+   "sampleSku": "DWPP-206043-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517771315,
+   "handle": "madrid-rock-steady-uptown-cut-out-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Uptown Cut Out, Wallcovering",
+   "sampleVariantId": 44792458477619,
+   "sampleSku": "DWPP-206046-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517869619,
+   "handle": "madrid-rock-steady-utopia-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Rock Steady, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Utopia, Wallcovering",
+   "sampleVariantId": 44792458510387,
+   "sampleSku": "DWPP-206049-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518131763,
+   "handle": "madrid-sketchbook-charcoal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Gray, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792458641459,
+   "sampleSku": "DWPP-206054-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517967923,
+   "handle": "madrid-sketchbook-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering, White",
+   "sampleVariantId": 44792458739763,
+   "sampleSku": "DWPP-206051-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896517935155,
+   "handle": "madrid-sketchbook-cobalt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cobalt, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460148787,
+   "sampleSku": "DWPP-206050-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518262835,
+   "handle": "madrid-sketchbook-desert-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Desert, display_variant, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460181555,
+   "sampleSku": "DWPP-206057-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518197299,
+   "handle": "madrid-sketchbook-froth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Froth, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460214323,
+   "sampleSku": "DWPP-206055-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518295603,
+   "handle": "madrid-sketchbook-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graphite, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460247091,
+   "sampleSku": "DWPP-206058-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518098995,
+   "handle": "madrid-sketchbook-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lagoon, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460312627,
+   "sampleSku": "DWPP-206053-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518000691,
+   "handle": "madrid-sketchbook-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Sketchbook, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460345395,
+   "sampleSku": "DWPP-206052-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518230067,
+   "handle": "madrid-sketchbook-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Sketchbook, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792460378163,
+   "sampleSku": "DWPP-206056-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518459443,
+   "handle": "madrid-spectacular-highlight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Highlight, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792460410931,
+   "sampleSku": "DWPP-206060-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518918195,
+   "handle": "madrid-spectacular-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Indigo, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792460476467,
+   "sampleSku": "DWPP-206067-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518787123,
+   "handle": "madrid-spectacular-latte-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Latte, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792460509235,
+   "sampleSku": "DWPP-206064-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518557747,
+   "handle": "madrid-spectacular-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Mineral, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792460542003,
+   "sampleSku": "DWPP-206061-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518721587,
+   "handle": "madrid-spectacular-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Mink, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792460574771,
+   "sampleSku": "DWPP-206063-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518688819,
+   "handle": "madrid-spectacular-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792460607539,
+   "sampleSku": "DWPP-206062-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518819891,
+   "handle": "madrid-spectacular-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Sand, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792460640307,
+   "sampleSku": "DWPP-206065-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519016499,
+   "handle": "madrid-spectacular-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Shadow, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792460673075,
+   "sampleSku": "DWPP-206068-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518361139,
+   "handle": "madrid-spectacular-teal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792461033523,
+   "sampleSku": "DWPP-206059-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896518885427,
+   "handle": "madrid-spectacular-verde-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Madrid, Madrid Spectacular, Phillipe Romano, pr-capital-madrid, quote-only, Traditional, Type II, Verde, Wallcovering",
+   "sampleVariantId": 44792461066291,
+   "sampleSku": "DWPP-206066-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519278643,
+   "handle": "madrid-touchstone-cystalline-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cystalline, display_variant, Madrid, Madrid Touchstone, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461099059,
+   "sampleSku": "DWPP-206073-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519049267,
+   "handle": "madrid-touchstone-glacier-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Glacier, Madrid, Madrid Touchstone, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461131827,
+   "sampleSku": "DWPP-206069-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519213107,
+   "handle": "madrid-touchstone-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Graphite, Gray, Madrid, Madrid Touchstone, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792461164595,
+   "sampleSku": "DWPP-206072-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519180339,
+   "handle": "madrid-touchstone-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ice, Madrid, Madrid Touchstone, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461197363,
+   "sampleSku": "DWPP-206071-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519114803,
+   "handle": "madrid-touchstone-luster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Luster, Madrid, Madrid Touchstone, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461230131,
+   "sampleSku": "DWPP-206070-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519376947,
+   "handle": "madrid-trickle-down-foiled-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Foiled, Gray, Madrid, Madrid Trickle Down, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461262899,
+   "sampleSku": "DWPP-206076-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519311411,
+   "handle": "madrid-trickle-down-gold-rush-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold Rush, Madrid, Madrid Trickle Down, Phillipe Romano, pr-capital-madrid, quote-only, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792461295667,
+   "sampleSku": "DWPP-206074-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519344179,
+   "handle": "madrid-trickle-down-mixed-metals-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Madrid, Madrid Trickle Down, Mixed Metals, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461361203,
+   "sampleSku": "DWPP-206075-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519606323,
+   "handle": "madrid-truffle-aquadisiac-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aquadisiac, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461393971,
+   "sampleSku": "DWPP-206082-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519737395,
+   "handle": "madrid-truffle-champagne-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Champagne, contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461426739,
+   "sampleSku": "DWPP-206084-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519442483,
+   "handle": "madrid-truffle-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461459507,
+   "sampleSku": "DWPP-206078-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519409715,
+   "handle": "madrid-truffle-emerald-dream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Emerald Dream, Green, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461492275,
+   "sampleSku": "DWPP-206077-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519835699,
+   "handle": "madrid-truffle-fashion-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Fashion Ash, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461525043,
+   "sampleSku": "DWPP-206086-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519540787,
+   "handle": "madrid-truffle-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Graphite, Gray, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461623347,
+   "sampleSku": "DWPP-206080-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519770163,
+   "handle": "madrid-truffle-ice-petal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Floral, Ice Petal, Madrid, Madrid Truffle, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792461656115,
+   "sampleSku": "DWPP-206085-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519704627,
+   "handle": "madrid-truffle-mineral-water-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Truffle, Mineral Water, Navy, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461688883,
+   "sampleSku": "DWPP-206083-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519573555,
+   "handle": "madrid-truffle-pearly-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Madrid, Madrid Truffle, Pearly White, Phillipe Romano, pr-capital-madrid, quote-only, Type II, Wallcovering",
+   "sampleVariantId": 44792461754419,
+   "sampleSku": "DWPP-206081-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896519508019,
+   "handle": "madrid-truffle-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Madrid, Madrid Truffle, Pebble, Phillipe Romano, pr-capital-madrid, quote-only, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792461787187,
+   "sampleSku": "DWPP-206079-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499479277680,
+   "handle": "maiden-olefin-textile-walls-xwf-52290",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953070268528,
+   "sampleSku": "XWF-52290-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499479507056,
+   "handle": "maiden-olefin-textile-walls-xwf-52291",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953072758896,
+   "sampleSku": "XWF-52291-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499479736432,
+   "handle": "maiden-olefin-textile-walls-xwf-52292",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Gold, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13953074626672,
+   "sampleSku": "XWF-52292-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499480162416,
+   "handle": "maiden-olefin-textile-walls-xwf-52294",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953085997168,
+   "sampleSku": "XWF-52294-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499480326256,
+   "handle": "maiden-olefin-textile-walls-xwf-52295",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953086521456,
+   "sampleSku": "XWF-52295-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499480621168,
+   "handle": "maiden-olefin-textile-walls-xwh-52297",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953095237744,
+   "sampleSku": "XWH-52297-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499480948848,
+   "handle": "maiden-olefin-textile-walls-xwh-52299",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953099497584,
+   "sampleSku": "XWH-52299-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499481112688,
+   "handle": "maiden-olefin-textile-walls-xwh-52300",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953102970992,
+   "sampleSku": "XWH-52300-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499481276528,
+   "handle": "maiden-olefin-textile-walls-xwh-52301",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, Leed Walls, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953106083952,
+   "sampleSku": "XWH-52301-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499481440368,
+   "handle": "maiden-olefin-textile-walls-xwh-52302",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953111687280,
+   "sampleSku": "XWH-52302-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499481702512,
+   "handle": "maiden-olefin-textile-walls-xwh-52303",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953114112112,
+   "sampleSku": "XWH-52303-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500069920880,
+   "handle": "malibu-coast-paper-weave-prp-56533",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Coastal, Commercial, contact-for-price, display_variant, Grasscloth, Lattice, Natural, Natural Wallcovering, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13959792951408,
+   "sampleSku": "PRP-56533-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500070281328,
+   "handle": "malibu-coast-paper-weave-prp-56534",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, contact-for-price, Cream, display_variant, Lattice, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13959796949104,
+   "sampleSku": "PRP-56534-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882876129331,
+   "handle": "dwjj-40530-marco",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bella Italiano, Commercial, contact-for-price, display_variant, Eggshell, Grasscloth, Light Beige, Marco, Marco Paper Naturals, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 41180288319539,
+   "sampleSku": "DWJJ-40530-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882877046835,
+   "handle": "dwjj-40780-marco",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Black, Commercial, contact-for-price, display_variant, Ecru, Gold, grasscloth, Grasscloth Texture, Gray, Light Gray, Marco, Marco Printed Grasscloth on Mylar Foil Naturals, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Printed Grasscloth on Mylar Foil, Rustic, Sage, Showroom Line, Stripe, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 41180289630259,
+   "sampleSku": "DWJJ-40780-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882877079603,
+   "handle": "dwjj-40790-marco",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Black, Charcoal, Commercial, contact-for-price, display_variant, Geometric, grasscloth, Grasscloth Texture, Gray, Industrial, Light Gray, Marco, Marco Printed Grasscloth on Stripe Mylar Foil Naturals, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Printed Grasscloth on Mylar Foil, Showroom Line, Silver, Stripe, Tan, Textured, Wallcovering",
+   "sampleVariantId": 41180289663027,
+   "sampleSku": "DWJJ-40790-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500668690544,
+   "handle": "mare-island-stiple-dots-durable-xcj-34378",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Dots, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13967183282288,
+   "sampleSku": "XCJ-34378-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500669378672,
+   "handle": "mare-island-stiple-dots-durable-xcj-34380",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Dots, Gray, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967193997424,
+   "sampleSku": "XCJ-34380-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495928897648,
+   "handle": "mark-s-basketweave-wall-paper-grs-38028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Beige, Bone, Commercial, contact-for-price, display_variant, Grasscloth, Kyoto Garden Natural Weaves, Lattice, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13908992426096,
+   "sampleSku": "GRS-38028-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568289843,
+   "handle": "dwrt-5022-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Class A Fire Rated, Clay, Commercial, contact-for-price, Contemporary, Coral, Cottagecore, Cream, Damask, Dining Room, display_variant, Fabric, Floral, Glam, Grandmillennial, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598921779,
+   "sampleSku": "DWRT-5022F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568322611,
+   "handle": "dwrt-5023-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Champagne, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Damask, display_variant, Eggshell, Fabric, French Country, Glam, Grandmillennial, Hallway, Light Blue, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Sky Blue, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Yellow",
+   "sampleVariantId": 42827598954547,
+   "sampleSku": "DWRT-5023F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568355379,
+   "handle": "dwrt-5024-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Damask, Dining Room, display_variant, Dusty Blue, Fabric, Glam, Grandmillennial, Indigo, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Pale Beige, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827598987315,
+   "sampleSku": "DWRT-5024F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568388147,
+   "handle": "dwrt-5025-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Champagne, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Dining Room, display_variant, Eggshell, Fabric, Floral, French Country, Glam, Grandmillennial, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Ogee, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Rose, Screen Print, Screen Prints, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 42827599020083,
+   "sampleSku": "DWRT-5025F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568420915,
+   "handle": "dwrt-5026-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Damask, Dining Room, display_variant, Dusty Rose, Eggshell, Fabric, French Country, Glam, Grandmillennial, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599052851,
+   "sampleSku": "DWRT-5026F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568453683,
+   "handle": "dwrt-5027-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Damask, Dining Room, display_variant, Fabric, Floral, Glam, Grandmillennial, Green, Living Room, Marrakesh Glam, Medallion, Moss, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599085619,
+   "sampleSku": "DWRT-5027F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568486451,
+   "handle": "dwrt-5028-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Damask, Dining Room, display_variant, Eggshell, Fabric, Glam, Grandmillennial, Green, Light Green, Living Room, Marrakesh Glam, Medallion, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Sage, Sage Green, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599118387,
+   "sampleSku": "DWRT-5028F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568551987,
+   "handle": "dwrt-5029-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, Cottagecore, Cream, Damask, Dining Room, display_variant, Eggshell, Fabric, French Country, Glam, Gold, Grandmillennial, Living Room, Marrakesh Glam, Medallion, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Sophisticated, Traditional, Trending Wallcovering Collection 2024, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 42827599183923,
+   "sampleSku": "DWRT-5029F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568584755,
+   "handle": "dwrt-5030-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Damask, Dining Room, display_variant, English Country, Fabric, Floral, Geometric, Glam, Grandmillennial, Indigo, Living Room, Marrakesh Glam, Medallion, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599216691,
+   "sampleSku": "DWRT-5030F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568617523,
+   "handle": "dwrt-5031-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Damask, display_variant, Fabric, Glam, Grandmillennial, Gray, Hallway, Living Room, Marrakesh Glam, Medallion, Mushroom, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Serene, Showroom Line, Silver Gray, Textured, Traditional, Transitional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599249459,
+   "sampleSku": "DWRT-5031F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471568650291,
+   "handle": "dwrt-5032-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Black, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, Damask, Dining Room, display_variant, English Country, Fabric, Floral, Glam, Grandmillennial, Living Room, Marrakesh Glam, Medallion, Navy, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Sophisticated, Textured, Traditional, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827599282227,
+   "sampleSku": "DWRT-5032F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500586836080,
+   "handle": "matika-xrp-34142",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966257619056,
+   "sampleSku": "XRP-34142-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500587884656,
+   "handle": "matika-xrp-34146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, contact-for-price, display_variant, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Tan, Texture, Textured, Traditional, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966269841520,
+   "sampleSku": "XRP-34146-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882876981299,
+   "handle": "dwjj-40770-matteo",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Charcoal, Commercial, contact-for-price, Contemporary, Dark Gray, display_variant, Ecru, Geometric, Gray, Matteo, Matteo Printed Paperweave Naturals, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Stripe, Texture, Wallcovering, Walnut, White",
+   "sampleVariantId": 41180289433651,
+   "sampleSku": "DWJJ-40770-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502347985008,
+   "handle": "merana-prt-74173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987145547888,
+   "sampleSku": "PRT-74173-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502345625712,
+   "handle": "merkato-prt-74162",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bohemian, Class A Fire Rated, Commercial, contact-for-price, display_variant, Ecru, Fabric, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13987111600240,
+   "sampleSku": "PRT-74162-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502346575984,
+   "handle": "merkato-prt-74167",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bohemian, Bone, Class A Fire Rated, Commercial, contact-for-price, Cream, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987123658864,
+   "sampleSku": "PRT-74167-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502348804208,
+   "handle": "mistaba-prt-74176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13987155476592,
+   "sampleSku": "PRT-74176-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502349066352,
+   "handle": "mistaba-prt-74177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Lattice, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987158720624,
+   "sampleSku": "PRT-74177-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502350868592,
+   "handle": "mistaba-prt-74186",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Light Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Steel, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987183296624,
+   "sampleSku": "PRT-74186-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502351589488,
+   "handle": "mistaba-prt-74190",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, contact-for-price, Dark Brown, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987194077296,
+   "sampleSku": "PRT-74190-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499621556336,
+   "handle": "monroe-stain-repellent-real-textile-walls-xws-52864",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, LEED, Leed Walls, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955054895216,
+   "sampleSku": "XWS-52864-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499621982320,
+   "handle": "monroe-stain-repellent-real-textile-walls-xws-52865",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955058270320,
+   "sampleSku": "XWS-52865-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499622801520,
+   "handle": "monroe-stain-repellent-real-textile-walls-xws-52867",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955064725616,
+   "sampleSku": "XWS-52867-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499623260272,
+   "handle": "monroe-stain-repellent-real-textile-walls-xws-52868",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955068330096,
+   "sampleSku": "XWS-52868-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499623751792,
+   "handle": "monroe-stain-repellent-real-textile-walls-xws-52869",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, LEED, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955072065648,
+   "sampleSku": "XWS-52869-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499564408944,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52699",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, Commercial Wallcovering, contact-for-price, Cream, display_variant, Fabric, Leed Walls, Linen, Minimalist, Montgomery Stain Repellent Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Pearl, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13954404417648,
+   "sampleSku": "XWR-52699-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499564966000,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52701",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13954417229936,
+   "sampleSku": "XWR-52701-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499565424752,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52703",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954424897648,
+   "sampleSku": "XWR-52703-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499566112880,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52706",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954435940464,
+   "sampleSku": "XWR-52706-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500609675376,
+   "handle": "naka-durable-vinyl-xrs-34199",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966511079536,
+   "sampleSku": "XRS-34199-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500610560112,
+   "handle": "naka-durable-vinyl-xrs-34202",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966517305456,
+   "sampleSku": "XRS-34202-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500612624496,
+   "handle": "naka-durable-vinyl-xrs-34208",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966539161712,
+   "sampleSku": "XRS-34208-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499611988080,
+   "handle": "niagara-stain-repellent-real-suede-walls-xws-52839",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Ecru, Geometric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Niagara Stain Repellent Real Suede, Paper, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Suede, Traditional, Wallcovering",
+   "sampleVariantId": 13954973499504,
+   "sampleSku": "XWS-52839-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499612708976,
+   "handle": "niagara-stain-repellent-real-suede-walls-xws-52841",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Geometric, Gold, LEED, Leed Walls, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Niagara Stain Repellent Real Suede, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Suede, Textured, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13954985230448,
+   "sampleSku": "XWS-52841-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499613036656,
+   "handle": "niagara-stain-repellent-real-suede-walls-xws-52842",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Fabric, Geometric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Niagara Stain Repellent Real Suede, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Suede, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13954985885808,
+   "sampleSku": "XWS-52842-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502352441456,
+   "handle": "nisce-prt-74193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, contact-for-price, Contemporary, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Pink, Showroom Line, Silver, Solid, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987206299760,
+   "sampleSku": "PRT-74193-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502353522800,
+   "handle": "nisce-prt-74198",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Taupe, Textured, Wallcovering",
+   "sampleVariantId": 13987223896176,
+   "sampleSku": "PRT-74198-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502354374768,
+   "handle": "nisce-prt-74202",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Taupe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987233693808,
+   "sampleSku": "PRT-74202-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500136636528,
+   "handle": "obira-durable-vinyl-xob-33400",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Cotton, Cotton Fiber, display_variant, Geometric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13960930918512,
+   "sampleSku": "XOB-33400-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500335145072,
+   "handle": "oketo-durable-vinyl-xpa-33542",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963531616368,
+   "sampleSku": "XPA-33542-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500376170608,
+   "handle": "omu-durable-vinyl-xph-33609",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963894292592,
+   "sampleSku": "XPH-33609-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500309520496,
+   "handle": "ozora-metallic-vinyl-xos-33504",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, contact-for-price, Contemporary, display_variant, Gold, Gray, Metallic, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyl and Metal film, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963221532784,
+   "sampleSku": "XOS-33504-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500006318192,
+   "handle": "palm-city-stain-repellent-real-silk-walls-xje-53678",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Coastal, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958891962480,
+   "sampleSku": "XJE-53678-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502336680048,
+   "handle": "palmerina-prt-74120",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Botanical, Commercial, Commercial Wallcovering, contact-for-price, Cream, display_variant, Gray, Leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, No - Per Settlement, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Tropical, Wallcovering, White",
+   "sampleVariantId": 13986966274160,
+   "sampleSku": "PRT-74120-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502337597552,
+   "handle": "palmerina-prt-74124",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Blue, Bone, Botanical, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, No - Per Settlement, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tropical, Wallcovering, White",
+   "sampleVariantId": 13986980855920,
+   "sampleSku": "PRT-74124-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500617867376,
+   "handle": "palo-metallic-suede-vinyl-xrt-34224",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Ecru, Gold, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Suede, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13966612824176,
+   "sampleSku": "XRT-34224-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700945240115,
+   "handle": "papaver-wallpaper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, amberlight, Architectural, Art Nouveau, Bedroom, Blue, botanical, chalk-indigo, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cornflower Blue, Dark Slate Gray, Dark Slategray, decor wallcovering, Dining Room, display_variant, Eggshell, electric-bloom, floral, frosted-chambray, Golden Yellow, heirloom-petal, kingdom-home, Light Skyblue, Living Room, matte, Needs-Image, Needs-Price, Needs-Width, non-woven, pale-horizon, papaver, Papaver Architectural Wallcovering, Paper, Phillipe Romano, poppies, Serene, Showroom Line, Slate Gray, Steel Blue, Steelblue, Traditional, Trending Wallcovering Collection 2025, vermilion-grove, Victorian, vintage-lilac, wallcovering",
+   "sampleVariantId": 43722281418803,
+   "sampleSku": "DWWC-507160-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500481486960,
+   "handle": "polywally-polyester-textile-walls-txt-33864",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964972064880,
+   "sampleSku": "TXT-33864-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500482732144,
+   "handle": "polywally-polyester-textile-walls-txt-33867",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964984746096,
+   "sampleSku": "TXT-33867-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500483092592,
+   "handle": "polywally-polyester-textile-walls-txt-33868",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Solid, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964987138160,
+   "sampleSku": "TXT-33868-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500483813488,
+   "handle": "polywally-polyester-textile-walls-txt-33870",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964992413808,
+   "sampleSku": "TXT-33870-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500484173936,
+   "handle": "polywally-polyester-textile-walls-txt-33871",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gold, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964996313200,
+   "sampleSku": "TXT-33871-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500485058672,
+   "handle": "polywally-polyester-textile-walls-txt-33873",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965003817072,
+   "sampleSku": "TXT-33873-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500486402160,
+   "handle": "polywally-polyester-textile-walls-txt-33876",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965015318640,
+   "sampleSku": "TXT-33876-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500487188592,
+   "handle": "polywally-polyester-textile-walls-txt-33878",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965025214576,
+   "sampleSku": "TXT-33878-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700947763251,
+   "handle": "porvoo-27-elderflower-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Brown, browns-taupes, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Dark Brown, decor wallcovering, display_variant, Eggshell, elderflower, Grasscloth, Grasscloth Weave, Hallway, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic, Organic Modern, Phillipe Romano, porvoo-27, random-match, Rustic, Showroom Line, Stripe, strippable, Tan, Taupe, Textured, textures, Traditional, Transitional, Trending Wallcovering Collection 2025, Type 2, vinyl, wallcovering, washable",
+   "sampleVariantId": 43722310320179,
+   "sampleSku": "DWWC-507220-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500281766000,
+   "handle": "rebun-metallic-linen-xom-33478",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, Cyan, display_variant, Ecru, Fabric, Gray, Linen, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering",
+   "sampleVariantId": 13962899751024,
+   "sampleSku": "XOM-33478-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500284977264,
+   "handle": "rebun-metallic-linen-xom-33481",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Linen, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13962934517872,
+   "sampleSku": "XOM-33481-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500286746736,
+   "handle": "rishiri-textile-wallpaper-xop-33483",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Beige, Brown, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Grasscloth, Linen, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13962966401136,
+   "sampleSku": "XOP-33483-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500288614512,
+   "handle": "rishiri-textile-wallpaper-xop-33485",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Beige, Bone, Brown, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Linen, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Red, Showroom Line, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering",
+   "sampleVariantId": 13962983866480,
+   "sampleSku": "XOP-33485-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500292481136,
+   "handle": "rishiri-textile-wallpaper-xop-33488",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Ash, Beige, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13963021385840,
+   "sampleSku": "XOP-33488-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500295790704,
+   "handle": "rishiri-textile-wallpaper-xop-33491",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Black, Bone, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13963060805744,
+   "sampleSku": "XOP-33491-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503779379,
+   "handle": "rome-aglow-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aglow, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792461819955,
+   "sampleSku": "DWPP-205731-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503812147,
+   "handle": "rome-aglow-indigo-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, display_variant, Indigo Sea, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aglow, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792461852723,
+   "sampleSku": "DWPP-205732-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503746611,
+   "handle": "rome-aglow-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aglow, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792461918259,
+   "sampleSku": "DWPP-205730-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503844915,
+   "handle": "rome-aglow-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aglow, Smoke, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792461951027,
+   "sampleSku": "DWPP-205733-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499617843,
+   "handle": "rome-aki-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462016563,
+   "sampleSku": "DWPP-205689-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499847219,
+   "handle": "rome-aki-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Type II, Wallcovering",
+   "sampleVariantId": 44792462049331,
+   "sampleSku": "DWPP-205692-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499257395,
+   "handle": "rome-aki-dove-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dove Grey, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462147635,
+   "sampleSku": "DWPP-205686-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499093555,
+   "handle": "rome-aki-elemental-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Elemental, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Type II, Wallcovering",
+   "sampleVariantId": 44792462180403,
+   "sampleSku": "DWPP-205684-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499421235,
+   "handle": "rome-aki-feathery-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Feathery Blue, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462213171,
+   "sampleSku": "DWPP-205687-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499552307,
+   "handle": "rome-aki-indigo-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Indigo Sea, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Type II, Wallcovering",
+   "sampleVariantId": 44792462245939,
+   "sampleSku": "DWPP-205688-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499683379,
+   "handle": "rome-aki-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462344243,
+   "sampleSku": "DWPP-205690-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499028019,
+   "handle": "rome-aki-ivory-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ivory Cashmere, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462409779,
+   "sampleSku": "DWPP-205683-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498962483,
+   "handle": "rome-aki-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Mink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Type II, Wallcovering",
+   "sampleVariantId": 44792462442547,
+   "sampleSku": "DWPP-205682-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499781683,
+   "handle": "rome-aki-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Smoke, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792462475315,
+   "sampleSku": "DWPP-205691-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499912755,
+   "handle": "rome-aki-transcend-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Traditional, Transcend, Type II, Wallcovering",
+   "sampleVariantId": 44792462573619,
+   "sampleSku": "DWPP-205693-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499191859,
+   "handle": "rome-aki-treasure-isle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Traditional, Treasure Isle, Type II, Wallcovering",
+   "sampleVariantId": 44792464441395,
+   "sampleSku": "DWPP-205685-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896499978291,
+   "handle": "rome-aki-truffle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aki, Tan, Traditional, Truffle, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792464539699,
+   "sampleSku": "DWPP-205694-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511512627,
+   "handle": "rome-aligned-driftwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Driftwood, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792464572467,
+   "sampleSku": "DWPP-205880-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511774771,
+   "handle": "rome-aligned-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Dune, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Type II, Wallcovering",
+   "sampleVariantId": 44792464638003,
+   "sampleSku": "DWPP-205884-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511447091,
+   "handle": "rome-aligned-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Graystone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Type II, Wallcovering",
+   "sampleVariantId": 44792464670771,
+   "sampleSku": "DWPP-205879-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511578163,
+   "handle": "rome-aligned-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Type II, Wallcovering",
+   "sampleVariantId": 44792464736307,
+   "sampleSku": "DWPP-205881-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511610931,
+   "handle": "rome-aligned-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792464769075,
+   "sampleSku": "DWPP-205882-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511676467,
+   "handle": "rome-aligned-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Natural, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792464834611,
+   "sampleSku": "DWPP-205883-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511807539,
+   "handle": "rome-aligned-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Tan, Type II, Wallcovering",
+   "sampleVariantId": 44792464932915,
+   "sampleSku": "DWPP-205885-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511873075,
+   "handle": "rome-aligned-saltwater-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Saltwater, Type II, Wallcovering",
+   "sampleVariantId": 44792464965683,
+   "sampleSku": "DWPP-205886-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511414323,
+   "handle": "rome-aligned-seashell-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Coastal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Aligned, Seashell, Type II, Wallcovering",
+   "sampleVariantId": 44792465063987,
+   "sampleSku": "DWPP-205878-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498372659,
+   "handle": "rome-ancient-juniper-amethyst-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amethyst, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Type II, Wallcovering",
+   "sampleVariantId": 44792465162291,
+   "sampleSku": "DWPP-205675-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498438195,
+   "handle": "rome-ancient-juniper-azure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azure, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792465260595,
+   "sampleSku": "DWPP-205677-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498176051,
+   "handle": "rome-ancient-juniper-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792465293363,
+   "sampleSku": "DWPP-205670-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498241587,
+   "handle": "rome-ancient-juniper-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Type II, Wallcovering",
+   "sampleVariantId": 44792465358899,
+   "sampleSku": "DWPP-205672-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498536499,
+   "handle": "rome-ancient-juniper-indigo-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Indigo Sea, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792465424435,
+   "sampleSku": "DWPP-205678-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498405427,
+   "handle": "rome-ancient-juniper-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792465489971,
+   "sampleSku": "DWPP-205676-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498831411,
+   "handle": "rome-ancient-juniper-ivory-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ivory Cashmere, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792465522739,
+   "sampleSku": "DWPP-205679-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498208819,
+   "handle": "rome-ancient-juniper-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792465588275,
+   "sampleSku": "DWPP-205671-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498339891,
+   "handle": "rome-ancient-juniper-silver-charm-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Silver, Silver Charm, Type II, Wallcovering",
+   "sampleVariantId": 44792465686579,
+   "sampleSku": "DWPP-205674-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498864179,
+   "handle": "rome-ancient-juniper-stargazer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Stargazer, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792465784883,
+   "sampleSku": "DWPP-205680-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498274355,
+   "handle": "rome-ancient-juniper-truffle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Traditional, Truffle, Type II, Wallcovering",
+   "sampleVariantId": 44792465883187,
+   "sampleSku": "DWPP-205673-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498896947,
+   "handle": "rome-ancient-juniper-twilight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Ancient Juniper, Traditional, Twilight, Type II, Wallcovering",
+   "sampleVariantId": 44792465915955,
+   "sampleSku": "DWPP-205681-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510529587,
+   "handle": "rome-artists-weave-baybreeze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Baybreeze, Blue, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Type II, Wallcovering",
+   "sampleVariantId": 44792465948723,
+   "sampleSku": "DWPP-205864-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510267443,
+   "handle": "rome-artists-weave-bluch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bluch, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Type II, Wallcovering",
+   "sampleVariantId": 44792466047027,
+   "sampleSku": "DWPP-205859-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510660659,
+   "handle": "rome-artists-weave-champagne-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Champagne, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466079795,
+   "sampleSku": "DWPP-205866-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510398515,
+   "handle": "rome-artists-weave-flagstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Flagstone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792466145331,
+   "sampleSku": "DWPP-205861-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510791731,
+   "handle": "rome-artists-weave-fossil-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Fossil, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466243635,
+   "sampleSku": "DWPP-205867-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510496819,
+   "handle": "rome-artists-weave-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Frost, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466309171,
+   "sampleSku": "DWPP-205863-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510431283,
+   "handle": "rome-artists-weave-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Graphite, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466374707,
+   "sampleSku": "DWPP-205862-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510890035,
+   "handle": "rome-artists-weave-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792466440243,
+   "sampleSku": "DWPP-205868-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510595123,
+   "handle": "rome-artists-weave-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Indigo, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Type II, Wallcovering",
+   "sampleVariantId": 44792466571315,
+   "sampleSku": "DWPP-205865-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510332979,
+   "handle": "rome-artists-weave-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Natural, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466636851,
+   "sampleSku": "DWPP-205860-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510922803,
+   "handle": "rome-artists-weave-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792466702387,
+   "sampleSku": "DWPP-205869-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510988339,
+   "handle": "rome-artists-weave-sparro-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Artist's Weave, Sparro, Type II, Wallcovering",
+   "sampleVariantId": 44792466767923,
+   "sampleSku": "DWPP-205870-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501452851,
+   "handle": "rome-bodhi-alabaster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alabaster, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792466833459,
+   "sampleSku": "DWPP-205704-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501813299,
+   "handle": "rome-bodhi-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466898995,
+   "sampleSku": "DWPP-205705-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501977139,
+   "handle": "rome-bodhi-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792466997299,
+   "sampleSku": "DWPP-205707-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501256243,
+   "handle": "rome-bodhi-ivory-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ivory Cashmere, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792467030067,
+   "sampleSku": "DWPP-205702-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501354547,
+   "handle": "rome-bodhi-luxe-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Luxe Gold, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467128371,
+   "sampleSku": "DWPP-205703-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502042675,
+   "handle": "rome-bodhi-onyx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Onyx, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467226675,
+   "sampleSku": "DWPP-205708-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501911603,
+   "handle": "rome-bodhi-whisper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bodhi, Traditional, Type II, Wallcovering, Whisper",
+   "sampleVariantId": 44792467292211,
+   "sampleSku": "DWPP-205706-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504565811,
+   "handle": "rome-bristol-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467357747,
+   "sampleSku": "DWPP-205754-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504303667,
+   "handle": "rome-bristol-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Type II, Wallcovering",
+   "sampleVariantId": 44792467390515,
+   "sampleSku": "DWPP-205746-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504500275,
+   "handle": "rome-bristol-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792467488819,
+   "sampleSku": "DWPP-205752-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504467507,
+   "handle": "rome-bristol-earth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Earth, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Tan, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467521587,
+   "sampleSku": "DWPP-205751-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504369203,
+   "handle": "rome-bristol-eden-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Eden, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467554355,
+   "sampleSku": "DWPP-205748-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504598579,
+   "handle": "rome-bristol-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792467882035,
+   "sampleSku": "DWPP-205755-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504696883,
+   "handle": "rome-bristol-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792468111411,
+   "sampleSku": "DWPP-205757-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504401971,
+   "handle": "rome-bristol-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792468144179,
+   "sampleSku": "DWPP-205749-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504336435,
+   "handle": "rome-bristol-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Mineral, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792490131507,
+   "sampleSku": "DWPP-205747-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504664115,
+   "handle": "rome-bristol-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Type II, Wallcovering",
+   "sampleVariantId": 44792490197043,
+   "sampleSku": "DWPP-205756-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504270899,
+   "handle": "rome-bristol-saltwater-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Saltwater, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792490229811,
+   "sampleSku": "DWPP-205745-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504533043,
+   "handle": "rome-bristol-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Slate, Type II, Wallcovering",
+   "sampleVariantId": 44792490491955,
+   "sampleSku": "DWPP-205753-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504434739,
+   "handle": "rome-bristol-travertine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Bristol, Travertine, Type II, Wallcovering",
+   "sampleVariantId": 44792490524723,
+   "sampleSku": "DWPP-205750-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505057331,
+   "handle": "rome-chelsea-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792490590259,
+   "sampleSku": "DWPP-205768-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505450547,
+   "handle": "rome-chelsea-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bisque, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792490688563,
+   "sampleSku": "DWPP-205772-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506662963,
+   "handle": "rome-chelsea-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792490885171,
+   "sampleSku": "DWPP-205776-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505090099,
+   "handle": "rome-chelsea-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792490983475,
+   "sampleSku": "DWPP-205769-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506761267,
+   "handle": "rome-chelsea-earth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Earth, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792491016243,
+   "sampleSku": "DWPP-205777-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506302515,
+   "handle": "rome-chelsea-eden-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Eden, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Sage, Type II, Wallcovering",
+   "sampleVariantId": 44792491081779,
+   "sampleSku": "DWPP-205774-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504991795,
+   "handle": "rome-chelsea-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792492097587,
+   "sampleSku": "DWPP-205766-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506531891,
+   "handle": "rome-chelsea-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792492130355,
+   "sampleSku": "DWPP-205775-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505024563,
+   "handle": "rome-chelsea-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Mineral, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792492195891,
+   "sampleSku": "DWPP-205767-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505122867,
+   "handle": "rome-chelsea-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792492326963,
+   "sampleSku": "DWPP-205770-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505942067,
+   "handle": "rome-chelsea-rattan-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rattan, Rome, Rome Chelsea, Type II, Wallcovering",
+   "sampleVariantId": 44792492392499,
+   "sampleSku": "DWPP-205773-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896505188403,
+   "handle": "rome-chelsea-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Sea, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792492523571,
+   "sampleSku": "DWPP-205771-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504959027,
+   "handle": "rome-chelsea-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Chelsea, Silver, Slate, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792492687411,
+   "sampleSku": "DWPP-205765-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508596275,
+   "handle": "rome-clayton-breezeway-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Breezeway, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Sage, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792493015091,
+   "sampleSku": "DWPP-205826-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508334131,
+   "handle": "rome-clayton-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792493113395,
+   "sampleSku": "DWPP-205820-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508399667,
+   "handle": "rome-clayton-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Frost, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792493277235,
+   "sampleSku": "DWPP-205821-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508530739,
+   "handle": "rome-clayton-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792493441075,
+   "sampleSku": "DWPP-205824-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508432435,
+   "handle": "rome-clayton-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792493506611,
+   "sampleSku": "DWPP-205822-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508497971,
+   "handle": "rome-clayton-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792493637683,
+   "sampleSku": "DWPP-205823-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508563507,
+   "handle": "rome-clayton-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Silver, Slate, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792493703219,
+   "sampleSku": "DWPP-205825-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508268595,
+   "handle": "rome-clayton-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Clayton, Smoke, Type II, Wallcovering",
+   "sampleVariantId": 44792493801523,
+   "sampleSku": "DWPP-205819-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512659507,
+   "handle": "rome-cohesion-champagne-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Champagne, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494030899,
+   "sampleSku": "DWPP-205904-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512725043,
+   "handle": "rome-cohesion-driftwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Driftwood, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792494129203,
+   "sampleSku": "DWPP-205906-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512593971,
+   "handle": "rome-cohesion-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frost, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792494161971,
+   "sampleSku": "DWPP-205902-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512626739,
+   "handle": "rome-cohesion-gilded-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Gilded, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494260275,
+   "sampleSku": "DWPP-205903-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512692275,
+   "handle": "rome-cohesion-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Graystone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494293043,
+   "sampleSku": "DWPP-205905-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512757811,
+   "handle": "rome-cohesion-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Indigo, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494391347,
+   "sampleSku": "DWPP-205907-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512561203,
+   "handle": "rome-cohesion-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cohesion, Slate, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494424115,
+   "sampleSku": "DWPP-205901-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512462899,
+   "handle": "rome-cross-path-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dune, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494522419,
+   "sampleSku": "DWPP-205898-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512331827,
+   "handle": "rome-cross-path-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frost, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792494587955,
+   "sampleSku": "DWPP-205895-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512430131,
+   "handle": "rome-cross-path-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graystone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494620723,
+   "sampleSku": "DWPP-205897-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512266291,
+   "handle": "rome-cross-path-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494686259,
+   "sampleSku": "DWPP-205894-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512528435,
+   "handle": "rome-cross-path-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Indigo, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494719027,
+   "sampleSku": "DWPP-205900-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512495667,
+   "handle": "rome-cross-path-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494850099,
+   "sampleSku": "DWPP-205899-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512397363,
+   "handle": "rome-cross-path-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Cross Path, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494882867,
+   "sampleSku": "DWPP-205896-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509808691,
+   "handle": "rome-elevation-baybreeze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Baybreeze, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494915635,
+   "sampleSku": "DWPP-205851-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510201907,
+   "handle": "rome-elevation-bluff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bluff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792494981171,
+   "sampleSku": "DWPP-205858-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509939763,
+   "handle": "rome-elevation-champagne-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Champagne, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495046707,
+   "sampleSku": "DWPP-205853-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509874227,
+   "handle": "rome-elevation-denim-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Denim, display_variant, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495112243,
+   "sampleSku": "DWPP-205852-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510005299,
+   "handle": "rome-elevation-driftwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Driftwood, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792495210547,
+   "sampleSku": "DWPP-205854-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510103603,
+   "handle": "rome-elevation-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Dune, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495276083,
+   "sampleSku": "DWPP-205856-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509710387,
+   "handle": "rome-elevation-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graphite, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495308851,
+   "sampleSku": "DWPP-205849-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509775923,
+   "handle": "rome-elevation-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graystone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495407155,
+   "sampleSku": "DWPP-205850-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509612083,
+   "handle": "rome-elevation-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495505459,
+   "sampleSku": "DWPP-205847-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509644851,
+   "handle": "rome-elevation-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Natural, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792495538227,
+   "sampleSku": "DWPP-205848-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510169139,
+   "handle": "rome-elevation-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496324659,
+   "sampleSku": "DWPP-205857-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896510038067,
+   "handle": "rome-elevation-seascape-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Elevation, Seascape, Type II, Wallcovering",
+   "sampleVariantId": 44792496357427,
+   "sampleSku": "DWPP-205855-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511086643,
+   "handle": "rome-gradient-blush-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Blush, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Gradient, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496390195,
+   "sampleSku": "DWPP-205872-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511217715,
+   "handle": "rome-gradient-graystone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Graystone, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Gradient, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496422963,
+   "sampleSku": "DWPP-205874-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511152179,
+   "handle": "rome-gradient-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Gradient, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496455731,
+   "sampleSku": "DWPP-205873-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511021107,
+   "handle": "rome-gradient-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Gradient, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496488499,
+   "sampleSku": "DWPP-205871-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508629043,
+   "handle": "rome-helm-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496521267,
+   "sampleSku": "DWPP-205827-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508792883,
+   "handle": "rome-helm-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Buff, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Type II, Wallcovering",
+   "sampleVariantId": 44792496554035,
+   "sampleSku": "DWPP-205831-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508858419,
+   "handle": "rome-helm-canyon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Canyon, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Tan, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496586803,
+   "sampleSku": "DWPP-205833-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508727347,
+   "handle": "rome-helm-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Type II, Wallcovering",
+   "sampleVariantId": 44792496619571,
+   "sampleSku": "DWPP-205829-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508694579,
+   "handle": "rome-helm-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496652339,
+   "sampleSku": "DWPP-205828-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508760115,
+   "handle": "rome-helm-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496685107,
+   "sampleSku": "DWPP-205830-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508825651,
+   "handle": "rome-helm-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Linen, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Helm, Rustic, Type II, Wallcovering",
+   "sampleVariantId": 44792496717875,
+   "sampleSku": "DWPP-205832-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507482163,
+   "handle": "rome-legend-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496816179,
+   "sampleSku": "DWPP-205795-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507383859,
+   "handle": "rome-legend-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bisque, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792496914483,
+   "sampleSku": "DWPP-205792-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507416627,
+   "handle": "rome-legend-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792496980019,
+   "sampleSku": "DWPP-205793-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507449395,
+   "handle": "rome-legend-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792497012787,
+   "sampleSku": "DWPP-205794-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507547699,
+   "handle": "rome-legend-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Ink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Type II, Wallcovering",
+   "sampleVariantId": 44792497045555,
+   "sampleSku": "DWPP-205797-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507514931,
+   "handle": "rome-legend-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497143859,
+   "sampleSku": "DWPP-205796-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507318323,
+   "handle": "rome-legend-muslin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Muslin, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497176627,
+   "sampleSku": "DWPP-205791-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507842611,
+   "handle": "rome-legend-weave-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497274931,
+   "sampleSku": "DWPP-205806-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507744307,
+   "handle": "rome-legend-weave-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bisque, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497307699,
+   "sampleSku": "DWPP-205803-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507777075,
+   "handle": "rome-legend-weave-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497340467,
+   "sampleSku": "DWPP-205804-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507646003,
+   "handle": "rome-legend-weave-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497373235,
+   "sampleSku": "DWPP-205800-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507711539,
+   "handle": "rome-legend-weave-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Ink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497406003,
+   "sampleSku": "DWPP-205802-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507678771,
+   "handle": "rome-legend-weave-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497471539,
+   "sampleSku": "DWPP-205801-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507613235,
+   "handle": "rome-legend-weave-muslin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Muslin, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497537075,
+   "sampleSku": "DWPP-205799-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507580467,
+   "handle": "rome-legend-weave-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497569843,
+   "sampleSku": "DWPP-205798-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507809843,
+   "handle": "rome-legend-weave-tavertine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Legend Weave, Tavertine, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497602611,
+   "sampleSku": "DWPP-205805-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507154483,
+   "handle": "rome-lucca-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792497635379,
+   "sampleSku": "DWPP-205786-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507088947,
+   "handle": "rome-lucca-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497668147,
+   "sampleSku": "DWPP-205784-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507187251,
+   "handle": "rome-lucca-gypsum-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Gypsum, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497733683,
+   "sampleSku": "DWPP-205787-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507285555,
+   "handle": "rome-lucca-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497766451,
+   "sampleSku": "DWPP-205790-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507121715,
+   "handle": "rome-lucca-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mineral, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497799219,
+   "sampleSku": "DWPP-205785-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507023411,
+   "handle": "rome-lucca-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497831987,
+   "sampleSku": "DWPP-205782-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507056179,
+   "handle": "rome-lucca-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497864755,
+   "sampleSku": "DWPP-205783-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507252787,
+   "handle": "rome-lucca-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Silver, Slate, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792497897523,
+   "sampleSku": "DWPP-205789-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507220019,
+   "handle": "rome-lucca-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Lucca, Silver, Stone, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497930291,
+   "sampleSku": "DWPP-205788-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497586227,
+   "handle": "rome-mala-azure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azure, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497963059,
+   "sampleSku": "DWPP-205662-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498143283,
+   "handle": "rome-mala-cocoa-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cocoa, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792497995827,
+   "sampleSku": "DWPP-205669-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497750067,
+   "handle": "rome-mala-dove-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove Grey, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792498028595,
+   "sampleSku": "DWPP-205664-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497618995,
+   "handle": "rome-mala-ivory-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ivory Cashmere, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Type II, Wallcovering",
+   "sampleVariantId": 44792498061363,
+   "sampleSku": "DWPP-205663-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498044979,
+   "handle": "rome-mala-luxe-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Luxe Gold, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792498094131,
+   "sampleSku": "DWPP-205666-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498077747,
+   "handle": "rome-mala-milky-way-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Milky Way Cream, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Type II, Wallcovering",
+   "sampleVariantId": 44792498126899,
+   "sampleSku": "DWPP-205667-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498110515,
+   "handle": "rome-mala-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792498159667,
+   "sampleSku": "DWPP-205668-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896498012211,
+   "handle": "rome-mala-twilight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mala, Traditional, Twilight, Type II, Wallcovering",
+   "sampleVariantId": 44792498192435,
+   "sampleSku": "DWPP-205665-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512167987,
+   "handle": "rome-matrix-altitude-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Altitude, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Type II, Wallcovering",
+   "sampleVariantId": 44792498225203,
+   "sampleSku": "DWPP-205891-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512069683,
+   "handle": "rome-matrix-anew-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Anew, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792498257971,
+   "sampleSku": "DWPP-205888-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511938611,
+   "handle": "rome-matrix-gilded-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gilded, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792498290739,
+   "sampleSku": "DWPP-205887-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512200755,
+   "handle": "rome-matrix-loggia-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Loggia, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792498323507,
+   "sampleSku": "DWPP-205892-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512135219,
+   "handle": "rome-matrix-meditation-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Meditation, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792500846643,
+   "sampleSku": "DWPP-205890-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512233523,
+   "handle": "rome-matrix-onyx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Onyx, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Type II, Wallcovering",
+   "sampleVariantId": 44792500879411,
+   "sampleSku": "DWPP-205893-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896512102451,
+   "handle": "rome-matrix-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Matrix, Stormy, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792501010483,
+   "sampleSku": "DWPP-205889-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511316019,
+   "handle": "rome-mesa-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dune, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mesa, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792501403699,
+   "sampleSku": "DWPP-205876-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511250483,
+   "handle": "rome-mesa-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Haze, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mesa, Type II, Wallcovering",
+   "sampleVariantId": 44792501960755,
+   "sampleSku": "DWPP-205875-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896511348787,
+   "handle": "rome-mesa-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mesa, Traditional, Type II, Wallcovering, White",
+   "sampleVariantId": 44792502026291,
+   "sampleSku": "DWPP-205877-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504205363,
+   "handle": "rome-mist-blue-agate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Agate, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mist, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792502157363,
+   "sampleSku": "DWPP-205743-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504107059,
+   "handle": "rome-mist-pyrite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, Pyrite, quote-only, Rome, Rome Mist, Type II, Wallcovering",
+   "sampleVariantId": 44792502681651,
+   "sampleSku": "DWPP-205741-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504238131,
+   "handle": "rome-mist-smokey-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mist, Silver, Smokey Quartz, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792502714419,
+   "sampleSku": "DWPP-205744-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504172595,
+   "handle": "rome-mist-white-calcite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Mist, Traditional, Type II, Wallcovering, White Calcite",
+   "sampleVariantId": 44792502779955,
+   "sampleSku": "DWPP-205742-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497061939,
+   "handle": "rome-naturalist-blue-agate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Agate, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Naturalist, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792502812723,
+   "sampleSku": "DWPP-205647-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496996403,
+   "handle": "rome-naturalist-pyrite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, Pyrite, quote-only, Rome, Rome Naturalist, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792502878259,
+   "sampleSku": "DWPP-205646-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496930867,
+   "handle": "rome-naturalist-smokey-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Naturalist, Smokey Quartz, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792503402547,
+   "sampleSku": "DWPP-205644-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496963635,
+   "handle": "rome-naturalist-white-calcite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Naturalist, Silver, Traditional, Type II, Wallcovering, White Calcite",
+   "sampleVariantId": 44792503500851,
+   "sampleSku": "DWPP-205645-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509251635,
+   "handle": "rome-newport-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792503631923,
+   "sampleSku": "DWPP-205840-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509055027,
+   "handle": "rome-newport-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bisque, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Silver, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792503992371,
+   "sampleSku": "DWPP-205837-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509022259,
+   "handle": "rome-newport-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792504156211,
+   "sampleSku": "DWPP-205836-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508989491,
+   "handle": "rome-newport-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792504254515,
+   "sampleSku": "DWPP-205835-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509186099,
+   "handle": "rome-newport-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Teal, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792504385587,
+   "sampleSku": "DWPP-205839-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509120563,
+   "handle": "rome-newport-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792504418355,
+   "sampleSku": "DWPP-205838-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508891187,
+   "handle": "rome-newport-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Newport, Type II, Wallcovering",
+   "sampleVariantId": 44792504582195,
+   "sampleSku": "DWPP-205834-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496898099,
+   "handle": "rome-nuno-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "ASH, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Silver, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792504614963,
+   "sampleSku": "DWPP-205643-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496767027,
+   "handle": "rome-nuno-azure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AZURE, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Teal, Type II, Wallcovering",
+   "sampleVariantId": 44792504647731,
+   "sampleSku": "DWPP-205640-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496635955,
+   "handle": "rome-nuno-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, CRYSTAL, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792504713267,
+   "sampleSku": "DWPP-205636-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496734259,
+   "handle": "rome-nuno-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, DUNE, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792504746035,
+   "sampleSku": "DWPP-205639-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496832563,
+   "handle": "rome-nuno-ember-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, EMBER, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792504844339,
+   "sampleSku": "DWPP-205641-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496865331,
+   "handle": "rome-nuno-indigo-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, INDIGO SEA, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Type II, Wallcovering",
+   "sampleVariantId": 44792505073715,
+   "sampleSku": "DWPP-205642-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496668723,
+   "handle": "rome-nuno-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, INNER SPIRIT, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Type II, Wallcovering",
+   "sampleVariantId": 44792505106483,
+   "sampleSku": "DWPP-205637-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496603187,
+   "handle": "rome-nuno-loggia-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, LOGGIA, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792505598003,
+   "sampleSku": "DWPP-205635-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896496701491,
+   "handle": "rome-nuno-solstice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Nuno, Silver, SOLSTICE, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792505860147,
+   "sampleSku": "DWPP-205638-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506925107,
+   "handle": "rome-pacific-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Pacific, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792506056755,
+   "sampleSku": "DWPP-205779-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506990643,
+   "handle": "rome-pacific-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Pacific, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792506482739,
+   "sampleSku": "DWPP-205781-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506957875,
+   "handle": "rome-pacific-mineral-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Mineral, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Pacific, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792506548275,
+   "sampleSku": "DWPP-205780-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896506859571,
+   "handle": "rome-pacific-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Pacific, Sea, Type II, Wallcovering",
+   "sampleVariantId": 44792506581043,
+   "sampleSku": "DWPP-205778-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896500273203,
+   "handle": "rome-refract-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792506646579,
+   "sampleSku": "DWPP-205697-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896500830259,
+   "handle": "rome-refract-ember-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ember, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792506712115,
+   "sampleSku": "DWPP-205699-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896500076595,
+   "handle": "rome-refract-ice-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ice Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Type II, Wallcovering, White",
+   "sampleVariantId": 44792506744883,
+   "sampleSku": "DWPP-205695-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501059635,
+   "handle": "rome-refract-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792506777651,
+   "sampleSku": "DWPP-205700-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896501190707,
+   "handle": "rome-refract-moonlight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Moonlight, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Type II, Wallcovering",
+   "sampleVariantId": 44792506810419,
+   "sampleSku": "DWPP-205701-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896500142131,
+   "handle": "rome-refract-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792506843187,
+   "sampleSku": "DWPP-205696-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896500535347,
+   "handle": "rome-refract-whisper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Refract, Traditional, Type II, Wallcovering, Whisper",
+   "sampleVariantId": 44792507072563,
+   "sampleSku": "DWPP-205698-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503484467,
+   "handle": "rome-samar-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507203635,
+   "sampleSku": "DWPP-205724-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503386163,
+   "handle": "rome-samar-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Dune, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507334707,
+   "sampleSku": "DWPP-205723-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503615539,
+   "handle": "rome-samar-fog-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Fog, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507465779,
+   "sampleSku": "DWPP-205727-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503550003,
+   "handle": "rome-samar-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507498547,
+   "sampleSku": "DWPP-205725-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503713843,
+   "handle": "rome-samar-lake-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lake, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507564083,
+   "sampleSku": "DWPP-205729-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502829107,
+   "handle": "rome-samar-merlot-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Merlot, Phillipe Romano, pr-capital-rome, quote-only, Red, Rome, Rome Samar, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507596851,
+   "sampleSku": "DWPP-205718-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503320627,
+   "handle": "rome-samar-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507662387,
+   "sampleSku": "DWPP-205722-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503255091,
+   "handle": "rome-samar-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Smoke, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792507760691,
+   "sampleSku": "DWPP-205721-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503582771,
+   "handle": "rome-samar-solstice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Silver, Solstice, Type II, Wallcovering",
+   "sampleVariantId": 44792507826227,
+   "sampleSku": "DWPP-205726-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503156787,
+   "handle": "rome-samar-transcend-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Transcend, Type II, Wallcovering",
+   "sampleVariantId": 44792511954995,
+   "sampleSku": "DWPP-205720-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503091251,
+   "handle": "rome-samar-whisper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Traditional, Type II, Wallcovering, Whisper",
+   "sampleVariantId": 44792512053299,
+   "sampleSku": "DWPP-205719-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503648307,
+   "handle": "rome-samar-zen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Samar, Silver, Type II, Wallcovering, Zen",
+   "sampleVariantId": 44792512151603,
+   "sampleSku": "DWPP-205728-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504860723,
+   "handle": "rome-spero-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792512184371,
+   "sampleSku": "DWPP-205762-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504893491,
+   "handle": "rome-spero-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Traditional, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792512217139,
+   "sampleSku": "DWPP-205763-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504795187,
+   "handle": "rome-spero-eden-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Eden, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792512282675,
+   "sampleSku": "DWPP-205760-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504762419,
+   "handle": "rome-spero-golden-glimmer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Golden Glimmer, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792512315443,
+   "sampleSku": "DWPP-205759-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504827955,
+   "handle": "rome-spero-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Pearl, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792512348211,
+   "sampleSku": "DWPP-205761-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504729651,
+   "handle": "rome-spero-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Sea, Type II, Wallcovering",
+   "sampleVariantId": 44792512577587,
+   "sampleSku": "DWPP-205758-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504926259,
+   "handle": "rome-spero-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Spero, Silver, Slate, Type II, Wallcovering",
+   "sampleVariantId": 44792513265715,
+   "sampleSku": "DWPP-205764-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502665267,
+   "handle": "rome-trek-azure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azure, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792513364019,
+   "sampleSku": "DWPP-205716-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502599731,
+   "handle": "rome-trek-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Type II, Wallcovering",
+   "sampleVariantId": 44792513462323,
+   "sampleSku": "DWPP-205715-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502370355,
+   "handle": "rome-trek-ember-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ember, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792513757235,
+   "sampleSku": "DWPP-205712-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502108211,
+   "handle": "rome-trek-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792513790003,
+   "sampleSku": "DWPP-205709-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502501427,
+   "handle": "rome-trek-ivory-cashmere-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ivory Cashmere, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Type II, Wallcovering, White",
+   "sampleVariantId": 44792513822771,
+   "sampleSku": "DWPP-205714-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502730803,
+   "handle": "rome-trek-midnight-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Midnight, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792513855539,
+   "sampleSku": "DWPP-205717-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502173747,
+   "handle": "rome-trek-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792514150451,
+   "sampleSku": "DWPP-205710-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502435891,
+   "handle": "rome-trek-smoky-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Smoky Quartz, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792514183219,
+   "sampleSku": "DWPP-205713-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896502304819,
+   "handle": "rome-trek-whisper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Trek, Type II, Wallcovering, Whisper",
+   "sampleVariantId": 44792514609203,
+   "sampleSku": "DWPP-205711-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504008755,
+   "handle": "rome-untangled-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792514674739,
+   "sampleSku": "DWPP-205738-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503877683,
+   "handle": "rome-untangled-desert-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Desert Dune, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792514969651,
+   "sampleSku": "DWPP-205734-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503910451,
+   "handle": "rome-untangled-gilded-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Gilded, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Type II, Wallcovering",
+   "sampleVariantId": 44792515067955,
+   "sampleSku": "DWPP-205735-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504041523,
+   "handle": "rome-untangled-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792515100723,
+   "sampleSku": "DWPP-205739-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503943219,
+   "handle": "rome-untangled-loggia-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Loggia, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792515297331,
+   "sampleSku": "DWPP-205736-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896503975987,
+   "handle": "rome-untangled-onyx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Onyx, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Type II, Wallcovering",
+   "sampleVariantId": 44792515330099,
+   "sampleSku": "DWPP-205737-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896504074291,
+   "handle": "rome-untangled-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Untangled, Stormy, Type II, Wallcovering",
+   "sampleVariantId": 44792515625011,
+   "sampleSku": "DWPP-205740-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509317171,
+   "handle": "rome-veiled-horizon-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, DUNE, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792515952691,
+   "sampleSku": "DWPP-205841-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509349939,
+   "handle": "rome-veiled-horizon-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, FROST, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792515985459,
+   "sampleSku": "DWPP-205842-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509448243,
+   "handle": "rome-veiled-horizon-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, display_variant, MIST, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516280371,
+   "sampleSku": "DWPP-205844-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509546547,
+   "handle": "rome-veiled-horizon-onyx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, ONYX, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792516378675,
+   "sampleSku": "DWPP-205846-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509415475,
+   "handle": "rome-veiled-horizon-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, PEBBLE, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792516411443,
+   "sampleSku": "DWPP-205843-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896509481011,
+   "handle": "rome-veiled-horizon-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Veiled Horizon, Silver, SMOKE, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516444211,
+   "sampleSku": "DWPP-205845-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508137523,
+   "handle": "rome-voyager-silk-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516476979,
+   "sampleSku": "DWPP-205815-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508235827,
+   "handle": "rome-voyager-silk-breezeway-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Breezeway, contact-for-price, Contract Vinyl, display_variant, Green, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516542515,
+   "sampleSku": "DWPP-205818-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507875379,
+   "handle": "rome-voyager-silk-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516575283,
+   "sampleSku": "DWPP-205807-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508006451,
+   "handle": "rome-voyager-silk-dove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dove, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516608051,
+   "sampleSku": "DWPP-205811-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507908147,
+   "handle": "rome-voyager-silk-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frost, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516640819,
+   "sampleSku": "DWPP-205808-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508104755,
+   "handle": "rome-voyager-silk-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Ice, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516673587,
+   "sampleSku": "DWPP-205814-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507973683,
+   "handle": "rome-voyager-silk-ink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ink, Navy, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516706355,
+   "sampleSku": "DWPP-205810-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508203059,
+   "handle": "rome-voyager-silk-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Linen, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Rustic, Silk, Type II, Wallcovering",
+   "sampleVariantId": 44792516771891,
+   "sampleSku": "DWPP-205817-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896507940915,
+   "handle": "rome-voyager-silk-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mist, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516837427,
+   "sampleSku": "DWPP-205809-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508170291,
+   "handle": "rome-voyager-silk-parchment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Parchment, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516902963,
+   "sampleSku": "DWPP-205816-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508039219,
+   "handle": "rome-voyager-silk-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792516968499,
+   "sampleSku": "DWPP-205812-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896508071987,
+   "handle": "rome-voyager-silk-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Voyager Silk, Silk, Smoke, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792517001267,
+   "sampleSku": "DWPP-205813-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497324083,
+   "handle": "rome-whimsy-amethyst-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amethyst, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792517034035,
+   "sampleSku": "DWPP-205654-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497487923,
+   "handle": "rome-whimsy-azure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azure, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792517066803,
+   "sampleSku": "DWPP-205659-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497455155,
+   "handle": "rome-whimsy-crystal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Crystal, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792517099571,
+   "sampleSku": "DWPP-205658-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497553459,
+   "handle": "rome-whimsy-indigo-sea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Indigo Sea, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Type II, Wallcovering",
+   "sampleVariantId": 44792517132339,
+   "sampleSku": "DWPP-205661-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497520691,
+   "handle": "rome-whimsy-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792517165107,
+   "sampleSku": "DWPP-205660-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497389619,
+   "handle": "rome-whimsy-milky-way-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Milky Way Cream, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Type II, Wallcovering",
+   "sampleVariantId": 44792517230643,
+   "sampleSku": "DWPP-205656-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497356851,
+   "handle": "rome-whimsy-opal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Opal, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Silver, Type II, Wallcovering",
+   "sampleVariantId": 44792521621555,
+   "sampleSku": "DWPP-205655-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497422387,
+   "handle": "rome-whimsy-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Whimsy, Smoke, Type II, Wallcovering",
+   "sampleVariantId": 44792521654323,
+   "sampleSku": "DWPP-205657-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497258547,
+   "handle": "rome-wisp-feathery-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Feathery Blue, Gray, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792521719859,
+   "sampleSku": "DWPP-205652-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497160243,
+   "handle": "rome-wisp-inner-spirit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Inner Spirit, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Silver, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792521752627,
+   "sampleSku": "DWPP-205650-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497094707,
+   "handle": "rome-wisp-luxe-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Luxe Gold, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792522014771,
+   "sampleSku": "DWPP-205648-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497127475,
+   "handle": "rome-wisp-opalite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Opalite, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Type II, Wallcovering",
+   "sampleVariantId": 44792523227187,
+   "sampleSku": "DWPP-205649-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497291315,
+   "handle": "rome-wisp-smokey-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Smokey Pearl, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792523259955,
+   "sampleSku": "DWPP-205653-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896497225779,
+   "handle": "rome-wisp-truffle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-rome, quote-only, Rome, Rome Wisp, Truffle, Type II, Wallcovering",
+   "sampleVariantId": 44792528437299,
+   "sampleSku": "DWPP-205651-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495925719152,
+   "handle": "roxy-s-natural-basketweave-wallpaper-grs-38022",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Bohemian, Coastal, Commercial, contact-for-price, Cream, display_variant, Entryway, Geometric, Grasscloth, Kyoto Garden Natural Weaves, Lattice, Light Gray, Living Room, Natural Basketweave, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Office, Phillipe Romano, Phillipe Romano Naturals, Scandinavian, Showroom Line, Textural, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13908974502000,
+   "sampleSku": "GRS-38022-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502362042480,
+   "handle": "saint-gorga-prt-74239",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987363029104,
+   "sampleSku": "PRT-74239-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500370075760,
+   "handle": "samani-durable-vinyl-xpg-33596",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963841273968,
+   "sampleSku": "XPG-33596-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500372303984,
+   "handle": "samani-durable-vinyl-xpg-33601",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963861131376,
+   "sampleSku": "XPG-33601-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936764710963,
+   "handle": "xty-949386-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, Dark Blue, display_variant, Durable Vinyl, Durable Vinyls, Eggshell, Gray, Hospitality Wallcoverings, Light Gray, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillipe Romano, Purchasing Agency, Samantha's Striated Stripes Durable Vinyl, Showroom Line, Silver, Stripe, Vinyl, Wallcovering, Wide Textures, Wide Vinyls",
+   "sampleVariantId": 41354082385971,
+   "sampleSku": "XTY-949386-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498798489712,
+   "handle": "samuel-sueded-walls-prx-79157",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Ecru, Geometric, Gold, Lattice, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Samuel Sueded, Showroom Line, Suede, Tan, Wallcovering, Yellow",
+   "sampleVariantId": 13941093138544,
+   "sampleSku": "PRX-79157-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471559934003,
+   "handle": "dwrt-9037-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Beige, Bellini, Class A Fire Rated, Clover, Commercial, contact-for-price, Contemporary, Cream, display_variant, Dot, Dusty Rose, Eggshell, Geometric, Minimalist, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Pink, Santiago Motion Bellini, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827573657651,
+   "sampleSku": "DWRT-9037-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471559966771,
+   "handle": "dwrt-9038-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Chartreuse, Class A Fire Rated, Clover, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Geometric, Green, Hallway, Mid-Century Modern, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playful, Santiago Motion Spritz, Scandinavian, Screen Print, Screen Prints, Showroom Line, Spritz, Trending Wallcovering Collection 2024, Wallcovering, Yellow",
+   "sampleVariantId": 42827573690419,
+   "sampleSku": "DWRT-9038-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499615133808,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52847",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Geometric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955000598640,
+   "sampleSku": "XWS-52847-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499616641136,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52850",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Gold, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Wallcovering, WALLCOVERING : Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13955011936368,
+   "sampleSku": "XWS-52850-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499617034352,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52851",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Geometric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955016130672,
+   "sampleSku": "XWS-52851-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500341928048,
+   "handle": "saroma-durable-vinyl-xpb-33553",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963590107248,
+   "sampleSku": "XPB-33553-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500343599216,
+   "handle": "saroma-durable-vinyl-xpb-33556",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963599937648,
+   "sampleSku": "XPB-33556-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500344451184,
+   "handle": "saroma-durable-vinyl-xpb-33558",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Gold, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Saroma Durable Vinyl, Showroom Line, Tan, Textured, Traditional, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963610718320,
+   "sampleSku": "XPB-33558-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562588211,
+   "handle": "dwrt-9111-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Aqua, Architectural, Aria, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Seagreen, display_variant, Light Blue, Light Gray, Light Steelblue, Living Room, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Powder Blue, Screen Print, Screen Prints, Seaglass, Seaglass Aria, Serene, Showroom Line, Teal, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577884723,
+   "sampleSku": "DWRT-9111-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562620979,
+   "handle": "dwrt-9112-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Baci, Bathroom, Bedroom, Biophilic, Blue, Brushstroke, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Light Blue, Light Turquoise, Living Room, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Seaglass, Seaglass Baci, Serene, Showroom Line, Slate Blue, Teal, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577917491,
+   "sampleSku": "DWRT-9112-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562653747,
+   "handle": "dwrt-9113-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Biophilic, Blue, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, display_variant, Fiore, Green, Light Blue, Light Teal, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Powder Blue, Sage Green, Screen Print, Screen Prints, Seaglass, Seaglass Fiore, Serene, Showroom Line, Teal, Trending Wallcovering Collection 2024, Turquoise, Wallcovering, White",
+   "sampleVariantId": 42827577950259,
+   "sampleSku": "DWRT-9113-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498793082992,
+   "handle": "seniorita-silk-walls-prx-79132",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, Grasscloth, Light Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Tan, Textured, Traditional, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13940981629040,
+   "sampleSku": "PRX-79132-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498801537136,
+   "handle": "sensual-sueded-walls-prx-79171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Gray, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Sensual Sueded, Showroom Line, Suede, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13941143109744,
+   "sampleSku": "PRX-79171-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562326067,
+   "handle": "dwrt-9103-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, azul, Bedroom, Blue, Bohemian, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Blue, display_variant, Geometric, Global, Hallway, Light Blue, Living Room, Midnightblue, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Peacock, Periwinkle, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Screen Print, Screen Prints, Serano Stripe Azul, Serene, Showroom Line, Slateblue, Stripe, Teal, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577622579,
+   "sampleSku": "DWRT-9103-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562358835,
+   "handle": "dwrt-9104-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Aqua, Architectural, azurite, Bedroom, Blue, Bohemian, Boho Chic, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cornflower Blue, Denim, display_variant, Geometric, Hallway, Lavender, Light Blue, Living Room, material-group-linen, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Screen Print, Screen Prints, Serano Stripe Azurite, Serene, Showroom Line, Stripe, Teal Blue, Textured, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827577655347,
+   "sampleSku": "DWRT-9104-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562391603,
+   "handle": "dwrt-9105-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Bohemian, Class A Fire Rated, Commercial, contact-for-price, contemporary, Cream, display_variant, Forest Green, geometric, Green, Hallway, jadeite, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Sage Green, Screen Print, Screen Prints, Serano Stripe Jadeite, Serene, Showroom Line, stripe, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577688115,
+   "sampleSku": "DWRT-9105-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562424371,
+   "handle": "dwrt-9106-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, contemporary, Cream, display_variant, Geometric, Honey, Living Room, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Off-white, Office, Organic, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Screen Print, Screen Prints, Serano Stripe Mustard, Showroom Line, stripe, Trending Wallcovering Collection 2024, Wallcovering, Yellow",
+   "sampleVariantId": 42827577720883,
+   "sampleSku": "DWRT-9106-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562457139,
+   "handle": "dwrt-9107-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Bohemian, Bone, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Geometric, Hallway, Light Blue, Living Room, material-group-natural-fiber, Minimalist, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Scandinavian, Screen Print, Screen Prints, Serano Stripe Neutral, Serene, Showroom Line, Stripe, Taupe, Trending Wallcovering Collection 2024, Wallcovering, White",
+   "sampleVariantId": 42827577753651,
+   "sampleSku": "DWRT-9107-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562489907,
+   "handle": "dwrt-9108-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Bohemian, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Geometric, Global, Hallway, Light Pink, Living Room, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Organic, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playa, Rebozo, Screen Print, Screen Prints, Serano Stripe Playa, Showroom Line, Stripe, Tan, Taupe, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577786419,
+   "sampleSku": "DWRT-9108-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562555443,
+   "handle": "dwrt-9110-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Brown, display_variant, Geometric, Global, Hallway, Living Room, Needs-Image, Needs-Price, Needs-Width, Organic, Paper, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rebozo, Red, Rustic, Screen Print, Screen Prints, Serano Stripe Terracota, Showroom Line, Sienna, Stripe, Tan, Terracota, Trending Wallcovering Collection 2024, Wallcovering",
+   "sampleVariantId": 42827577851955,
+   "sampleSku": "DWRT-9110-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1497507004528,
+   "handle": "shanghai-lengua-mural-gpr-76514",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bling, Chinoiserie, Commercial, contact-for-price, display_variant, Eggshell, Geometric, Glam By Phillipe Romano, Glass Bead, Hand Crafted, Mural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Showroom Line, Silver, USFCID#9, Wallcovering",
+   "sampleVariantId": 13930059497584,
+   "sampleSku": "GPR-76514-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500518580336,
+   "handle": "shibecha-poly-linen-walls-lin-33942",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Cocoa, Commercial, contact-for-price, Contemporary, Denim, display_variant, Fabric, Gray, Linen, Linen w/ Polyester Blend, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Rustic, Sand, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965404471408,
+   "sampleSku": "LIN-33942-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500394881136,
+   "handle": "shihoro-durable-vinyl-xpp-33653",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964083134576,
+   "sampleSku": "XPP-33653-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500397764720,
+   "handle": "shika-durable-vinyl-xpq-33660",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964109873264,
+   "sampleSku": "XPQ-33660-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500399075440,
+   "handle": "shika-durable-vinyl-xpq-33663",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964122390640,
+   "sampleSku": "XPQ-33663-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500399632496,
+   "handle": "shika-durable-vinyl-xpq-33664",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964127043696,
+   "sampleSku": "XPQ-33664-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500402253936,
+   "handle": "shinto-ito-durable-vinyl-xpr-33670",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964153061488,
+   "sampleSku": "XPR-33670-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500402679920,
+   "handle": "shinto-ito-durable-vinyl-xpr-33671",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13964159811696,
+   "sampleSku": "XPR-33671-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882876653619,
+   "handle": "dwjj-40670-silvio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bella Italiano, Black, Blue, Bone, Commercial, contact-for-price, display_variant, Geometric, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Silver, Silvio, Silvio Printed Paperweave Naturals, Stripe, Texture, Wallcovering",
+   "sampleVariantId": 41180289105971,
+   "sampleSku": "DWJJ-40670-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6882876686387,
+   "handle": "dwjj-40680-silvio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bella Italiano, Black, Bone, Commercial, contact-for-price, Contemporary, display_variant, Geometric, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Silver, Silvio, Silvio Printed Paperweave Naturals, Stripe, Texture, Tomato, Wallcovering, White",
+   "sampleVariantId": 41180289138739,
+   "sampleSku": "DWJJ-40680-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502309351536,
+   "handle": "sonata-stone-prt-74004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986533965936,
+   "sampleSku": "PRT-74004-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502309580912,
+   "handle": "sonata-stone-prt-74005",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986536226928,
+   "sampleSku": "PRT-74005-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502309810288,
+   "handle": "sonata-stone-prt-74006",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Taupe, Texture, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986541437040,
+   "sampleSku": "PRT-74006-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502310039664,
+   "handle": "sonata-stone-prt-74007",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986544550000,
+   "sampleSku": "PRT-74007-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502310269040,
+   "handle": "sonata-stone-prt-74008",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, contact-for-price, Dark Brown, display_variant, Eggshell, Java, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Smoke, Texture, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering, Walnut",
+   "sampleVariantId": 13986549465200,
+   "sampleSku": "PRT-74008-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502310400112,
+   "handle": "sonata-stone-prt-74009",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986551988336,
+   "sampleSku": "PRT-74009-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495932829808,
+   "handle": "sonya-s-striated-vertical-woven-textile-stripe-grs-38037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Bedroom, Beige, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Geometric, Gray, Hotel Lobby, Kyoto Garden Natural Weaves, Living Room, Minimalist, Modern, Natural Corn Yelllow, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Solid/Textural, Stripe, Striped, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13909016707184,
+   "sampleSku": "GRS-38037-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502360469616,
+   "handle": "spitacato-prt-74232",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987335995504,
+   "sampleSku": "PRT-74232-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1495933386864,
+   "handle": "st-bart-s-natural-grass-cloth-wallpaper-horizontal-weave-grs-38038",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Coastal, Commercial, contact-for-price, display_variant, Entryway, Geometric, grass cloth, grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Lattice, Light Olive Green Brown, Living Room, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Neutral, Oatmeal, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Silver, Textural, Textured, Transitional, Wallcovering, White, Woven",
+   "sampleVariantId": 13909017690224,
+   "sampleSku": "GRS-38038-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7716422451251,
+   "handle": "staccato-on-vinyl-blueberry-on-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Blue, blueberry, br-69540-279, brunschwig-fils, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, decor wallcovering, display_variant, Energetic, geometric, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, Nursery, Off White, Paper, Phillipe Romano, Playful, print, Showroom Line, Slate Blue, staccato, Staccato On Vinyl, Trending Wallcovering Collection 2025, vinyl, wallcovering, White",
+   "sampleVariantId": 43769197527091,
+   "sampleSku": "DWWC-508040-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562686515,
+   "handle": "dwrt-9115-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Celestial, Charcoal Gray, Classic, Commercial, contact-for-price, Contemporary, display_variant, Dot, Geometric, Grasscloth, Gray, Grey, Light Gray, Modern, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Paper, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playful, Screen Print, Screen Prints, Showroom Line, Stars Heather Gray Grasscloth, Stars Heather Gray Grasscloth Classic, Texture, Traditional, Trending Wallcovering Collection 2024, Vinyl, Wallcovering",
+   "sampleVariantId": 42827577983027,
+   "sampleSku": "DWRT-9115-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502361813104,
+   "handle": "stella-bella-prt-74238",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 13987361128560,
+   "sampleSku": "PRT-74238-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500055502960,
+   "handle": "surfside-stain-repellent-real-linen-walls-xwa-53803",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13959619608688,
+   "sampleSku": "XWA-53803-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502340415600,
+   "handle": "sympatico-prt-74138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Taupe, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13987025289328,
+   "sampleSku": "PRT-74138-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502341726320,
+   "handle": "sympatico-prt-74144",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13987048194160,
+   "sampleSku": "PRT-74144-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502342283376,
+   "handle": "sympatico-prt-74146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13987052159088,
+   "sampleSku": "PRT-74146-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502342479984,
+   "handle": "sympatico-prt-74147",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13987056517232,
+   "sampleSku": "PRT-74147-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1502342971504,
+   "handle": "sympatico-prt-74149",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987064643696,
+   "sampleSku": "PRT-74149-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562752051,
+   "handle": "dwrt-9117-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Blue, Botanical, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, Cottagecore, display_variant, Floral, Grandmillennial, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Organic Modern, Pale Beige, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Tan, Teal, Tiny Flowers, Tiny Flowers Coastal, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827578048563,
+   "sampleSku": "DWRT-9117-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562719283,
+   "handle": "dwrt-9116-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Botanical, Burnt Sienna, Champagne, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Coral, Cottagecore, display_variant, Floral, Needs-Image, Needs-Price, Needs-Width, Nursery, Orange, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playful, Screen Print, Screen Prints, Showroom Line, Tan, Tiny Flowers, Tiny Flowers Coral, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827578015795,
+   "sampleSku": "DWRT-9116-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562784819,
+   "handle": "dwrt-9118-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Almond, Architectural, Bathroom, Bedroom, Bohemian, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, display_variant, Floral, Gold, Goldenrod, Honey, Khaki, Lemon, Needs-Image, Needs-Price, Needs-Width, Nursery, Olive Green, Organic, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Showroom Line, Tiny Flowers, Tiny Flowers Goldenrod, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Yellow",
+   "sampleVariantId": 42827578081331,
+   "sampleSku": "DWRT-9118-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471562850355,
+   "handle": "dwrt-9119-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Blue, Botanical, Class A Fire Rated, Cloud, Coastal, Commercial, contact-for-price, Contemporary, Cottagecore, Denim, display_variant, Floral, Grandmillennial, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Pattern, Periwinkle, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Smoke, Steel, Steel Blue, Tiny Flowers, Tiny Flowers Periwinkle, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827578146867,
+   "sampleSku": "DWRT-9119-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530124851,
+   "handle": "tokyo-alcove-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Birch, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792528470067,
+   "sampleSku": "DWPP-206302-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530059315,
+   "handle": "tokyo-alcove-haze-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Haze, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792528502835,
+   "sampleSku": "DWPP-206301-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529174579,
+   "handle": "tokyo-alcove-jade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Jade, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792528535603,
+   "sampleSku": "DWPP-206296-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530190387,
+   "handle": "tokyo-alcove-khaki-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Khaki, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792528568371,
+   "sampleSku": "DWPP-206303-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529141811,
+   "handle": "tokyo-alcove-orbit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Orbit, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792529223731,
+   "sampleSku": "DWPP-206295-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529207347,
+   "handle": "tokyo-alcove-range-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Range, Silver, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792529289267,
+   "sampleSku": "DWPP-206297-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529698867,
+   "handle": "tokyo-alcove-spool-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Spool, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792529322035,
+   "sampleSku": "DWPP-206299-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529961011,
+   "handle": "tokyo-alcove-tidal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tidal, Tokyo, Tokyo Alcove, Type II, Wallcovering",
+   "sampleVariantId": 44792529354803,
+   "sampleSku": "DWPP-206300-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530223155,
+   "handle": "tokyo-alcove-vortex-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Alcove, Type II, Vinyl, Vortex, Wallcovering",
+   "sampleVariantId": 44792531091507,
+   "sampleSku": "DWPP-206304-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896529469491,
+   "handle": "tokyo-alcove-voyage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Alcove, Type II, Voyage, Wallcovering",
+   "sampleVariantId": 44792531517491,
+   "sampleSku": "DWPP-206298-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530255923,
+   "handle": "tokyo-allston-carbon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Carbon, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792531615795,
+   "sampleSku": "DWPP-206305-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530550835,
+   "handle": "tokyo-allston-copper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, COPPER, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tan, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792531681331,
+   "sampleSku": "DWPP-206314-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530419763,
+   "handle": "tokyo-allston-eggshell-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, EGGSHELL, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792534171699,
+   "sampleSku": "DWPP-206310-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530354227,
+   "handle": "tokyo-allston-glacier-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, GLACIER, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792534204467,
+   "sampleSku": "DWPP-206308-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530485299,
+   "handle": "tokyo-allston-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, LAGOON, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792534237235,
+   "sampleSku": "DWPP-206312-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530321459,
+   "handle": "tokyo-allston-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, MINK, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792534270003,
+   "sampleSku": "DWPP-206307-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530288691,
+   "handle": "tokyo-allston-portobello-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, PORTOBELLO, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792534302771,
+   "sampleSku": "DWPP-206306-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530386995,
+   "handle": "tokyo-allston-raven-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, RAVEN, Scandinavian, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792537120819,
+   "sampleSku": "DWPP-206309-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530518067,
+   "handle": "tokyo-allston-seafoam-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, SEAFOAM, Silver, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792537219123,
+   "sampleSku": "DWPP-206313-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530452531,
+   "handle": "tokyo-allston-silk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, SILK, Tan, Tokyo, Tokyo Allston, Type II, Wallcovering",
+   "sampleVariantId": 44792540561459,
+   "sampleSku": "DWPP-206311-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530714675,
+   "handle": "tokyo-architect-bisque-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bisque, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792540594227,
+   "sampleSku": "DWPP-206318-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530845747,
+   "handle": "tokyo-architect-flash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Flash, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792540626995,
+   "sampleSku": "DWPP-206322-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530812979,
+   "handle": "tokyo-architect-frosted-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frosted, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792543313971,
+   "sampleSku": "DWPP-206321-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530649139,
+   "handle": "tokyo-architect-meringue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Meringue, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792543346739,
+   "sampleSku": "DWPP-206316-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530616371,
+   "handle": "tokyo-architect-meteorite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Meteorite, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792545476659,
+   "sampleSku": "DWPP-206315-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530780211,
+   "handle": "tokyo-architect-moonstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Moonstone, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792547246131,
+   "sampleSku": "DWPP-206320-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530878515,
+   "handle": "tokyo-architect-obsidian-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Obsidian, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792547278899,
+   "sampleSku": "DWPP-206323-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530747443,
+   "handle": "tokyo-architect-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792549146675,
+   "sampleSku": "DWPP-206319-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530911283,
+   "handle": "tokyo-architect-sunshine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Sunshine, Tokyo, Tokyo Architect, Type II, Wallcovering",
+   "sampleVariantId": 44792549179443,
+   "sampleSku": "DWPP-206324-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530681907,
+   "handle": "tokyo-architect-vanilla-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Architect, Type II, Vanilla, Wallcovering",
+   "sampleVariantId": 44792549244979,
+   "sampleSku": "DWPP-206317-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531107891,
+   "handle": "tokyo-barbados-eucalyptus-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Eucalyptus, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792549310515,
+   "sampleSku": "DWPP-206328-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896530944051,
+   "handle": "tokyo-barbados-frost-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frost, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792551112755,
+   "sampleSku": "DWPP-206325-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531271731,
+   "handle": "tokyo-barbados-gale-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gale, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792551243827,
+   "sampleSku": "DWPP-206333-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531140659,
+   "handle": "tokyo-barbados-peeacock-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, display_variant, Peeacock, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792551276595,
+   "sampleSku": "DWPP-206329-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531075123,
+   "handle": "tokyo-barbados-seafoam-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Seafoam, Tokyo, Tokyo Barbados, Type II, Wallcovering, White",
+   "sampleVariantId": 44792552980531,
+   "sampleSku": "DWPP-206327-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531238963,
+   "handle": "tokyo-barbados-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Slate, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792553013299,
+   "sampleSku": "DWPP-206332-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531206195,
+   "handle": "tokyo-barbados-smoke-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Smoke, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792555995187,
+   "sampleSku": "DWPP-206331-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531042355,
+   "handle": "tokyo-barbados-spruce-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Spruce, Tokyo, Tokyo Barbados, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792556027955,
+   "sampleSku": "DWPP-206326-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531173427,
+   "handle": "tokyo-barbados-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Stone, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792556126259,
+   "sampleSku": "DWPP-206330-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531304499,
+   "handle": "tokyo-barbados-sugar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Sugar, Tokyo, Tokyo Barbados, Type II, Wallcovering",
+   "sampleVariantId": 44792556257331,
+   "sampleSku": "DWPP-206334-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531599411,
+   "handle": "tokyo-brocade-bone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bone, contact-for-price, Contract Vinyl, Damask, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792556290099,
+   "sampleSku": "DWPP-206342-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531501107,
+   "handle": "tokyo-brocade-caraway-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Caraway, contact-for-price, Contract Vinyl, Damask, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792556322867,
+   "sampleSku": "DWPP-206339-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531435571,
+   "handle": "tokyo-brocade-fennel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Fennel, Phillipe Romano, pr-capital-tokyo, quote-only, Sage, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792567824435,
+   "sampleSku": "DWPP-206337-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531664947,
+   "handle": "tokyo-brocade-hydrangea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Hydrangea, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792567857203,
+   "sampleSku": "DWPP-206344-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531533875,
+   "handle": "tokyo-brocade-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Indigo, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Brocade, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792567988275,
+   "sampleSku": "DWPP-206340-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531468339,
+   "handle": "tokyo-brocade-marigold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Marigold, Orange, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792568021043,
+   "sampleSku": "DWPP-206338-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531566643,
+   "handle": "tokyo-brocade-mask-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, Damask, display_variant, Mask, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792568053811,
+   "sampleSku": "DWPP-206341-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531370035,
+   "handle": "tokyo-brocade-pinata-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Phillipe Romano, Pinata, pr-capital-tokyo, quote-only, Teal, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792568119347,
+   "sampleSku": "DWPP-206336-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531337267,
+   "handle": "tokyo-brocade-storm-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Green, Phillipe Romano, pr-capital-tokyo, quote-only, Storm, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792568152115,
+   "sampleSku": "DWPP-206335-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531632179,
+   "handle": "tokyo-brocade-sugar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Damask, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Sugar, Tokyo, Tokyo Brocade, Type II, Wallcovering",
+   "sampleVariantId": 44792568217651,
+   "sampleSku": "DWPP-206343-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531697715,
+   "handle": "tokyo-canali-birchwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Birchwood, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568479795,
+   "sampleSku": "DWPP-206345-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531730483,
+   "handle": "tokyo-canali-blackberry-tea-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blackberry Tea, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568545331,
+   "sampleSku": "DWPP-206346-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532025395,
+   "handle": "tokyo-canali-chestnut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Chestnut, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568578099,
+   "sampleSku": "DWPP-206354-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531796019,
+   "handle": "tokyo-canali-ecru-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ecru, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568610867,
+   "sampleSku": "DWPP-206348-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531992627,
+   "handle": "tokyo-canali-evergreen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Evergreen, Green, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568676403,
+   "sampleSku": "DWPP-206353-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531894323,
+   "handle": "tokyo-canali-georgia-peach-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Georgia Peach, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568741939,
+   "sampleSku": "DWPP-206351-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531861555,
+   "handle": "tokyo-canali-lavender-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lavender, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568774707,
+   "sampleSku": "DWPP-206350-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531828787,
+   "handle": "tokyo-canali-mint-julep-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Mint Julep, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canali, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792568807475,
+   "sampleSku": "DWPP-206349-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531763251,
+   "handle": "tokyo-canali-terra-cotta-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tan, Terra Cotta, Tokyo, Tokyo Canali, Type II, Wallcovering",
+   "sampleVariantId": 44792568905779,
+   "sampleSku": "DWPP-206347-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896531927091,
+   "handle": "tokyo-canali-tweed-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Canali, Tweed, Type II, Wallcovering",
+   "sampleVariantId": 44792568938547,
+   "sampleSku": "DWPP-206352-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532090931,
+   "handle": "tokyo-canterbury-aubergine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aubergine, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, Pink, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792568971315,
+   "sampleSku": "DWPP-206356-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532058163,
+   "handle": "tokyo-canterbury-brocade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brocade, contact-for-price, Contract Vinyl, Damask, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Red, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569069619,
+   "sampleSku": "DWPP-206355-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532385843,
+   "handle": "tokyo-canterbury-chateau-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chateau, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Canterbury, Traditional, Type II, Wallcovering",
+   "sampleVariantId": 44792569167923,
+   "sampleSku": "DWPP-206364-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532287539,
+   "handle": "tokyo-canterbury-corduroy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Corduroy, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Canterbury, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792569200691,
+   "sampleSku": "DWPP-206361-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532222003,
+   "handle": "tokyo-canterbury-cotton-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cotton, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569266227,
+   "sampleSku": "DWPP-206359-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532123699,
+   "handle": "tokyo-canterbury-crepe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Crepe, display_variant, Phillipe Romano, Pink, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569331763,
+   "sampleSku": "DWPP-206357-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532254771,
+   "handle": "tokyo-canterbury-ember-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Ember, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569364531,
+   "sampleSku": "DWPP-206360-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532353075,
+   "handle": "tokyo-canterbury-fennel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Fennel, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569397299,
+   "sampleSku": "DWPP-206363-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532320307,
+   "handle": "tokyo-canterbury-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Sand, Scandinavian, Silver, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569430067,
+   "sampleSku": "DWPP-206362-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532156467,
+   "handle": "tokyo-canterbury-silk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silk, Silver, Tokyo, Tokyo Canterbury, Type II, Wallcovering",
+   "sampleVariantId": 44792569462835,
+   "sampleSku": "DWPP-206358-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532713523,
+   "handle": "tokyo-chevron-wood-aura-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aura, Beige, Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569528371,
+   "sampleSku": "DWPP-206371-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532877363,
+   "handle": "tokyo-chevron-wood-cadet-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cadet, Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569561139,
+   "sampleSku": "DWPP-206374-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532647987,
+   "handle": "tokyo-chevron-wood-charcoal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Green, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569593907,
+   "sampleSku": "DWPP-206370-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532484147,
+   "handle": "tokyo-chevron-wood-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chevron, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Tan, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569626675,
+   "sampleSku": "DWPP-206367-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532582451,
+   "handle": "tokyo-chevron-wood-crest-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Chevron, contact-for-price, Contract Vinyl, Crest, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569659443,
+   "sampleSku": "DWPP-206369-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532451379,
+   "handle": "tokyo-chevron-wood-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Tan, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569724979,
+   "sampleSku": "DWPP-206366-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532779059,
+   "handle": "tokyo-chevron-wood-mint-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Mint Green, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792569757747,
+   "sampleSku": "DWPP-206372-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532418611,
+   "handle": "tokyo-chevron-wood-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Taupe, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering",
+   "sampleVariantId": 44792569790515,
+   "sampleSku": "DWPP-206365-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532516915,
+   "handle": "tokyo-chevron-wood-weathered-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Tan, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering, Weathered",
+   "sampleVariantId": 44792569823283,
+   "sampleSku": "DWPP-206368-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532844595,
+   "handle": "tokyo-chevron-wood-wintergreen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chevron, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Teal, Tokyo, Tokyo Chevron Wood, Type II, Wallcovering, Wintergreen",
+   "sampleVariantId": 44792569856051,
+   "sampleSku": "DWPP-206373-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533106739,
+   "handle": "tokyo-foundation-alpine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alpine, Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792569888819,
+   "sampleSku": "DWPP-206380-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533008435,
+   "handle": "tokyo-foundation-ember-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Ember, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792569921587,
+   "sampleSku": "DWPP-206378-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532910131,
+   "handle": "tokyo-foundation-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792570052659,
+   "sampleSku": "DWPP-206375-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533041203,
+   "handle": "tokyo-foundation-grove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Grove, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792570118195,
+   "sampleSku": "DWPP-206379-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533139507,
+   "handle": "tokyo-foundation-nocturnal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Navy, Nocturnal, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792570216499,
+   "sampleSku": "DWPP-206381-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532975667,
+   "handle": "tokyo-foundation-rust-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Rust, Scandinavian, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792570249267,
+   "sampleSku": "DWPP-206377-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896532942899,
+   "handle": "tokyo-foundation-sphinx-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Sphinx, Tokyo, Tokyo Foundation, Type II, Wallcovering",
+   "sampleVariantId": 44792570282035,
+   "sampleSku": "DWPP-206376-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533401651,
+   "handle": "tokyo-gibson-almond-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "ALMOND, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792570347571,
+   "sampleSku": "DWPP-206385-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533663795,
+   "handle": "tokyo-gibson-barnwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "BARNWOOD, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tan, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792570413107,
+   "sampleSku": "DWPP-206390-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533696563,
+   "handle": "tokyo-gibson-celadon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "CELADON, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792570445875,
+   "sampleSku": "DWPP-206391-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533467187,
+   "handle": "tokyo-gibson-cirrus-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "CIRRUS, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792570478643,
+   "sampleSku": "DWPP-206387-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533565491,
+   "handle": "tokyo-gibson-citrine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, CITRINE, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792570544179,
+   "sampleSku": "DWPP-206388-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533434419,
+   "handle": "tokyo-gibson-patina-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, PATINA, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792577130547,
+   "sampleSku": "DWPP-206386-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533336115,
+   "handle": "tokyo-gibson-putty-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, PUTTY, quote-only, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792577163315,
+   "sampleSku": "DWPP-206384-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533270579,
+   "handle": "tokyo-gibson-snow-drift-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, SNOW DRIFT, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792577327155,
+   "sampleSku": "DWPP-206383-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533205043,
+   "handle": "tokyo-gibson-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Stone, Tokyo, Tokyo Gibson, Type II, Wallcovering",
+   "sampleVariantId": 44792577425459,
+   "sampleSku": "DWPP-206382-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533631027,
+   "handle": "tokyo-gibson-sunburst-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, SUNBURST, Tokyo, Tokyo Gibson, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792578441267,
+   "sampleSku": "DWPP-206389-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533958707,
+   "handle": "tokyo-havasu-alps-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alps, Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792578867251,
+   "sampleSku": "DWPP-206399-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533729331,
+   "handle": "tokyo-havasu-blue-skies-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Skies, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792578900019,
+   "sampleSku": "DWPP-206392-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534024243,
+   "handle": "tokyo-havasu-cameo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cameo, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tan, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580472883,
+   "sampleSku": "DWPP-206400-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534057011,
+   "handle": "tokyo-havasu-cement-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Cement, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580505651,
+   "sampleSku": "DWPP-206401-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533827635,
+   "handle": "tokyo-havasu-citrine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Citrine, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580571187,
+   "sampleSku": "DWPP-206395-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533794867,
+   "handle": "tokyo-havasu-julep-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Julep, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580669491,
+   "sampleSku": "DWPP-206394-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533762099,
+   "handle": "tokyo-havasu-lagoon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Green, Lagoon, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580735027,
+   "sampleSku": "DWPP-206393-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533925939,
+   "handle": "tokyo-havasu-light-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Light Grey, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792580833331,
+   "sampleSku": "DWPP-206398-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533860403,
+   "handle": "tokyo-havasu-mother-of-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Mother of Pearl, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792581455923,
+   "sampleSku": "DWPP-206396-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896533893171,
+   "handle": "tokyo-havasu-storm-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Storm, Tokyo, Tokyo Havasu, Type II, Wallcovering",
+   "sampleVariantId": 44792581586995,
+   "sampleSku": "DWPP-206397-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534122547,
+   "handle": "tokyo-horizon-almond-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583258163,
+   "sampleSku": "DWPP-206403-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534155315,
+   "handle": "tokyo-horizon-banana-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Banana, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583290931,
+   "sampleSku": "DWPP-206404-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534220851,
+   "handle": "tokyo-horizon-birch-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Birch, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583651379,
+   "sampleSku": "DWPP-206405-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534482995,
+   "handle": "tokyo-horizon-champagne-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Champagne, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583749683,
+   "sampleSku": "DWPP-206411-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534253619,
+   "handle": "tokyo-horizon-ginger-root-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Ginger Root, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583847987,
+   "sampleSku": "DWPP-206406-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534286387,
+   "handle": "tokyo-horizon-lily-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Lily White, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792583913523,
+   "sampleSku": "DWPP-206407-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534089779,
+   "handle": "tokyo-horizon-luxe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Luxe, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792584765491,
+   "sampleSku": "DWPP-206402-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534351923,
+   "handle": "tokyo-horizon-mink-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Mink, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792584863795,
+   "sampleSku": "DWPP-206409-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534319155,
+   "handle": "tokyo-horizon-moonbeam-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Moonbeam, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792586928179,
+   "sampleSku": "DWPP-206408-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534417459,
+   "handle": "tokyo-horizon-sonic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Sonic, Tokyo, Tokyo Horizon, Type II, Wallcovering",
+   "sampleVariantId": 44792586960947,
+   "sampleSku": "DWPP-206410-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534646835,
+   "handle": "tokyo-ikat-avocado-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AVOCADO, Bohemian, contact-for-price, Contract Vinyl, display_variant, Gold, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792588992563,
+   "sampleSku": "DWPP-206415-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534745139,
+   "handle": "tokyo-ikat-blade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "BLADE, Bohemian, contact-for-price, Contract Vinyl, display_variant, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792589025331,
+   "sampleSku": "DWPP-206417-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534515763,
+   "handle": "tokyo-ikat-chestnut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, Brown, Chestnut, contact-for-price, Contract Vinyl, display_variant, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792589156403,
+   "sampleSku": "DWPP-206412-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534843443,
+   "handle": "tokyo-ikat-cliffside-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, CLIFFSIDE, contact-for-price, Contract Vinyl, display_variant, Gold, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792589418547,
+   "sampleSku": "DWPP-206419-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534548531,
+   "handle": "tokyo-ikat-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, ICE, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792589778995,
+   "sampleSku": "DWPP-206413-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534876211,
+   "handle": "tokyo-ikat-navy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Ikat, NAVY, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792589844531,
+   "sampleSku": "DWPP-206420-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534679603,
+   "handle": "tokyo-ikat-reef-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Gray, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, REEF, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792590041139,
+   "sampleSku": "DWPP-206416-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534908979,
+   "handle": "tokyo-ikat-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bohemian, contact-for-price, Contract Vinyl, display_variant, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, SAND, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792590073907,
+   "sampleSku": "DWPP-206421-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534777907,
+   "handle": "tokyo-ikat-slate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Gray, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, SLATE, Tokyo, Tokyo Ikat, Type II, Wallcovering",
+   "sampleVariantId": 44792590106675,
+   "sampleSku": "DWPP-206418-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534581299,
+   "handle": "tokyo-ikat-twine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Bohemian, contact-for-price, Contract Vinyl, display_variant, Ikat, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Ikat, TWINE, Type II, Wallcovering",
+   "sampleVariantId": 44792590204979,
+   "sampleSku": "DWPP-206414-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535072819,
+   "handle": "tokyo-jacobi-dipole-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, DIPOLE, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Jacobi, Type II, Wallcovering",
+   "sampleVariantId": 44792590303283,
+   "sampleSku": "DWPP-206425-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534941747,
+   "handle": "tokyo-jacobi-flux-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Flux, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Jacobi, Type II, Wallcovering",
+   "sampleVariantId": 44792590336051,
+   "sampleSku": "DWPP-206422-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535040051,
+   "handle": "tokyo-jacobi-ion-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, ION, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Jacobi, Type II, Wallcovering",
+   "sampleVariantId": 44792590499891,
+   "sampleSku": "DWPP-206424-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896534974515,
+   "handle": "tokyo-jacobi-orbit-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, ORBIT, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Jacobi, Type II, Wallcovering",
+   "sampleVariantId": 44792590729267,
+   "sampleSku": "DWPP-206423-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535138355,
+   "handle": "tokyo-jacobi-volt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Red, Tokyo, Tokyo Jacobi, Type II, VOLT, Wallcovering",
+   "sampleVariantId": 44792590893107,
+   "sampleSku": "DWPP-206427-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535105587,
+   "handle": "tokyo-jacobi-watt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Jacobi, Type II, Wallcovering, WATT, Yellow",
+   "sampleVariantId": 44792590958643,
+   "sampleSku": "DWPP-206426-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535236659,
+   "handle": "tokyo-labyrinth-aloe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aloe, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591089715,
+   "sampleSku": "DWPP-206429-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896536907827,
+   "handle": "tokyo-labyrinth-altitude-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Altitude, contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591155251,
+   "sampleSku": "DWPP-206436-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535400499,
+   "handle": "tokyo-labyrinth-aster-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aster, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591319091,
+   "sampleSku": "DWPP-206432-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535433267,
+   "handle": "tokyo-labyrinth-dune-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dune, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591384627,
+   "sampleSku": "DWPP-206433-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535367731,
+   "handle": "tokyo-labyrinth-gypsum-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gypsum, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591581235,
+   "sampleSku": "DWPP-206431-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535334963,
+   "handle": "tokyo-labyrinth-limestone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Limestone, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591679539,
+   "sampleSku": "DWPP-206430-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896536940595,
+   "handle": "tokyo-labyrinth-mirage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Mirage, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792591777843,
+   "sampleSku": "DWPP-206437-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896536842291,
+   "handle": "tokyo-labyrinth-nocturnal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Nocturnal, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792593219635,
+   "sampleSku": "DWPP-206435-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896535171123,
+   "handle": "tokyo-labyrinth-overcast-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Overcast, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792593350707,
+   "sampleSku": "DWPP-206428-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896536121395,
+   "handle": "tokyo-labyrinth-sandstorm-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Sandstorm, Scandinavian, Tokyo, Tokyo Labyrinth, Type II, Wallcovering",
+   "sampleVariantId": 44792607080499,
+   "sampleSku": "DWPP-206434-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537006131,
+   "handle": "tokyo-marisol-cornsilk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, CORNSILK, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Marisol, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792607178803,
+   "sampleSku": "DWPP-206439-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537104435,
+   "handle": "tokyo-marisol-cranberry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, CRANBERRY, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Red, Scandinavian, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607211571,
+   "sampleSku": "DWPP-206441-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896536973363,
+   "handle": "tokyo-marisol-eggplant-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Eggplant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607342643,
+   "sampleSku": "DWPP-206438-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537235507,
+   "handle": "tokyo-marisol-hearth-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, HEARTH, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tan, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607440947,
+   "sampleSku": "DWPP-206444-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537301043,
+   "handle": "tokyo-marisol-julep-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, JULEP, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607473715,
+   "sampleSku": "DWPP-206446-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537333811,
+   "handle": "tokyo-marisol-pewter-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, PEWTER, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607768627,
+   "sampleSku": "DWPP-206447-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537268275,
+   "handle": "tokyo-marisol-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, QUARTZ, quote-only, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792607965235,
+   "sampleSku": "DWPP-206445-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537202739,
+   "handle": "tokyo-marisol-saffron-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, SAFFRON, Scandinavian, Tan, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792608194611,
+   "sampleSku": "DWPP-206443-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537071667,
+   "handle": "tokyo-marisol-scarlet-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Red, SCARLET, Tokyo, Tokyo Marisol, Type II, Wallcovering",
+   "sampleVariantId": 44792611274803,
+   "sampleSku": "DWPP-206440-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537137203,
+   "handle": "tokyo-marisol-white-lily-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Marisol, Type II, Wallcovering, WHITE LILY",
+   "sampleVariantId": 44792611340339,
+   "sampleSku": "DWPP-206442-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537432115,
+   "handle": "tokyo-moraine-cosmic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cosmic, display_variant, Mid-Century Modern, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611373107,
+   "sampleSku": "DWPP-206448-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537792563,
+   "handle": "tokyo-moraine-cumulus-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cumulus, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611504179,
+   "sampleSku": "DWPP-206455-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537727027,
+   "handle": "tokyo-moraine-harbo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Harbo, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611536947,
+   "sampleSku": "DWPP-206454-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537661491,
+   "handle": "tokyo-moraine-lamb-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Lamb, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611635251,
+   "sampleSku": "DWPP-206453-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537825331,
+   "handle": "tokyo-moraine-magnetic-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Magnetic, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611766323,
+   "sampleSku": "DWPP-206456-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537890867,
+   "handle": "tokyo-moraine-nectar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Nectar, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Moraine, Type II, Wallcovering, Yellow",
+   "sampleVariantId": 44792611897395,
+   "sampleSku": "DWPP-206457-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537497651,
+   "handle": "tokyo-moraine-sage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Sage, Scandinavian, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792611995699,
+   "sampleSku": "DWPP-206450-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537595955,
+   "handle": "tokyo-moraine-sky-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Sky, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792612061235,
+   "sampleSku": "DWPP-206452-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537530419,
+   "handle": "tokyo-moraine-spring-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Spring, Tokyo, Tokyo Moraine, Type II, Wallcovering",
+   "sampleVariantId": 44792612094003,
+   "sampleSku": "DWPP-206451-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537464883,
+   "handle": "tokyo-moraine-velvet-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Moraine, Type II, Velvet, Wallcovering",
+   "sampleVariantId": 44792612159539,
+   "sampleSku": "DWPP-206449-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538218547,
+   "handle": "tokyo-organic-stripe-cascades-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "CASCADES, contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612192307,
+   "sampleSku": "DWPP-206465-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538284083,
+   "handle": "tokyo-organic-stripe-denali-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, DENALI, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612225075,
+   "sampleSku": "DWPP-206466-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538316851,
+   "handle": "tokyo-organic-stripe-everglades-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, EVERGLADES, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792612421683,
+   "sampleSku": "DWPP-206467-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538021939,
+   "handle": "tokyo-organic-stripe-katmai-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, KATMAI, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612519987,
+   "sampleSku": "DWPP-206459-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538185779,
+   "handle": "tokyo-organic-stripe-lassen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, LASSEN, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tan, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612585523,
+   "sampleSku": "DWPP-206464-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538153011,
+   "handle": "tokyo-organic-stripe-mesa-verde-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, MESA VERDE, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612618291,
+   "sampleSku": "DWPP-206463-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538087475,
+   "handle": "tokyo-organic-stripe-redwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, REDWOOD, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering",
+   "sampleVariantId": 44792612651059,
+   "sampleSku": "DWPP-206461-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538120243,
+   "handle": "tokyo-organic-stripe-tortugas-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, TORTUGAS, Type II, Wallcovering",
+   "sampleVariantId": 44792612683827,
+   "sampleSku": "DWPP-206462-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896537956403,
+   "handle": "tokyo-organic-stripe-yellowstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering, Yellow, Yellowstone",
+   "sampleVariantId": 44792612749363,
+   "sampleSku": "DWPP-206458-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538054707,
+   "handle": "tokyo-organic-stripe-yosemite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-tokyo, quote-only, Stripe, Tokyo, Tokyo Organic Stripe, Type II, Wallcovering, YOSEMITE",
+   "sampleVariantId": 44792612847667,
+   "sampleSku": "DWPP-206460-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538349619,
+   "handle": "tokyo-rhea-carbon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Carbon, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792612913203,
+   "sampleSku": "DWPP-206468-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538480691,
+   "handle": "tokyo-rhea-dark-chocolate-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, DARK CHOCOLATE, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tan, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792612945971,
+   "sampleSku": "DWPP-206472-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538578995,
+   "handle": "tokyo-rhea-golden-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, GOLDEN, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792613044275,
+   "sampleSku": "DWPP-206474-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538677299,
+   "handle": "tokyo-rhea-graphite-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, GRAPHITE, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792613109811,
+   "sampleSku": "DWPP-206477-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538447923,
+   "handle": "tokyo-rhea-shadow-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, SHADOW, Tan, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792613142579,
+   "sampleSku": "DWPP-206471-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538382387,
+   "handle": "tokyo-rhea-shell-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, SHELL, Silver, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792613175347,
+   "sampleSku": "DWPP-206469-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538415155,
+   "handle": "tokyo-rhea-straw-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, STRAW, Tokyo, Tokyo Rhea, Type II, Wallcovering",
+   "sampleVariantId": 44792613240883,
+   "sampleSku": "DWPP-206470-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538611763,
+   "handle": "tokyo-rhea-tomato-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Rhea, TOMATO, Type II, Wallcovering",
+   "sampleVariantId": 44792613306419,
+   "sampleSku": "DWPP-206475-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538644531,
+   "handle": "tokyo-rhea-vine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Botanical, contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Rhea, Type II, VINE, Wallcovering",
+   "sampleVariantId": 44792613404723,
+   "sampleSku": "DWPP-206476-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538513459,
+   "handle": "tokyo-rhea-warm-white-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rhea, Type II, Wallcovering, WARM WHITE",
+   "sampleVariantId": 44792613503027,
+   "sampleSku": "DWPP-206473-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538841139,
+   "handle": "tokyo-rochester-chalice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Chalice, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613568563,
+   "sampleSku": "DWPP-206480-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538710067,
+   "handle": "tokyo-rochester-cobbler-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cobbler, contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613634099,
+   "sampleSku": "DWPP-206478-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538808371,
+   "handle": "tokyo-rochester-elephant-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Elephant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613699635,
+   "sampleSku": "DWPP-206479-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539136051,
+   "handle": "tokyo-rochester-flurry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Flurry, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Rochester, Type II, Wallcovering, White",
+   "sampleVariantId": 44792613797939,
+   "sampleSku": "DWPP-206487-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539037747,
+   "handle": "tokyo-rochester-linen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Linen, Phillipe Romano, pr-capital-tokyo, quote-only, Rustic, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613863475,
+   "sampleSku": "DWPP-206485-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539004979,
+   "handle": "tokyo-rochester-moonstone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Moonstone, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613896243,
+   "sampleSku": "DWPP-206484-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538972211,
+   "handle": "tokyo-rochester-novel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Novel, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613929011,
+   "sampleSku": "DWPP-206483-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538873907,
+   "handle": "tokyo-rochester-rosebud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Rosebud, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792613961779,
+   "sampleSku": "DWPP-206481-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539103283,
+   "handle": "tokyo-rochester-silt-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silt, Silver, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792614060083,
+   "sampleSku": "DWPP-206486-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896538939443,
+   "handle": "tokyo-rochester-terracotta-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tan, Terracotta, Tokyo, Tokyo Rochester, Type II, Wallcovering",
+   "sampleVariantId": 44792620482611,
+   "sampleSku": "DWPP-206482-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539627571,
+   "handle": "tokyo-roxy-ebony-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, EBONY, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792620515379,
+   "sampleSku": "DWPP-206496-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539430963,
+   "handle": "tokyo-roxy-imperial-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, IMPERIAL, Navy, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792620613683,
+   "sampleSku": "DWPP-206492-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539496499,
+   "handle": "tokyo-roxy-in-the-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, IN THE MIST, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792620679219,
+   "sampleSku": "DWPP-206493-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539168819,
+   "handle": "tokyo-roxy-industry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Industry, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792620810291,
+   "sampleSku": "DWPP-206488-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539660339,
+   "handle": "tokyo-roxy-pearl-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, PEARL, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792620941363,
+   "sampleSku": "DWPP-206497-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539529267,
+   "handle": "tokyo-roxy-smokey-quartz-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, SMOKEY QUARTZ, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792621137971,
+   "sampleSku": "DWPP-206494-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539267123,
+   "handle": "tokyo-roxy-stainless-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, STAINLESS, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792621334579,
+   "sampleSku": "DWPP-206490-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539201587,
+   "handle": "tokyo-roxy-stonewall-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, STONEWALL, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792621432883,
+   "sampleSku": "DWPP-206489-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539332659,
+   "handle": "tokyo-roxy-thunder-grey-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, THUNDER GREY, Tokyo, Tokyo Roxy, Type II, Wallcovering",
+   "sampleVariantId": 44792621531187,
+   "sampleSku": "DWPP-206491-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539594803,
+   "handle": "tokyo-roxy-vineyard-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, Pink, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Roxy, Type II, VINEYARD, Wallcovering",
+   "sampleVariantId": 44792621563955,
+   "sampleSku": "DWPP-206495-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539725875,
+   "handle": "tokyo-sea-cliff-cascade-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cascade, Coastal, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering",
+   "sampleVariantId": 44792622546995,
+   "sampleSku": "DWPP-206499-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539791411,
+   "handle": "tokyo-sea-cliff-cove-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, Cove, display_variant, Gray, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering",
+   "sampleVariantId": 44792622612531,
+   "sampleSku": "DWPP-206501-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540053555,
+   "handle": "tokyo-sea-cliff-habitat-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Coastal, contact-for-price, Contract Vinyl, display_variant, Habitat, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering",
+   "sampleVariantId": 44792622678067,
+   "sampleSku": "DWPP-206507-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539922483,
+   "handle": "tokyo-sea-cliff-loam-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Loam, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Sea Cliff, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792622841907,
+   "sampleSku": "DWPP-206504-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539693107,
+   "handle": "tokyo-sea-cliff-lush-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Lush, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering",
+   "sampleVariantId": 44792622972979,
+   "sampleSku": "DWPP-206498-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539824179,
+   "handle": "tokyo-sea-cliff-oasis-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, display_variant, Oasis, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Sea Cliff, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792623038515,
+   "sampleSku": "DWPP-206502-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539758643,
+   "handle": "tokyo-sea-cliff-quarry-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, Quarry, quote-only, Silver, Tokyo, Tokyo Sea Cliff, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792623169587,
+   "sampleSku": "DWPP-206500-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539988019,
+   "handle": "tokyo-sea-cliff-rapids-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Coastal, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Rapids, Tokyo, Tokyo Sea Cliff, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792623267891,
+   "sampleSku": "DWPP-206506-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539889715,
+   "handle": "tokyo-sea-cliff-sediment-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Sediment, Silver, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering",
+   "sampleVariantId": 44792623366195,
+   "sampleSku": "DWPP-206503-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896539955251,
+   "handle": "tokyo-sea-cliff-windswept-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Sea Cliff, Type II, Wallcovering, Windswept",
+   "sampleVariantId": 44792623431731,
+   "sampleSku": "DWPP-206505-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540250163,
+   "handle": "tokyo-stride-almond-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792623628339,
+   "sampleSku": "DWPP-206511-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540217395,
+   "handle": "tokyo-stride-cabin-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, Cabin, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792623792179,
+   "sampleSku": "DWPP-206510-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540414003,
+   "handle": "tokyo-stride-crochet-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Crochet, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Silver, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792623890483,
+   "sampleSku": "DWPP-206516-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540315699,
+   "handle": "tokyo-stride-dogwood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Dogwood, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792624119859,
+   "sampleSku": "DWPP-206513-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540086323,
+   "handle": "tokyo-stride-junebug-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Junebug, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792624316467,
+   "sampleSku": "DWPP-206508-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540282931,
+   "handle": "tokyo-stride-pear-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Pear, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792624414771,
+   "sampleSku": "DWPP-206512-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540348467,
+   "handle": "tokyo-stride-sandbar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Sandbar, Scandinavian, Silver, Tokyo, Tokyo Stride, Type II, Vinyl, Wallcovering",
+   "sampleVariantId": 44792624545843,
+   "sampleSku": "DWPP-206514-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540479539,
+   "handle": "tokyo-stride-storm-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Silver, Storm, Tokyo, Tokyo Stride, Type II, Wallcovering",
+   "sampleVariantId": 44792624906291,
+   "sampleSku": "DWPP-206517-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540381235,
+   "handle": "tokyo-stride-tumeric-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gold, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Stride, Tumeric, Type II, Wallcovering",
+   "sampleVariantId": 44792624971827,
+   "sampleSku": "DWPP-206515-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896540119091,
+   "handle": "tokyo-stride-zodiac-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Brown, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-tokyo, quote-only, Scandinavian, Tokyo, Tokyo Stride, Type II, Wallcovering, Zodiac",
+   "sampleVariantId": 44792625299507,
+   "sampleSku": "DWPP-206509-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499626602608,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52876",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Taupe, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955094118512,
+   "sampleSku": "XWS-52876-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499626963056,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52877",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Ecru, LEED, Leed Walls, Light Yellow, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955107094640,
+   "sampleSku": "XWS-52877-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499627421808,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52878",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Solid, Tan, Taupe, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955110240368,
+   "sampleSku": "XWS-52878-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499627847792,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52879",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Commercial, contact-for-price, Contemporary, Dark Blue, display_variant, LEED, Leed Walls, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955112829040,
+   "sampleSku": "XWS-52879-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499628273776,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52880",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, Cream, display_variant, Eggshell, LEED, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Solid, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955115057264,
+   "sampleSku": "XWS-52880-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499628765296,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52881",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, contact-for-price, display_variant, Eggshell, LEED, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Solid, Tan, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955118104688,
+   "sampleSku": "XWS-52881-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499629846640,
+   "handle": "tompkins-stain-repellent-real-dupione-silk-xws-52884",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Silk, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955125608560,
+   "sampleSku": "XWS-52884-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558098995,
+   "handle": "dwrt-9000-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Agate Place, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Blue, Blue Silver, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Blue, Denim Blue, display_variant, Living Room, Marble, Midnight Blue, Modern, Needs-Image, Needs-Price, Needs-Width, Paper, Peacock, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Teal, Texture, Totally Stoned Agate Blue Silver, Trending Wallcovering Collection 2024, Vinyl, Wallcovering",
+   "sampleVariantId": 42827572248627,
+   "sampleSku": "DWRT-9000-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567437875,
+   "handle": "dwrt-5000-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Architectural, Bathroom, Bedroom, Black, Blue, Blue Silver, Class A Fire Rated, Commercial, contact-for-price, contemporary, Denim Blue, display_variant, Fabric, Living Room, Marble, Midnight Blue, Modern, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Powder Blue, Screen Print, Screen Prints, Serene, Showroom Line, smooth, Totally Stoned Agate, Trending Wallcovering Collection 2024, Vinyl, Wallcovering",
+   "sampleVariantId": 42827597905971,
+   "sampleSku": "DWRT-5000F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471567470643,
+   "handle": "dwrt-5001-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Dusty Rose, Fabric, Glamorous, Gold, Living Room, Luxe, Luxurious, Marble, Needs-Image, Needs-Price, Needs-Width, Paper, Petal, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Pink, Pink Gold, Primary Suite, Rose Quartz, Screen Print, Screen Prints, Showroom Line, Totally Stoned Agate, Trending Wallcovering Collection 2024, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 42827597938739,
+   "sampleSku": "DWRT-5001F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558131763,
+   "handle": "dwrt-9001-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Agate Place, AI-Analyzed-v2, Architectural, Bedroom, Burgundy, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Dusty Rose, Glamorous, Gold, Living Room, Luxe, Luxurious, Marble, Needs-Image, Needs-Price, Needs-Width, Paper, Petal, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Pink, Pink Gold, Primary Suite, Red, Rose Quartz, Screen Print, Screen Prints, Showroom Line, Texture, Totally Stoned Agate Pink Gold, Trending Wallcovering Collection 2024, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 42827572281395,
+   "sampleSku": "DWRT-9001-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500268036208,
+   "handle": "toyotomi-durable-vinyl-xol-33463",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962708648048,
+   "sampleSku": "XOL-33463-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500270985328,
+   "handle": "toyotomi-durable-vinyl-xol-33466",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Gray, Lattice, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962748559472,
+   "sampleSku": "XOL-33466-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500275572848,
+   "handle": "toyotomi-durable-vinyl-xol-33471",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Geometric, Gray, Lattice, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962811441264,
+   "sampleSku": "XOL-33471-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500280455280,
+   "handle": "toyotomi-durable-vinyl-xol-33477",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962888052848,
+   "sampleSku": "XOL-33477-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471563964467,
+   "handle": "dwrt-9120-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal Print, Animal/Insects, Architectural, Bathroom, Bedroom, Bird, Birds, Blue, Botanical, Cat, Cats, Chinoiserie, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cornflower Blue, Cottagecore, Deer, display_variant, Fauna, Fish, Flowers, Horse, Horses, Leopard, Leopards, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Peacocks, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Rabbit, Rabbits, Sapphire, Scenic, Screen Print, Screen Prints, Serene, Showroom Line, Snake, Snakes, Toile, Traditional, Tree of Life, Tree Of Life Blue, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827586568243,
+   "sampleSku": "DWRT-9120-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471563997235,
+   "handle": "dwrt-9121-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal Print, Animal/Insects, Aqua, Architectural, Bedroom, Birds, Botanical, Butterflies, Cats, Chinoiserie, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Deer, display_variant, Fauna, Fish, Flowers, Horses, Juniper, Leopards, Light Cyan, Needs-Image, Needs-Price, Needs-Width, Nursery, Pale Aqua, Pale Blue, Paper, Pattern, People, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Powder Room, Rabbits, Scenic, Screen Print, Screen Prints, Serene, Showroom Line, Snakes, Teal, Toile, Tree of Life, Tree Of Life Green, Trees, Trending Wallcovering Collection 2024, Turquoise, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827586601011,
+   "sampleSku": "DWRT-9121-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564030003,
+   "handle": "dwrt-9122-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Bedroom, Bird, Birds, Botanical, Butterfly, Cat, Chinoiserie, Commercial, contact-for-price, Contemporary, Coral, Cottagecore, Cream, Deer, display_variant, Fauna, Flower, Flowers, Garnet, Horse, Leopard, Living Room, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Plants, Playful, Rabbit, Scenic, Screen Print, Screen Prints, Showroom Line, Snake, Toile, Traditional, Tree, Tree of Life, Trending Wallcovering Collection 2024, Wallcovering, Whimsical",
+   "sampleVariantId": 42827586633779,
+   "sampleSku": "DWRT-9122-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564062771,
+   "handle": "dwrt-9123-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Bedroom, Bird, Birds, Botanical, Butter, Cat, Cats, Chinoiserie, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, Deer, display_variant, Fauna, Flowers, Goat, Goats, Gold, Golden Tan, Hallway, Horse, Horses, Leopard, Leopards, Needs-Image, Needs-Price, Needs-Width, Nursery, Paper, Pattern, Peacock, Peacocks, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Plants, Playful, Rabbit, Rabbits, Scenic, Screen Print, Screen Prints, Showroom Line, Snake, Snakes, Tree, Tree of Life, Trees, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827586666547,
+   "sampleSku": "DWRT-9123-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558656051,
+   "handle": "dwrt-9016-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Aztec, Bedroom, Blue, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Gray, display_variant, Fretwork, Geometric, Gray, Hallway, Light Blue, Living Room, material-group-metallic-foil, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, Non-woven, Paper, Pattern, Peacock, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Showroom Line, Sophisticated, Trending Wallcovering Collection 2024, Tribal Lattice Blue, Wallcovering",
+   "sampleVariantId": 42827572805683,
+   "sampleSku": "DWRT-9016-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558623283,
+   "handle": "dwrt-9015-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Aztec, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Fretwork, Geometric, Hallway, Living Room, Needs-Image, Needs-Price, Needs-Width, Off White, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Silver Gray, Taupe, Traditional, Transitional, Trending Wallcovering Collection 2024, Tribal Lattice Neutral, Wallcovering",
+   "sampleVariantId": 42827572772915,
+   "sampleSku": "DWRT-9015-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558688819,
+   "handle": "dwrt-9017-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Aztec, Brown, Chocolate Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dining Room, display_variant, Geometric, Global, Hallway, Living Room, Maroon, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Red, Rustic, Screen Print, Screen Prints, Showroom Line, Tan, Taupe, Terracotta, Traditional, Trending Wallcovering Collection 2024, Tribal, Tribal Lattice Terracotta, Wallcovering, Warm",
+   "sampleVariantId": 42827572838451,
+   "sampleSku": "DWRT-9017-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564095539,
+   "handle": "dwrt-9124-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Bedroom, Beige, Botanical, Commercial, contact-for-price, Contemporary, Cottagecore, Cream, display_variant, Eggshell, Floral, Light Blue, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Slate Gray, Trending Wallcovering Collection 2024, Tulips, Wallcovering, Whimsical",
+   "sampleVariantId": 42827586699315,
+   "sampleSku": "DWRT-9124-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471560163379,
+   "handle": "dwrt-9044-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal Print, Animal Skin, Animal/Insects, Architectural, Art Nouveau, Bedroom, Black, Charcoal, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Academia, display_variant, Eclectic, Fauna, Frida, Hallway, Living Room, material-group-natural-fiber, Maximalist, Moody, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Showroom Line, Snake, Trending Wallcovering Collection 2024, Twisted Snakes Black, Wallcovering, Whimsical",
+   "sampleVariantId": 42827573887027,
+   "sampleSku": "DWRT-9044-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569010739,
+   "handle": "dwrt-5041-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal/Insects, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Academia, Dining Room, display_variant, Eclectic, Eggshell, Fabric, Fauna, Living Room, Moody, Needs-Image, Needs-Price, Needs-Width, Novelty, Off White, Paper, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Silver, Snake, Taupe, Traditional, Trending Wallcovering Collection 2024, Twisted Snakes, Victorian, Wallcovering, Whimsical",
+   "sampleVariantId": 42827599872051,
+   "sampleSku": "DWRT-5041F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569043507,
+   "handle": "dwrt-5042-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Animal/Insects, Architectural, Bedroom, Black, Charcoal Grey, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Dark Academia, Dark Grey, display_variant, Eclectic, Eggshell, Fabric, Fauna, Gothic, Gray, Grey, Hallway, Living Room, Maximalist, Moody, Needs-Image, Needs-Price, Needs-Width, Novelty, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Screen Print, Screen Prints, Showroom Line, Silver, Snake, Trending Wallcovering Collection 2024, Twisted Snakes, Wallcovering, Whimsical",
+   "sampleVariantId": 42827599904819,
+   "sampleSku": "DWRT-5042F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569076275,
+   "handle": "dwrt-5043-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal/Insects, Architectural, Bathroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Fauna, Hallway, Nautical, Navy, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Screen Print, Screen Prints, Showroom Line, Snake, Traditional, Trending Wallcovering Collection 2024, Twisted Snakes, Vinyl, Wallcovering, Whimsical",
+   "sampleVariantId": 42827599937587,
+   "sampleSku": "DWRT-5043F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471569109043,
+   "handle": "dwrt-5044-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Air Force Blue, Animal Print, Animal/Insects, Architectural, Bathroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, Fauna, Nautical, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Fabric, Playful, Screen Print, Screen Prints, Showroom Line, Snake, Trending Wallcovering Collection 2024, Twisted Snakes, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827599970355,
+   "sampleSku": "DWRT-5044F-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471560228915,
+   "handle": "dwrt-9046-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal Print, Animal/Insects, Architectural, Bedroom, Blue, Class A Fire Rated, Coastal, Commercial, contact-for-price, Contemporary, Denim Blue, display_variant, Fauna, Frida, Nautical, Navy, Needs-Image, Needs-Price, Needs-Width, Novelty, Nursery, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playful, Powder Room, Screen Print, Screen Prints, Showroom Line, Silver, Snake, Trending Wallcovering Collection 2024, Twisted Snakes Nautical, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827573952563,
+   "sampleSku": "DWRT-9046-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471560196147,
+   "handle": "dwrt-9045-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal Print, Animal/Insects, Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, contact-for-price, Contemporary, display_variant, Eclectic, Fauna, Frida, Hallway, Light Gray, Living Room, Midnightblue, Moody, Nautical, Navy, Needs-Image, Needs-Price, Needs-Width, Novelty, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Showroom Line, Snake, Traditional, Trending Wallcovering Collection 2024, Twisted Snakes Navy, Wallcovering, Whimsical",
+   "sampleVariantId": 42827573919795,
+   "sampleSku": "DWRT-9045-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471560261683,
+   "handle": "dwrt-9047-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal Print, Animal/Insects, Architectural, Art Nouveau, Bedroom, Bone, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eclectic, Fauna, Frida, Ivory, Living Room, Needs-Image, Needs-Price, Needs-Width, Novelty, Office, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Playful, Screen Print, Screen Prints, Showroom Line, Silver, Snake, Taupe, Traditional, Trending Wallcovering Collection 2024, Twisted Snakes Neutral, Wallcovering, Whimsical, White",
+   "sampleVariantId": 42827573985331,
+   "sampleSku": "DWRT-9047-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499624145008,
+   "handle": "ulster-stain-repellent-real-textile-walls-xws-52870",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Cream, display_variant, Fabric, Floral, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Traditional, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955075014768,
+   "sampleSku": "XWS-52870-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499624538224,
+   "handle": "ulster-stain-repellent-real-textile-walls-xws-52871",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Damask, display_variant, Fabric, Floral, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955078029424,
+   "sampleSku": "XWS-52871-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499624865904,
+   "handle": "ulster-stain-repellent-real-textile-walls-xws-52872",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Floral, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Paisley, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955079536752,
+   "sampleSku": "XWS-52872-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499625259120,
+   "handle": "ulster-stain-repellent-real-textile-walls-xws-52873",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955082649712,
+   "sampleSku": "XWS-52873-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499625685104,
+   "handle": "ulster-stain-repellent-real-textile-walls-xws-52874",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Fabric, LEED, Leed Walls, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955088580720,
+   "sampleSku": "XWS-52874-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700947206195,
+   "handle": "unikko-60-mural-white-on-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Botanical, Bright, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cream, decor wallcovering, display_variant, Emerald Green, Fern, Floral, Green, Hallway, jannelli-volpi, Light Gray, Living Room, marimekko, Minimalist, Modern, mural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, printed-wallcoverings, Scandinavian, Showroom Line, Trending Wallcovering Collection 2025, unikko, Unikko 60, Vinyl, Wallcovering, White",
+   "sampleVariantId": 43722302095411,
+   "sampleSku": "DWWC-507200-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500412477552,
+   "handle": "urakawa-real-capiz-shell-shell-33695",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Capiz, Capiz Flakes/Recycled paperboard w/ polyester yarn, Commercial, contact-for-price, Contemporary, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, SHELL, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, White",
+   "sampleVariantId": 13964264374384,
+   "sampleSku": "SHELL-33695-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499204386928,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48548",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Architectural, Beige, Class A Fire Rated, Commercial, contact-for-price, contemporary, display_variant, Eggshell, Gold, Metallic, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Texture, textured, Wallcovering, Yellow",
+   "sampleVariantId": 13948743909488,
+   "sampleSku": "XQP-48548-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1499204485232,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48549",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, contact-for-price, display_variant, Eggshell, material-group-natural-fiber, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13948747939952,
+   "sampleSku": "XQP-48549-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500689039472,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34422",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Ecru, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967390474352,
+   "sampleSku": "XCQ-34422-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500691398768,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34427",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aluminum, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967413510256,
+   "sampleSku": "XCQ-34427-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453709875,
+   "handle": "vienna-its-electric-conga-line-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Conga Line, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315307059,
+   "sampleSku": "DWPP-205912-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453611571,
+   "handle": "vienna-its-electric-dance-off-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Dance Off, display_variant, Mid-Century Modern, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315175987,
+   "sampleSku": "DWPP-205911-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453873715,
+   "handle": "vienna-its-electric-jitterbug-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Jitterbug, Mid-Century Modern, Phillipe Romano, pr-capital-vienna, quote-only, Teal, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315372595,
+   "sampleSku": "DWPP-205914-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453972019,
+   "handle": "vienna-its-electric-limbo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Limbo, Mid-Century Modern, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315405363,
+   "sampleSku": "DWPP-205915-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453447731,
+   "handle": "vienna-its-electric-maypole-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Maypole, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782313930803,
+   "sampleSku": "DWPP-205909-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454070323,
+   "handle": "vienna-its-electric-samba-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bohemian, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Samba, Tan, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315438131,
+   "sampleSku": "DWPP-205916-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453742643,
+   "handle": "vienna-its-electric-shuffle-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Mid-Century Modern, Phillipe Romano, pr-capital-vienna, quote-only, Shuffle, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315339827,
+   "sampleSku": "DWPP-205913-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454168627,
+   "handle": "vienna-its-electric-tempo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Charcoal, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Tempo, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44782315503667,
+   "sampleSku": "DWPP-205917-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453414963,
+   "handle": "vienna-its-electric-twist-shout-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Twist & Shout, Type II, Vienna, Vienna It's Electric, Wallcovering",
+   "sampleVariantId": 44778169663539,
+   "sampleSku": "DWPP-205908-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896453546035,
+   "handle": "vienna-its-electric-youre-a-natural-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Mid-Century Modern, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna It's Electric, Wallcovering, You're A Natural",
+   "sampleVariantId": 44782313996339,
+   "sampleSku": "DWPP-205910-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456396851,
+   "handle": "vienna-line-dance-buff-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Buff, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315896883,
+   "sampleSku": "DWPP-205924-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454758451,
+   "handle": "vienna-line-dance-cloud-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud, contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315798579,
+   "sampleSku": "DWPP-205921-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456560691,
+   "handle": "vienna-line-dance-coffee-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Coffee, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782316027955,
+   "sampleSku": "DWPP-205926-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454561843,
+   "handle": "vienna-line-dance-cool-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cool Mist, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Line Dance, Wallcovering, White",
+   "sampleVariantId": 44782315667507,
+   "sampleSku": "DWPP-205919-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456691763,
+   "handle": "vienna-line-dance-pasture-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Pasture, Phillipe Romano, pr-capital-vienna, quote-only, Sage, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782316093491,
+   "sampleSku": "DWPP-205927-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454692915,
+   "handle": "vienna-line-dance-pebble-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Pebble, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Line Dance, Wallcovering, White",
+   "sampleVariantId": 44782315765811,
+   "sampleSku": "DWPP-205920-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896454463539,
+   "handle": "vienna-line-dance-reef-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Reef, Teal, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315601971,
+   "sampleSku": "DWPP-205918-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896455184435,
+   "handle": "vienna-line-dance-sand-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Sand, Traditional, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315831347,
+   "sampleSku": "DWPP-205922-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456495155,
+   "handle": "vienna-line-dance-taupe-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Taupe, Traditional, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315929651,
+   "sampleSku": "DWPP-205925-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456003635,
+   "handle": "vienna-line-dance-titanium-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Titanium, Type II, Vienna, Vienna Line Dance, Wallcovering",
+   "sampleVariantId": 44782315864115,
+   "sampleSku": "DWPP-205923-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457445427,
+   "handle": "vienna-pick-up-sticks-cafe-latte-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Cafe Latte, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Traditional, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44792625332275,
+   "sampleSku": "DWPP-205936-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456953907,
+   "handle": "vienna-pick-up-sticks-cloud-nine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cloud Nine, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44782316224563,
+   "sampleSku": "DWPP-205930-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457117747,
+   "handle": "vienna-pick-up-sticks-desert-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, Desert, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Traditional, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44782316322867,
+   "sampleSku": "DWPP-205932-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456888371,
+   "handle": "vienna-pick-up-sticks-frosted-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Frosted, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering, White",
+   "sampleVariantId": 44782316191795,
+   "sampleSku": "DWPP-205929-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457183283,
+   "handle": "vienna-pick-up-sticks-gravel-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Gravel, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Pick Up Sticks, Vinyl, Wallcovering",
+   "sampleVariantId": 44782316355635,
+   "sampleSku": "DWPP-205933-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457019443,
+   "handle": "vienna-pick-up-sticks-last-straw-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Last Straw, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44782316290099,
+   "sampleSku": "DWPP-205931-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457347123,
+   "handle": "vienna-pick-up-sticks-stone-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Stone, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44792625430579,
+   "sampleSku": "DWPP-205935-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457576499,
+   "handle": "vienna-pick-up-sticks-stormy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-vienna, quote-only, Stormy, Traditional, Type II, Vienna, Vienna Pick Up Sticks, Vinyl, Wallcovering",
+   "sampleVariantId": 44792625496115,
+   "sampleSku": "DWPP-205937-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896456790067,
+   "handle": "vienna-pick-up-sticks-surfin-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Green, Phillipe Romano, pr-capital-vienna, quote-only, Surfin' Blue, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering",
+   "sampleVariantId": 44782316159027,
+   "sampleSku": "DWPP-205928-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457248819,
+   "handle": "vienna-pick-up-sticks-wild-card-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Pick Up Sticks, Wallcovering, Wild Card",
+   "sampleVariantId": 44792625659955,
+   "sampleSku": "DWPP-205934-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458035251,
+   "handle": "vienna-plaid-hatter-adventure-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Adventure, Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792625823795,
+   "sampleSku": "DWPP-205942-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458428467,
+   "handle": "vienna-plaid-hatter-blue-caterpillar-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Blue Caterpillar, contact-for-price, Contract Vinyl, display_variant, Geometric, Navy, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792627101747,
+   "sampleSku": "DWPP-205947-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458166323,
+   "handle": "vienna-plaid-hatter-cheshire-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Cheshire, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792627167283,
+   "sampleSku": "DWPP-205944-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457936947,
+   "handle": "vienna-plaid-hatter-dormouse-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Dormouse, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792629231667,
+   "sampleSku": "DWPP-205941-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458100787,
+   "handle": "vienna-plaid-hatter-looking-glass-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Looking Glass, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792629329971,
+   "sampleSku": "DWPP-205943-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457773107,
+   "handle": "vienna-plaid-hatter-passage-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Passage, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792629493811,
+   "sampleSku": "DWPP-205939-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458297395,
+   "handle": "vienna-plaid-hatter-tea-party-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Tea Party, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792629657651,
+   "sampleSku": "DWPP-205946-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458264627,
+   "handle": "vienna-plaid-hatter-tweedledee-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Tweedledee, Type II, Vienna, Vienna Plaid Hatter, Wallcovering",
+   "sampleVariantId": 44792629788723,
+   "sampleSku": "DWPP-205945-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457838643,
+   "handle": "vienna-plaid-hatter-white-queen-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, Cream, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Plaid Hatter, Wallcovering, White Queen",
+   "sampleVariantId": 44792629887027,
+   "sampleSku": "DWPP-205940-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896457707571,
+   "handle": "vienna-plaid-hatter-wonderland-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Geometric, Phillipe Romano, pr-capital-vienna, quote-only, Red, Type II, Vienna, Vienna Plaid Hatter, Wallcovering, Wonderland",
+   "sampleVariantId": 44792629985331,
+   "sampleSku": "DWPP-205938-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896459083827,
+   "handle": "vienna-truffle-aquadisiac-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aquadisiac, contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792630771763,
+   "sampleSku": "DWPP-205953-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458494003,
+   "handle": "vienna-truffle-carbon-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Carbon, Charcoal, contact-for-price, Contract Vinyl, display_variant, Modern, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792631230515,
+   "sampleSku": "DWPP-205948-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896459313203,
+   "handle": "vienna-truffle-fashion-ash-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Fashion Ash, Modern, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792631427123,
+   "sampleSku": "DWPP-205955-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896459182131,
+   "handle": "vienna-truffle-field-poppy-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Field Poppy, Floral, Gold, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792631459891,
+   "sampleSku": "DWPP-205954-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458985523,
+   "handle": "vienna-truffle-ice-petal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Floral, Ice Petal, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792631558195,
+   "sampleSku": "DWPP-205952-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458690611,
+   "handle": "vienna-truffle-pearlywood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Pearlywood, Phillipe Romano, pr-capital-vienna, quote-only, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792643715123,
+   "sampleSku": "DWPP-205950-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458821683,
+   "handle": "vienna-truffle-peri-gold-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, contact-for-price, Contract Vinyl, display_variant, Peri Gold, Phillipe Romano, pr-capital-vienna, quote-only, Traditional, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792643813427,
+   "sampleSku": "DWPP-205951-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896459444275,
+   "handle": "vienna-truffle-ruby-wrap-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Red, Ruby Wrap, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792643911731,
+   "sampleSku": "DWPP-205957-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896458592307,
+   "handle": "vienna-truffle-snow-strut-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Phillipe Romano, pr-capital-vienna, quote-only, Silver, Snow Strut, Type II, Vienna, Vienna Truffle, Vinyl, Wallcovering",
+   "sampleVariantId": 44792644108339,
+   "sampleSku": "DWPP-205949-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7896459378739,
+   "handle": "vienna-truffle-the-real-teal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "contact-for-price, Contract Vinyl, display_variant, Gray, Phillipe Romano, pr-capital-vienna, quote-only, The Real Teal, Traditional, Type II, Vienna, Vienna Truffle, Wallcovering",
+   "sampleVariantId": 44792644206643,
+   "sampleSku": "DWPP-205956-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564128307,
+   "handle": "dwrt-9125-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Nouveau, Bedroom, Botanical, Butter, Commercial, contact-for-price, Dining Room, display_variant, Floral, Flowers, Gold, Golden Yellow, Leaves, Lemons, Living Room, Needs-Image, Needs-Price, Needs-Width, Olive Green, Orange, Organic, Original, Paper, Pattern, Peach, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Showroom Line, Traditional, Trending Wallcovering Collection 2024, Vintage Lemons, Wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 42827586732083,
+   "sampleSku": "DWRT-9125-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7700976173107,
+   "handle": "carrington-water-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Botanical, carrington, Class A Fire Rated, classic-elegance, Commercial, contact-for-price, Contemporary, Cream, display_variant, Ecru, Floral, Graphite, Hallway, Hospitality, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral, Off-white, Organic, Peach, pretrimmed, Serene, Showroom Line, silk, Silk Texture, solid, Taupe, texture, Textured, Traditional, Transitional, wallcovering, water, water-repellent, winfield-thybony, wns5604-wt-0",
+   "sampleVariantId": 43722447913011,
+   "sampleSku": "DWWC-507370-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498791182448,
+   "handle": "whitney-weave-walls-prx-79124",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Tan, Textured, Traditional, Viscose, Wallcovering, Weave, Whitney Weave",
+   "sampleVariantId": 13940944044144,
+   "sampleSku": "PRX-79124-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471561244723,
+   "handle": "dwrt-9072-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Biophilic, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dark Green, Dark Slategray, Dark Teal, display_variant, Floral, Grandmillennial, Leaf, Light Gray, Light Steelblue, Lutea, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Pattern, Peacock, Periwinkle, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, Wilda Willows Blue",
+   "sampleVariantId": 42827576475699,
+   "sampleSku": "DWRT-9072-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471561277491,
+   "handle": "dwrt-9073-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Biophilic, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dark Olive Green, display_variant, Floral, Grandmillennial, Gray, Green, Light Grey, Linen, Lutea, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Silver, Slate Blue, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Wilda Willows Grey",
+   "sampleVariantId": 42827576508467,
+   "sampleSku": "DWRT-9073-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471561310259,
+   "handle": "dwrt-9074-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Biophilic, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dark Seagreen, Dark Slate Gray, display_variant, Eggshell, Floral, Grandmillennial, Gray, Grey, Light Gray, Lightgray, Lutea, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Sage Green, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, White, Wilda Willows Neutral",
+   "sampleVariantId": 42827576541235,
+   "sampleSku": "DWRT-9074-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471561343027,
+   "handle": "dwrt-9075-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Biophilic, Blue, Botanical, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cottagecore, Dark Green, Dark Seagreen, display_variant, Dusty Blue, Floral, Grandmillennial, Light Blue, Light Steelblue, Lutea, Needs-Image, Needs-Price, Needs-Width, Nursery, Organic Modern, Paper, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Powder Blue, Sage Green, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Whimsical, Wilda Willows Sky",
+   "sampleVariantId": 42827576574003,
+   "sampleSku": "DWRT-9075-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500050784368,
+   "handle": "william-beige-dry-erase-only-xje-53790",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, LEED, Leed Walls, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Wallcovering, William Beige Dry Erase Only",
+   "sampleVariantId": 13959565279344,
+   "sampleSku": "XJE-53790-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 6936774279219,
+   "handle": "xty-949658-designerwallcoverings-los-angeles",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcoverings, contact-for-price, Contemporary, display_variant, Durable Vinyl, Durable Vinyls, Eggshell, Geometric, Hospitality Wallcoverings, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Purchasing Agency, Showroom Line, Textured, Vinyl, Wallcovering, Wide Textures, Wide Vinyls, William Embossed Wavy Stripe Durable Vinyl",
+   "sampleVariantId": 41354095296563,
+   "sampleSku": "XTY-949658-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1498798915696,
+   "handle": "william-weave-walls-prx-79159",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, Cotton, display_variant, Grasscloth, Khaki, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Tan, Textured, Viscose, Wallcovering, Weave, William Weave",
+   "sampleVariantId": 13941097496688,
+   "sampleSku": "PRX-79159-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564161075,
+   "handle": "dwrt-9126-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Baci, Bathroom, Bedroom, Biophilic, Botanical, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Leaf, Minimalist, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Stripe, Teal, Trending Wallcovering Collection 2024, Turquoise, Vine, Wallcovering, Willow",
+   "sampleVariantId": 42827586764851,
+   "sampleSku": "DWRT-9126-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564193843,
+   "handle": "dwrt-9127-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Beige, Bellini, Botanical, Brushstroke, Commercial, contact-for-price, Contemporary, Cream, display_variant, Hallway, Linen, Minimalist, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Pink, Rose Beige, Screen Print, Screen Prints, Serene, Showroom Line, Stripe, Trending Wallcovering Collection 2024, Wallcovering, Willow",
+   "sampleVariantId": 42827586863155,
+   "sampleSku": "DWRT-9127-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564226611,
+   "handle": "dwrt-9128-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Botanical, Brushstroke, Commercial, contact-for-price, Contemporary, Cream, display_variant, Eggshell, Green, Hallway, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Off-white, Olive Green, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Sprints, Trending Wallcovering Collection 2024, Vine, Wallcovering, Whimsical, Willow, Yellow",
+   "sampleVariantId": 42827586895923,
+   "sampleSku": "DWRT-9128-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500044886128,
+   "handle": "windermere-dry-erase-magentic-xje-53787",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Class A Fire Rated, Commercial, contact-for-price, display_variant, LEED, Leed Walls, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off White, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Solid, Texture, Wallcovering, White, Windermere Dry Erase & Magentic",
+   "sampleVariantId": 13959485718640,
+   "sampleSku": "XJE-53787-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500763390064,
+   "handle": "yamada-bay-durable-vinyl-xlq-34556",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968050749552,
+   "sampleSku": "XLQ-34556-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500766273648,
+   "handle": "yamada-bay-durable-vinyl-xlq-34562",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968082075760,
+   "sampleSku": "XLQ-34562-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500349399152,
+   "handle": "yobetsu-durable-vinyl-xpd-33569",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Vinyl, Vinyls, Wallcovering, Yobetsu Durable Vinyl",
+   "sampleVariantId": 13963651252336,
+   "sampleSku": "XPD-33569-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500351168624,
+   "handle": "yobetsu-durable-vinyl-xpd-33573",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963668914288,
+   "sampleSku": "XPD-33573-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500544532592,
+   "handle": "yoichi-durable-vinyl-xrf-34030",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965742637168,
+   "sampleSku": "XRF-34030-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500545253488,
+   "handle": "yoichi-durable-vinyl-xrf-34032",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965747683440,
+   "sampleSku": "XRF-34032-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500549054576,
+   "handle": "yoichi-durable-vinyl-xrf-34044",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Eggshell, Geometric, Gray, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965798178928,
+   "sampleSku": "XRF-34044-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500623536240,
+   "handle": "yokohama-durable-vinyl-xwa-34262",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Contemporary, display_variant, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966691172464,
+   "sampleSku": "XWA-34262-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500625698928,
+   "handle": "yokohama-durable-vinyl-xwa-34269",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966717354096,
+   "sampleSku": "XWA-34269-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500506980464,
+   "handle": "yoron-real-sisal-textile-txt-33912",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Bone, Commercial, contact-for-price, Contemporary, display_variant, Grasscloth, Gray, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Sisal, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13965267107952,
+   "sampleSku": "TXT-33912-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 1500242411632,
+   "handle": "yuni-durable-vinyl-xoj-33440",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contact-for-price, display_variant, Eggshell, Fabric, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962424254576,
+   "sampleSku": "XOJ-33440-sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564259379,
+   "handle": "dwrt-9129-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Aria, Bedroom, Blue, Commercial, contact-for-price, Contemporary, Dark Teal, Deep Teal, display_variant, Eggshell, Geometric, Hallway, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Teal, Trending Wallcovering Collection 2024, Wallcovering, Zephyr",
+   "sampleVariantId": 42827586928691,
+   "sampleSku": "DWRT-9129-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471564423219,
+   "handle": "dwrt-9131-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bellini, Commercial, contact-for-price, Contemporary, Cream, display_variant, Dusty Rose, Eggshell, Geometric, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Nursery, Off-white, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Pink, Scandinavian, Screen Print, Screen Prints, Serene, Showroom Line, Trending Wallcovering Collection 2024, Wallcovering, Zephyr",
+   "sampleVariantId": 42827586994227,
+   "sampleSku": "DWRT-9131-Sample",
+   "intent": "explicit quote-only"
+  },
+  {
+   "id": 7471558721587,
+   "handle": "dwrt-9018-phillipe-romano-screen-prints",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bahar, Bedroom, Beige, Brown, Champagne, Chocolate Brown, Class A Fire Rated, Commercial, contact-for-price, Contemporary, Cream, display_variant, Geometric, Linen, Living Room, Mid-Century Modern, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Office, Organic Modern, Paper, Pattern, Phillipe Romano, Phillipe Romano Screen Printed Wallcovering, Screen Print, Screen Prints, Serene, Showroom Line, Stripe, Trending Wallcovering Collection 2024, Wallcovering, Yellow, Ziggy Zaggy Sand",
+   "sampleVariantId": 42827572871219,
+   "sampleSku": "DWRT-9018-Sample",
+   "intent": "explicit quote-only"
+  }
+ ],
+ "tranche2": [
+  {
+   "id": 7796246118451,
+   "handle": "calypso-onyx-dwpr-425033",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Fabric, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Sophisticated, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727175731,
+   "sampleSku": "DWPN-100033",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246216755,
+   "handle": "calypso-linen-dwpr-425036",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Geometric, Hallway, Hospitality, IMO Marine Grade, Linen, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Taupe, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727274035,
+   "sampleSku": "DWPN-100036",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246249523,
+   "handle": "calypso-sapphire-dwpr-425037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Animal, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Chevron, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Geometric, Gray, Hallway, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727306803,
+   "sampleSku": "DWPN-100037",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246282291,
+   "handle": "calypso-walnut-dwpr-425038",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Ecru, Fabric, Geometric, Herringbone, Hospitality, IMO Marine Grade, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107727339571,
+   "sampleSku": "DWPN-100038",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246315059,
+   "handle": "calypso-pewter-dwpr-425039",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Geometric, Gray, Grey, Hallway, Herringbone, Hospitality, IMO Marine Grade, Linen, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Sophisticated, Taupe, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727372339,
+   "sampleSku": "DWPN-100039",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246380595,
+   "handle": "calypso-wheat-dwpr-425041",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Fabric, Geometric, Hallway, Hospitality, IMO Marine Grade, Living Room, Needs-Price, NFPA 260 Compliant, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44107727437875,
+   "sampleSku": "DWPN-100041",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246413363,
+   "handle": "calypso-espresso-dwpr-425042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acoustic, Animal, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Charcoal, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Geometric, Gold, Gray, Hallway, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Texture, Textured, Upholstery, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44107727470643,
+   "sampleSku": "DWPN-100042",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 6882877341747,
+   "handle": "dwjj-40850-alessandro",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alessandro, Alessandro Printed Grasscloth on Mylar Foil Naturals, Architectural, Bella Italiano, Commercial, Contemporary, display_variant, Eggshell, grasscloth, Grasscloth Texture, Gray, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Printed Grasscloth on Mylar Foil, Rustic, Showroom Line, Silver, Textured, Wallcovering, White",
+   "sampleVariantId": 41180290056243,
+   "sampleSku": "DWJJ-40850-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502322098288,
+   "handle": "amalina-prt-74065",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13986736013424,
+   "sampleSku": "PRT-74065-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796253950003,
+   "handle": "ambergris-espresso-dwpr-425112",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ambergris, Animal, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Farmhouse, Faux Leather, Gold, Golden Brown, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Plaid, Polyester, Rustic, Showroom Line, Stripe, Tan, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44107742642227,
+   "sampleSku": "DWPN-100112",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796253982771,
+   "handle": "ambergris-sand-dwpr-425113",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Farmhouse, Geometric, Hospitality, IMO Marine Grade, Light Beige, Living Room, Needs-Price, NFPA 260 Compliant, Office, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Plaid, Polyester, Polyurethane, Rustic, Showroom Line, Silicone, Silicone Hybrid, Stripe, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107742674995,
+   "sampleSku": "DWPN-100113",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254015539,
+   "handle": "ambergris-slate-dwpr-425114",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Serene, Showroom Line, Silicone, Silicone Hybrid, Silver, Smoke, Stripe, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107742707763,
+   "sampleSku": "DWPN-100114",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254048307,
+   "handle": "ambergris-azure-dwpr-425115",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Geometric, Hospitality, IMO Marine Grade, Light Gray, Living Room, Medium Gray, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Plaid, Polyester, Polyurethane, Serene, Showroom Line, Silicone, Silicone Hybrid, Steel Blue, Stripe, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107742740531,
+   "sampleSku": "DWPN-100115",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254081075,
+   "handle": "ambergris-driftwood-dwpr-425116",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Grey, display_variant, Fabric, Geometric, Gray, Grey, Hospitality, IMO Marine Grade, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Silicone, Silicone Hybrid, Sophisticated, Stripe, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107742773299,
+   "sampleSku": "DWPN-100116",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796253917235,
+   "handle": "ambergris-pewter-dwpr-425111",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ambergris, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Stripe, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107742609459,
+   "sampleSku": "DWPN-100111",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254113843,
+   "handle": "ambergris-peacock-dwpr-425117",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Aqua, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Teal, display_variant, Fabric, Geometric, Hospitality, IMO Marine Grade, Light Teal, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Sea Green, Serene, Showroom Line, Silicone, Silicone Hybrid, Stripe, Teal, Textured, Turquoise, Upholstery, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44107742806067,
+   "sampleSku": "DWPN-100117",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254146611,
+   "handle": "ambergris-forest-dwpr-425118",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Animal, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Green, display_variant, Fabric, Forest Green, Green, Hospitality, IMO Marine Grade, Insects, Light Beige, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Sage Green, Serene, Showroom Line, Silicone, Silicone Hybrid, Stripe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107742838835,
+   "sampleSku": "DWPN-100118",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796254179379,
+   "handle": "ambergris-sage-dwpr-425119",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alter, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Olive Green, display_variant, Fabric, Gold, Green, Hospitality, IMO Marine Grade, Khaki, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Silicone, Silicone Hybrid, Sophisticated, Stripe, Taupe, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107742871603,
+   "sampleSku": "DWPN-100119",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 6882877210675,
+   "handle": "dwjj-40820-andrea",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Andrea, Andrea Printed Grasscloth on Mylar Foil Naturals, Architectural, Bella Italiano, Commercial, Contemporary, Cork, display_variant, Ecru, grasscloth, Grasscloth Texture, Gray, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Printed Grasscloth on Mylar Foil, Rustic, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 41180289925171,
+   "sampleSku": "DWJJ-40820-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796246642739,
+   "handle": "andros-biscuit-dwpr-425049",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal, Animal Skin, Bedroom, Beige, Biscuit, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Embossed, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107727700019,
+   "sampleSku": "DWPN-100049",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246577203,
+   "handle": "andros-bordeaux-dwpr-425047",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Red, Dining Room, display_variant, Embossed, Fabric-backed Vinyl, Faux Leather, Garnet, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maroon, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107727634483,
+   "sampleSku": "DWPN-100047",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246478899,
+   "handle": "andros-linen-dwpr-425044",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Eggshell, Embossed, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727536179,
+   "sampleSku": "DWPN-100044",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246446131,
+   "handle": "andros-sand-dwpr-425043",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Faux Leather, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107727503411,
+   "sampleSku": "DWPN-100043",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246609971,
+   "handle": "andros-toffee-dwpr-425048",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal Skin, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Tan, display_variant, Embossed, Farmhouse, Faux Leather, Grasscloth, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107727667251,
+   "sampleSku": "DWPN-100048",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246675507,
+   "handle": "andros-walnut-dwpr-425050",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric-backed Vinyl, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44107727732787,
+   "sampleSku": "DWPN-100050",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796246544435,
+   "handle": "andros-wheat-dwpr-425046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Andros, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Embossed, Faux Leather, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Wheat",
+   "sampleVariantId": 44107727601715,
+   "sampleSku": "DWPN-100046",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257062963,
+   "handle": "aqua-bay-sand-dwpr-425150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Aqua Bay, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crocodile, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Glamorous, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vanilla, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44107753357363,
+   "sampleSku": "DWPN-100150",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257095731,
+   "handle": "aqua-bay-slate-dwpr-425151",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Aqua Bay, Bedroom, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Glamorous, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Slate, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44107753390131,
+   "sampleSku": "DWPN-100151",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796255948851,
+   "handle": "arawak-mahogany-dwpr-425138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Analog, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Dot, Eggshell, Embossed, Etched Polyurethane, Fabric, Gray, Grey, Hospitality, IMO Marine Grade, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Serene, Showroom Line, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107744739379,
+   "sampleSku": "DWPN-100138",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7700945895475,
+   "handle": "arches-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, arches, Arches Wallcovering, Architectural, art-deco, Bedroom, Biophilic, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, decor wallcovering, display_variant, fire-resistant, Light Brown, Living Room, marquetry, Needs-Image, Needs-Price, Needs-Width, Oak, Office, Orange, Organic, Organic Modern, paulownia, Phillipe Romano, Shadow, Showroom Line, straight-match, Tan, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White, Wood Grain",
+   "sampleVariantId": 43722285776947,
+   "sampleSku": "DWWC-507180-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796257488947,
+   "handle": "arecibo-bordeaux-dwpr-425162",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Arecibo, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxe, Luxury, Maroon, Needs-Price, NFPA 260 Compliant, Office, Oxblood, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107753816115,
+   "sampleSku": "DWPN-100161",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257554483,
+   "handle": "arecibo-camel-dwpr-425164",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Arecibo, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107753881651,
+   "sampleSku": "DWPN-100163",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257423411,
+   "handle": "arecibo-espresso-dwpr-425160",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Arecibo, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Saddle Brown, Showroom Line, Solid, Sophisticated, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107753750579,
+   "sampleSku": "DWPN-100159",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257456179,
+   "handle": "arecibo-onyx-dwpr-425161",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Arecibo, Bedroom, Black, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107753783347,
+   "sampleSku": "DWPN-100160",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257521715,
+   "handle": "arecibo-toffee-dwpr-425163",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arecibo, Bedroom, Beige, Brown, Burnt Sienna, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107753848883,
+   "sampleSku": "DWPN-100162",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497904709744,
+   "handle": "armando-chevron-printed-vinyl-wallpaper-type-2-xvj-73095",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Armando Chevron Printed Vinyl Wallcovering, Beige, Bone, Chevron, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13932952518768,
+   "sampleSku": "XVJ-73095-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497906020464,
+   "handle": "armando-chevron-printed-vinyl-wallpaper-type-2-xvj-73101",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Armando Chevron Printed Vinyl Wallcovering, Beige, Brown, Chevron, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Geometric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Transitional, Type 2, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13932966084720,
+   "sampleSku": "XVJ-73101-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796257783859,
+   "handle": "arrowroot-dune-dwpr-425171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Beige, Dark Brown, display_variant, Dune, Embossed, Fabric, Farmhouse, Faux Leather, Gold, Grasscloth, Green, Herringbone, Hospitality, IMO Marine Grade, Khaki, Leather, Living Room, Luxury, Mocha, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107754111027,
+   "sampleSku": "DWPN-100170",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257751091,
+   "handle": "arrowroot-espresso-dwpr-425170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Faux Leather, Grasscloth, Herringbone, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107754078259,
+   "sampleSku": "DWPN-100169",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257718323,
+   "handle": "arrowroot-linen-dwpr-425169",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Khaki, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Goldenrod, Grasscloth, Hallway, Herringbone, Hospitality, IMO Marine Grade, Khaki, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107754045491,
+   "sampleSku": "DWPN-100168",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257849395,
+   "handle": "arrowroot-pewter-dwpr-425173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Gold, Grasscloth, Gray-brown, Herringbone, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107754176563,
+   "sampleSku": "DWPN-100172",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257685555,
+   "handle": "arrowroot-sand-dwpr-425168",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Embossed, Fabric, Faux Leather, Gold, Grasscloth, Hallway, Herringbone, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44107754012723,
+   "sampleSku": "DWPN-100167",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796257816627,
+   "handle": "arrowroot-wheat-dwpr-425172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Arrowroot, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44107754143795,
+   "sampleSku": "DWPN-100171",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796247265331,
+   "handle": "aruba-pebble-driftwood-dwpr-425058",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aruba Pebble, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Taupe, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107728355379,
+   "sampleSku": "DWPN-100058",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259061811,
+   "handle": "aster-reef-espresso-dwpr-425188",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Aster Reef, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Dot, Embossed, Espresso, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Organic, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107755454515,
+   "sampleSku": "DWPN-100187",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259356723,
+   "handle": "aster-reef-ivory-dwpr-425190",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Aster Reef, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Dot, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Ivory, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Nursery, Off-white, Organic Modern, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver Gray, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107755749427,
+   "sampleSku": "DWPN-100189",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259225651,
+   "handle": "aster-reef-periwinkle-dwpr-425189",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Aster Reef, Bedroom, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cornflower, display_variant, Dot, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Pattern, Performance Fabric, Performance Vinyl, Periwinkle, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Grey, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107755618355,
+   "sampleSku": "DWPN-100188",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259487795,
+   "handle": "aster-reef-sage-dwpr-425191",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Aster Reef, Bathroom, Bedroom, Biophilic, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dot, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Olive Green, Organic, Organic Modern, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107755880499,
+   "sampleSku": "DWPN-100190",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259848243,
+   "handle": "aster-reef-sand-dwpr-425194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Aster Reef, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Pale Beige, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107756273715,
+   "sampleSku": "DWPN-100193",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259717171,
+   "handle": "aster-reef-slate-dwpr-425193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Aster Reef, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dot, Embossed, Fabric, Faux Leather, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Slate, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107756175411,
+   "sampleSku": "DWPN-100192",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796259651635,
+   "handle": "aster-reef-terracotta-dwpr-425192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Aster Reef, Bedroom, Beige, Biophilic, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Copper, display_variant, Dot, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Orange, Organic Modern, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Tan, Terracotta, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107756044339,
+   "sampleSku": "DWPN-100191",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7700143603763,
+   "handle": "astoria-ivory-flock-wallpaper-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Accent Wall, Architectural, art-deco, astoria, Bedroom, Class A Fire Rated, Commercial, Contemporary, cream, display_variant, elodie-collection, fan-design, flock, Floral, Geometric, Glamorous, Hallway, Hotel, ivory, Light Gray, Light Grey, Living Room, luxury, Metallic, Midnight Blue, Modern, Needs-Image, Needs-Price, Needs-Width, Off-white, paste-the-wall, Pattern, Showroom Line, Silver, Sophisticated, Statement Wall, straight-match, strippable, textile, Textured, Vinyl, wallcovering, White",
+   "sampleVariantId": 43720205172787,
+   "sampleSku": "DWWC-506360-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500777480304,
+   "handle": "ataga-bay-rayon-textile-txt-34599",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13968232644720,
+   "sampleSku": "TXT-34599-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500778233968,
+   "handle": "ataga-bay-rayon-textile-txt-34601",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Light Brown, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rayon, Showroom Line, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13968240738416,
+   "sampleSku": "TXT-34601-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500778594416,
+   "handle": "ataga-bay-rayon-textile-txt-34602",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Fabric, Gray, Light Beige, Light Brown, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Showroom Line, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 13968246112368,
+   "sampleSku": "TXT-34602-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500779151472,
+   "handle": "ataga-bay-rayon-textile-txt-34603",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Light Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13968250601584,
+   "sampleSku": "TXT-34603-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500779479152,
+   "handle": "ataga-bay-rayon-textile-txt-34604",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 13968256008304,
+   "sampleSku": "TXT-34604-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500779806832,
+   "handle": "ataga-bay-rayon-textile-txt-34605",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ataga Bay Rayon Textile, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Grasscloth, Gray, Light Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering",
+   "sampleVariantId": 13968259874928,
+   "sampleSku": "TXT-34605-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499793916016,
+   "handle": "aventura-stain-repellent-real-textile-walls-xwy-53181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Grasscloth, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13956450844784,
+   "sampleSku": "XWY-53181-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499672805488,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52959",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955460169840,
+   "sampleSku": "XWQ-52959-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499673591920,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52961",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955468525680,
+   "sampleSku": "XWQ-52961-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499674017904,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52962",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955469115504,
+   "sampleSku": "XWQ-52962-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499674443888,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52963",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955471212656,
+   "sampleSku": "XWQ-52963-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499674869872,
+   "handle": "avon-park-stain-repellent-real-textile-walls-xwq-52964",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13955479830640,
+   "sampleSku": "XWQ-52964-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796264206387,
+   "handle": "buccoo-pewter-dwpr-425259",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ballad, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Gold, Hallway, Hospitality, IMO Marine Grade, Light Beige, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Stripe, Taupe, Tekloom, Tekloom Performance, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44107764236339,
+   "sampleSku": "DWPN-100237",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796264337459,
+   "handle": "buccoo-peacock-dwpr-425260",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ballad, Basketweave, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Olive Green, display_variant, Eggshell, Gold, Green, Hospitality, IMO Marine Grade, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Stripe, Teal, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107764367411,
+   "sampleSku": "DWPN-100238",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796264468531,
+   "handle": "buccoo-smoke-dwpr-425261",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ballad, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool, Dark Gray, display_variant, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Industrial, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Stripe, Tan, Taupe, Teal, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107764498483,
+   "sampleSku": "DWPN-100239",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796264599603,
+   "handle": "buccoo-dove-dwpr-425262",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Ballad, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Living Room, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107764629555,
+   "sampleSku": "DWPN-100240",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796263419955,
+   "handle": "bamboo-bay-linen-dwpr-425253",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bamboo Bay, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Organic, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Scandinavian, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107763449907,
+   "sampleSku": "DWPN-100231",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796263288883,
+   "handle": "bamboo-bay-sand-dwpr-425252",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bamboo Bay, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107763318835,
+   "sampleSku": "DWPN-100230",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260012083,
+   "handle": "barbuda-sapphire-dwpr-425195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Astor, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Blue, display_variant, Fabric, Fabric-backed Vinyl, Hospitality, Insects, Living Room, Midnight, Midnight Blue, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Showroom Line, Solid, Sophisticated, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107756404787,
+   "sampleSku": "DWPN-100194",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260143155,
+   "handle": "barbuda-bordeaux-dwpr-425196",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, Bone, Brick Red, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, Contract Woven, Dark Maroon, Dining Room, display_variant, Fabric, Farmhouse, Hospitality, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Red, Rustic, Showroom Line, Solid, Textured, Traditional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107756535859,
+   "sampleSku": "DWPN-100195",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260241459,
+   "handle": "barbuda-sand-dwpr-425197",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Cream, display_variant, Fabric, Farmhouse, Hallway, Hospitality, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107756634163,
+   "sampleSku": "DWPN-100196",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260274227,
+   "handle": "barbuda-pewter-dwpr-425198",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Brown, Dark Taupe, display_variant, Fabric, Farmhouse, Hospitality, Light Brown, Linen, Linen Texture, Living Room, Medium Brown, Mocha, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Taupe, Textured, Traditional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107756666931,
+   "sampleSku": "DWPN-100197",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260306995,
+   "handle": "barbuda-linen-dwpr-425199",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Astor, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Brown, display_variant, Ecru, Fabric, Grasscloth, Hallway, Hospitality, Insects, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107756699699,
+   "sampleSku": "DWPN-100198",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260339763,
+   "handle": "barbuda-driftwood-dwpr-425200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Ash, Astor, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, display_variant, Fabric, Gray, Hospitality, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Sage, Serene, Showroom Line, Solid, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107756732467,
+   "sampleSku": "DWPN-100199",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260372531,
+   "handle": "barbuda-goldenrod-dwpr-425201",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Gold, Dark Mustard, Dining Room, display_variant, Fabric, Farmhouse, Gold, Hospitality, Khaki, Linen, Linen Texture, Living Room, Mustard, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven, Yellow",
+   "sampleVariantId": 44107757289523,
+   "sampleSku": "DWPN-100200",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260405299,
+   "handle": "barbuda-dune-dwpr-425202",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Astor, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, display_variant, Ecru, Fabric, Hallway, Hospitality, Insects, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Scandinavian, Serene, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44107758862387,
+   "sampleSku": "DWPN-100201",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260438067,
+   "handle": "barbuda-wheat-dwpr-425203",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, display_variant, Fabric, Grasscloth, Hallway, Hospitality, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Oatmeal, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Showroom Line, Solid, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107758927923,
+   "sampleSku": "DWPN-100202",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260470835,
+   "handle": "barbuda-sage-dwpr-425204",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Khaki, Dark Olive, display_variant, Fabric, Farmhouse, Gold, Green, Hospitality, Khaki, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Office, Olive, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Textured, Traditional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44107758960691,
+   "sampleSku": "DWPN-100203",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260503603,
+   "handle": "barbuda-chartreuse-dwpr-425205",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Astor, Bedroom, CA TB 117 Compliant, Chartreuse, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, display_variant, Eggshell, Fabric, Gold, Green, Hospitality, Insects, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Showroom Line, Solid, Textured, Traditional, Upholstery, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44107758993459,
+   "sampleSku": "DWPN-100204",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796260536371,
+   "handle": "barbuda-greige-dwpr-425206",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Astor, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Contract Woven, Dark Brown, display_variant, Fabric, Farmhouse, Gray, Gray-brown, Hallway, Hospitality, Light Taupe, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Polyester, Rustic, Showroom Line, Solid, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107759026227,
+   "sampleSku": "DWPN-100205",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1495923916912,
+   "handle": "barney-s-basketweave-natural-wall-paper-grs-38008",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Bone, Coastal, Commercial, Cream, Dining Room, display_variant, Farmhouse, Geometric, Grasscloth, Kyoto Garden Natural Weaves, Lattice, Living Room, Natural Cream, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Office, Phillipe Romano, Phillipe Romano Naturals, Scandinavian, Showroom Line, Silver, Textural, Textured, Traditional, Transitional, Wallcovering, White, Woven",
+   "sampleVariantId": 13908967850096,
+   "sampleSku": "GRS-38008-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796266762291,
+   "handle": "bridgetown-toffee-dwpr-425264",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, Brown, Burlywood, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769610291,
+   "sampleSku": "DWPN-100242",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266795059,
+   "handle": "bridgetown-camel-dwpr-425265",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Baroque, Bedroom, Beige, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769643059,
+   "sampleSku": "DWPN-100243",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266860595,
+   "handle": "bridgetown-slate-dwpr-425266",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Gray, display_variant, Faux Leather, Gray, Grey, Gunmetal, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate Gray, Solid, Sophisticated, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107769708595,
+   "sampleSku": "DWPN-100244",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266893363,
+   "handle": "bridgetown-sapphire-dwpr-425267",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Baroque, Beige, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Conference Room, Contemporary, Contract Grade, Cream, Damask, Dark Blue, display_variant, Fabric-backed Vinyl, Floral, Gold, Grandmillennial, Hospitality, Hotel Lobby, IMO Marine Grade, Industrial, Insects, Leather, Light Gray, Living Room, Luxe, Luxurious, Midnight Blue, Navy, Needs-Price, NFPA 260 Compliant, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Red, Regencycore, Showroom Line, Solid, Steel Blue, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White, Yellow",
+   "sampleVariantId": 44107769741363,
+   "sampleSku": "DWPN-100245",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266926131,
+   "handle": "bridgetown-sage-dwpr-425268",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Khaki, display_variant, Farmhouse, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Khaki, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Office, Olive, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769774131,
+   "sampleSku": "DWPN-100246",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266958899,
+   "handle": "bridgetown-espresso-dwpr-425269",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Baroque, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, Hotel Lobby, IMO Marine Grade, Industrial, Insects, Leather, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769806899,
+   "sampleSku": "DWPN-100247",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796266991667,
+   "handle": "bridgetown-mahogany-dwpr-425270",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Baroque, Bedroom, Bleach Cleanable, Bronze, Brown, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Leather, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769839667,
+   "sampleSku": "DWPN-100248",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267024435,
+   "handle": "bridgetown-walnut-dwpr-425271",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Baroque, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769872435,
+   "sampleSku": "DWPN-100249",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267057203,
+   "handle": "bridgetown-fawn-dwpr-425272",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Baroque, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769905203,
+   "sampleSku": "DWPN-100250",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267089971,
+   "handle": "bridgetown-amber-dwpr-425273",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Baroque, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Timeless, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769937971,
+   "sampleSku": "DWPN-100251",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267122739,
+   "handle": "bridgetown-copper-dwpr-425274",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amber, Architectural, Baroque, Bedroom, Bleach Cleanable, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Orange, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tangerine, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107769970739,
+   "sampleSku": "DWPN-100252",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267188275,
+   "handle": "bridgetown-bordeaux-dwpr-425275",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, Damask, Dark Red, Dining Room, display_variant, Faux Leather, Garnet, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Maroon, Needs-Price, NFPA 260 Compliant, Office, Oxblood, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107770036275,
+   "sampleSku": "DWPN-100253",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267221043,
+   "handle": "bridgetown-honey-dwpr-425276",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, Brass, Brown, Burlywood, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107770069043,
+   "sampleSku": "DWPN-100254",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267253811,
+   "handle": "bridgetown-truffle-dwpr-425277",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Sienna, Solid, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107770101811,
+   "sampleSku": "DWPN-100255",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267286579,
+   "handle": "bridgetown-sable-dwpr-425278",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, Dark Taupe, display_variant, Espresso, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107770134579,
+   "sampleSku": "DWPN-100256",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796267319347,
+   "handle": "bridgetown-mink-dwpr-425279",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Baroque, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Damask, Dark Brown, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Saddle Brown, Showroom Line, Solid, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107770167347,
+   "sampleSku": "DWPN-100257",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269219891,
+   "handle": "basket-reef-dune-dwpr-425286",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Basket Reef, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Dune, Embossed, Fabric, Farmhouse, Faux Leather, Geometric, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Paper, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773575219,
+   "sampleSku": "DWPN-100264",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269154355,
+   "handle": "basket-reef-linen-dwpr-425284",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Basket Reef, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Light Gray, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773509683,
+   "sampleSku": "DWPN-100262",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269187123,
+   "handle": "basket-reef-espresso-dwpr-425285",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketry, Basketweave, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dining Room, display_variant, Geometric, Hospitality, IMO Marine Grade, Lattice, Light Brown, Living Room, Medium Brown, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773542451,
+   "sampleSku": "DWPN-100263",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269252659,
+   "handle": "basket-reef-wheat-dwpr-425287",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Basketry, Basketweave, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, Dark Tan, Dining Room, display_variant, Farmhouse, Geometric, Hallway, Hospitality, IMO Marine Grade, Insects, Lattice, Light Beige, Living Room, Needs-Price, NFPA 260 Compliant, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773607987,
+   "sampleSku": "DWPN-100265",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269285427,
+   "handle": "basket-reef-charcoal-dwpr-425288",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Basketry, Basketweave, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Deep Teal, Dim Gray, Dining Room, display_variant, Geometric, Gray, Hospitality, IMO Marine Grade, Insects, Lattice, Living Room, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Slate Gray, Sophisticated, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773640755,
+   "sampleSku": "DWPN-100266",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269318195,
+   "handle": "basket-reef-onyx-dwpr-425289",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketry, Basketweave, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Ebony, Embossed, Geometric, Gray, Hallway, Hospitality, IMO Marine Grade, Jet Black, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Onyx, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773673523,
+   "sampleSku": "DWPN-100267",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269121587,
+   "handle": "basket-reef-pewter-dwpr-425283",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Basket Reef, Basketweave, Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Geometric, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Pattern, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773476915,
+   "sampleSku": "DWPN-100261",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269088819,
+   "handle": "basket-reef-sand-dwpr-425282",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basket Reef, Basketweave, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Gray, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Paper, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Sophisticated, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773444147,
+   "sampleSku": "DWPN-100260",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269350963,
+   "handle": "basket-reef-driftwood-dwpr-425290",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Basketry, Basketweave, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Gray, Dark Taupe, Dining Room, display_variant, Geometric, Grayish Brown, Hospitality, IMO Marine Grade, Insects, Lattice, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773706291,
+   "sampleSku": "DWPN-100268",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796261945395,
+   "handle": "basseterre-tawny-dwpr-425207",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Apricot, Architectural, Art Deco, Axis, Basseterre, Beige, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Etched Polyurethane, Faux Leather, Geometric, Hospitality, Hotel Lobby, IMO Marine Grade, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Sophisticated, Tan, Tawny, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760500787,
+   "sampleSku": "DWPN-100206",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262076467,
+   "handle": "basseterre-onyx-dwpr-425208",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Axis, Basseterre, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Dot, Etched Polyurethane, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Sophisticated, Upholstery, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44107760631859,
+   "sampleSku": "DWPN-100207",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262174771,
+   "handle": "basseterre-sand-dwpr-425209",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Axis, Basseterre, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Dot, Etched Polyurethane, Geometric, Hallway, Hospitality, IMO Marine Grade, Light Beige, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Silver, Sophisticated, Taupe, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760730163,
+   "sampleSku": "DWPN-100208",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262273075,
+   "handle": "basseterre-slate-dwpr-425210",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Axis, Basseterre, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Dot, Etched Polyurethane, Fabric, Fabric-backed Vinyl, Geometric, Gold, Gray, Grey, Hospitality, IMO Marine Grade, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Slate, Sophisticated, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760828467,
+   "sampleSku": "DWPN-100209",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262305843,
+   "handle": "basseterre-eggplant-dwpr-425211",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Axis, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, display_variant, Eggplant, Eggshell, Etched Polyurethane, Fabric, Faux Leather, Geometric, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pink, Polyester, Polyurethane, Purple, Showroom Line, Sophisticated, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760861235,
+   "sampleSku": "DWPN-100210",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262338611,
+   "handle": "basseterre-linen-dwpr-425212",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Axis, Basseterre, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Etched Polyurethane, Geometric, Hallway, Hospitality, IMO Marine Grade, Light Beige, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Serene, Showroom Line, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760894003,
+   "sampleSku": "DWPN-100211",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262371379,
+   "handle": "basseterre-pewter-dwpr-425213",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Axis, Basseterre, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Etched Polyurethane, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Red, Showroom Line, Sophisticated, Taupe, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760926771,
+   "sampleSku": "DWPN-100212",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262404147,
+   "handle": "basseterre-dune-dwpr-425215",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Axis, Basseterre, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Etched Polyurethane, Faux Leather, Geometric, Hospitality, Hotel Lobby, IMO Marine Grade, Light Beige, Living Room, Luxe, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Sophisticated, Tan, Textured, Upholstery, Vinyl, Wallcovering, Wheat",
+   "sampleVariantId": 44107760959539,
+   "sampleSku": "DWPN-100213",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262436915,
+   "handle": "basseterre-sage-dwpr-425216",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Axis, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Etched Polyurethane, Fabric, Faux Leather, Geometric, Gold, Green, Hospitality, IMO Marine Grade, Linen, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Olive Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Sage, Showroom Line, Sophisticated, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107760992307,
+   "sampleSku": "DWPN-100214",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262469683,
+   "handle": "basseterre-azure-dwpr-425217",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Axis, Basseterre, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Denim Blue, display_variant, Dot, Etched Polyurethane, Fabric, Fabric-backed Vinyl, Geometric, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Serene, Showroom Line, Steelblue, Turquoise, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107761025075,
+   "sampleSku": "DWPN-100215",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269383731,
+   "handle": "bath-house-onyx-dwpr-425291",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bastia, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Solid, Sophisticated, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107773739059,
+   "sampleSku": "DWPN-100269",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269416499,
+   "handle": "bath-house-terracotta-dwpr-425292",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Red, Rust, Rustic, Showroom Line, Solid, Tawny, Terracotta, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773771827,
+   "sampleSku": "DWPN-100270",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269449267,
+   "handle": "bath-house-toffee-dwpr-425293",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Tan, display_variant, Eggshell, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773804595,
+   "sampleSku": "DWPN-100271",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269482035,
+   "handle": "bath-house-camel-dwpr-425294",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Brass, Brown, Burlywood, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773837363,
+   "sampleSku": "DWPN-100272",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269514803,
+   "handle": "bath-house-walnut-dwpr-425295",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Saddle Brown, Showroom Line, Solid, Tan, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44107773870131,
+   "sampleSku": "DWPN-100273",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270039091,
+   "handle": "bath-house-sand-dwpr-425296",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Hallway, Hospitality, IMO Marine Grade, Light Gray, Light Grey, Linen, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Pale Beige, Paper, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Serene, Showroom Line, Silver, Solid, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107774427187,
+   "sampleSku": "DWPN-100274",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270202931,
+   "handle": "bath-house-brick-dwpr-425297",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Brown, Burlywood, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, Peru, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Red, Russet, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Timeless, Traditional, Upholstery, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44107774591027,
+   "sampleSku": "DWPN-100275",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270301235,
+   "handle": "bath-house-espresso-dwpr-425298",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Red, Rustic, Saddle Brown, Showroom Line, Solid, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107774722099,
+   "sampleSku": "DWPN-100276",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270432307,
+   "handle": "bath-house-mahogany-dwpr-425299",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bastia, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contract Grade, Dark Brown, Dark Tan, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Insects, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107774853171,
+   "sampleSku": "DWPN-100277",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270563379,
+   "handle": "bath-house-sahara-dwpr-425300",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Beige, Bleach Cleanable, Brass, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Solid, Tan, Textured, Timeless, Traditional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107774951475,
+   "sampleSku": "DWPN-100278",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270727219,
+   "handle": "bath-house-cocoa-dwpr-425301",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Saddle Brown, Showroom Line, Solid, Tan, Taupe, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107775115315,
+   "sampleSku": "DWPN-100279",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270792755,
+   "handle": "bath-house-charcoal-dwpr-425302",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bastia, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, Fabric, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Light Gray, Living Room, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Solid, Sophisticated, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107775246387,
+   "sampleSku": "DWPN-100280",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270956595,
+   "handle": "bath-house-goldenrod-dwpr-425303",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bastia, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Gold, Golden Yellow, Hospitality, IMO Marine Grade, Insects, Light Tan, Living Room, Marigold, Minimalist, Mustard, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Showroom Line, Solid, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44107775344691,
+   "sampleSku": "DWPN-100281",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796270989363,
+   "handle": "bath-house-fawn-dwpr-425304",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bastia, Bedroom, Bleach Cleanable, Brass, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107775377459,
+   "sampleSku": "DWPN-100282",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796271022131,
+   "handle": "bath-house-desert-dwpr-425305",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bastia, Bath House, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Faux Leather, Hospitality, IMO Marine Grade, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Polyurethane, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Polyurethane, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107775410227,
+   "sampleSku": "DWPN-100283",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276035635,
+   "handle": "belmont-bay-pewter-dwpr-425308",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Ash, Bedroom, Beige, Bellevue, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Geometric, Gray, Hallway, Hospitality, IMO Marine Grade, Living Room, Minimalist, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Taupe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107793924147,
+   "sampleSku": "DWPN-100286",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276232243,
+   "handle": "belmont-bay-linen-dwpr-425311",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Beige, Bellevue, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, Dark Gray, display_variant, Fabric, Geometric, Grey, Hallway, Hospitality, IMO Marine Grade, Light Gray, Light Grey, Living Room, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Off-white, Pearl, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Taupe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107794087987,
+   "sampleSku": "DWPN-100289",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276265011,
+   "handle": "belmont-bay-sage-dwpr-425312",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Bedroom, Bellevue, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Geometric, Green, Hospitality, IMO Marine Grade, Light Beige, Light Blue, Light Gray, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Pale Grey, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Seafoam, Seafoam Green, Serene, Showroom Line, Silver, Taupe, Tekloom, Tekloom Performance, Textured, Tile, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107794513971,
+   "sampleSku": "DWPN-100290",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276330547,
+   "handle": "belmont-bay-sky-dwpr-425313",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Bellevue, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Slate Gray, display_variant, Fabric, Geometric, Hospitality, IMO Marine Grade, Light Blue, Light Gray, Living Room, Minimalist, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Steel Blue, Teal, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107795169331,
+   "sampleSku": "DWPN-100291",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796275871795,
+   "handle": "belmont-bay-sand-dwpr-425307",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bathroom, Beige, Belmont Bay, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gold, Hallway, Hospitality, IMO Marine Grade, Ivory, Leather, Light Gray, Light Grey, Luxury, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Pale Goldenrod, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Room, Sand, Showroom Line, Tan, Texture, Textured, Tile, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 44107793760307,
+   "sampleSku": "DWPN-100285",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276101171,
+   "handle": "belmont-bay-silver-dwpr-425309",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Bathroom, Belmont Bay, Blue, CA TB 117 Compliant, Charcoal Gray, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Luxury, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Teal, Textured, Tile, Transitional, Turquoise, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44107793989683,
+   "sampleSku": "DWPN-100287",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276363315,
+   "handle": "belmont-bay-dune-dwpr-425314",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Architectural, Basketweave, Bedroom, Beige, Bellevue, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Chocolate, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fabric-backed Vinyl, Geometric, Gold, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Taupe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44107797266483,
+   "sampleSku": "DWPN-100292",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796275707955,
+   "handle": "belmont-bay-slate-dwpr-425306",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Belmont Bay, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Hallway, Hospitality, IMO Marine Grade, Lavender, Leather, Light Gray, Living Room, Luxury, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Purple, Showroom Line, Slate Gray, Sophisticated, Texture, Textured, Tile, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107793596467,
+   "sampleSku": "DWPN-100284",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796276166707,
+   "handle": "belmont-bay-smoke-dwpr-425310",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Bathroom, Bedroom, Belmont Bay, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Mosaic, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Smoke, Texture, Textured, Tile, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107794055219,
+   "sampleSku": "DWPN-100288",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262502451,
+   "handle": "bequia-sand-dwpr-425218",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Basketweave, Bedroom, Beige, Bequia, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Light Brown, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Stripe, Tan, Tekloom, Tekloom Performance, Textured, Upholstery, Wallcovering, Yellow",
+   "sampleVariantId": 44107761057843,
+   "sampleSku": "DWPN-100216",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262535219,
+   "handle": "bequia-ivory-dwpr-425219",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Bedroom, Bequia, Bleach Cleanable, Blue, Blue-gray, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fabric-backed Vinyl, Hallway, Hospitality, IMO Marine Grade, Light Gray, Living Room, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Wallcovering, White",
+   "sampleVariantId": 44107761090611,
+   "sampleSku": "DWPN-100217",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262567987,
+   "handle": "bequia-slate-dwpr-425220",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Bedroom, Bequia, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Grasscloth, Gray, Grey, Hospitality, IMO Marine Grade, Light Gray, Light Grey, Living Room, Medium Gray, Medium Grey, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44107761123379,
+   "sampleSku": "DWPN-100218",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262600755,
+   "handle": "bequia-linen-dwpr-425221",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Basketweave, Bedroom, Bequia, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Eggshell, Geometric, Grasscloth, Green, Hallway, Hospitality, IMO Marine Grade, Light Beige, Light Gray, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Seafoam Green, Serene, Showroom Line, Silver, Steel Blue, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107761156147,
+   "sampleSku": "DWPN-100219",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262633523,
+   "handle": "bequia-dune-dwpr-425222",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Bedroom, Beige, Bequia, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Eggshell, Fabric, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Light Beige, Light Brown, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Stripe, Tan, Tekloom, Tekloom Performance, Textured, Traditional, Transitional, Upholstery, Wallcovering, Yellow",
+   "sampleVariantId": 44107761188915,
+   "sampleSku": "DWPN-100220",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262666291,
+   "handle": "bequia-pearl-dwpr-425223",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Bedroom, Bequia, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Denim, Denim Blue, display_variant, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Light Gray, Living Room, Medium Gray, Navy, Navy Blue, Needs-Price, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Gray, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Wallcovering, White",
+   "sampleVariantId": 44107761221683,
+   "sampleSku": "DWPN-100221",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262699059,
+   "handle": "bequia-silver-dwpr-425224",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Azores, Bedroom, Bequia, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Grasscloth, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Light Gray, Light Grey, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Wallcovering, White",
+   "sampleVariantId": 44107761254451,
+   "sampleSku": "DWPN-100222",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262764595,
+   "handle": "bequia-mist-dwpr-425225",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Bedroom, Bequia, Bleach Cleanable, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Gray, Grey, Hospitality, IMO Marine Grade, Light Gray, Light Grey, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Stripe, Tekloom, Tekloom Performance, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107761319987,
+   "sampleSku": "DWPN-100223",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262797363,
+   "handle": "bequia-wheat-dwpr-425226",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Basketweave, Bedroom, Beige, Bequia, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, Dark Tan, display_variant, Geometric, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Organic, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Showroom Line, Stripe, Tan, Tekloom, Tekloom Performance, Textured, Traditional, Transitional, Upholstery, Wallcovering",
+   "sampleVariantId": 44107761352755,
+   "sampleSku": "DWPN-100224",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262830131,
+   "handle": "bequia-biscuit-dwpr-425227",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Azores, Basketweave, Bedroom, Beige, Bequia, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric, Geometric, Grasscloth, Gray, Hallway, Hospitality, IMO Marine Grade, Light Gray, Linen, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Taupe, Tekloom, Tekloom Performance, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107761385523,
+   "sampleSku": "DWPN-100225",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796278132787,
+   "handle": "bermuda-toffee-dwpr-425315",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Berretta, Bleach Cleanable, Brick, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Eggshell, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Textured, Tile, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107800117299,
+   "sampleSku": "DWPN-100293",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796278329395,
+   "handle": "bermuda-onyx-dwpr-425316",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Berretta, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Ebony, Geometric, Hospitality, IMO Marine Grade, Lattice, Leather, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107800313907,
+   "sampleSku": "DWPN-100294",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796278657075,
+   "handle": "bermuda-bordeaux-dwpr-425317",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Berretta, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Crimson, Dark Red, Dining Room, display_variant, Embossed, Faux Leather, Garnet, Geometric, Hospitality, IMO Marine Grade, Leather, Living Room, Maroon, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pink, Polyester, Red, Showroom Line, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107800674355,
+   "sampleSku": "DWPN-100295",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796278919219,
+   "handle": "bermuda-camel-dwpr-425318",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Berretta, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Taupe, Textured, Tile, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107800969267,
+   "sampleSku": "DWPN-100296",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279214131,
+   "handle": "bermuda-sand-dwpr-425319",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Berretta, Bleach Cleanable, Butter, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Geometric, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Lattice, Leather, Light Beige, Living Room, Needs-Price, NFPA 260 Compliant, Organic Modern, Pale Goldenrod, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107801231411,
+   "sampleSku": "DWPN-100297",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279607347,
+   "handle": "bermuda-linen-dwpr-425320",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Berretta, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Geometric, Hallway, Hospitality, IMO Marine Grade, Lattice, Leather, Light Beige, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-White, Pearl, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44107801591859,
+   "sampleSku": "DWPN-100298",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279705651,
+   "handle": "bermuda-espresso-dwpr-425321",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Basketweave, Berretta, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dining Room, display_variant, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Industrial, Insects, Lattice, Leather, Light Brown, Living Room, Luxe, Medium Brown, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107801690163,
+   "sampleSku": "DWPN-100299",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279771187,
+   "handle": "bermuda-fawn-dwpr-425322",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Berretta, Bleach Cleanable, Brown, Burlywood, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dining Room, display_variant, Faux Leather, Geometric, Golden Brown, Hospitality, IMO Marine Grade, Lattice, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Oatmeal, Office, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107801755699,
+   "sampleSku": "DWPN-100300",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279803955,
+   "handle": "bermuda-amber-dwpr-425323",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Berretta, Bleach Cleanable, Brown, Burlywood, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dining Room, display_variant, Farmhouse, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Lattice, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Sienna, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44107801854003,
+   "sampleSku": "DWPN-100301",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279869491,
+   "handle": "bermuda-goldenrod-dwpr-425324",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Berretta, Bleach Cleanable, Burlywood, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Goldenrod, Dining Room, display_variant, Farmhouse, Geometric, Gold, Golden Brown, Golden Yellow, Hallway, Honey, Hospitality, IMO Marine Grade, Lattice, Leather, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven, Yellow",
+   "sampleVariantId": 44107801919539,
+   "sampleSku": "DWPN-100302",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279935027,
+   "handle": "bermuda-mahogany-dwpr-425325",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Berretta, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Espresso, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Industrial, Leather, Living Room, Medium Brown, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Tan, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107803033651,
+   "sampleSku": "DWPN-100303",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796279967795,
+   "handle": "bermuda-dune-dwpr-425326",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Berretta, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Geometric, Hallway, Hospitality, IMO Marine Grade, Lattice, Leather, Light Beige, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Pale Goldenrod, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Tan, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44107803394099,
+   "sampleSku": "DWPN-100304",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262928435,
+   "handle": "bimini-dune-dwpr-425230",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Bimini, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Dune, Ecru, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Scandinavian, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44107761483827,
+   "sampleSku": "DWPN-100228",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262895667,
+   "handle": "bimini-linen-dwpr-425229",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Bimini, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Light Brown, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107761451059,
+   "sampleSku": "DWPN-100227",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262862899,
+   "handle": "bimini-sand-dwpr-425228",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Bimini, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Medium Brown, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107761418291,
+   "sampleSku": "DWPN-100226",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796262961203,
+   "handle": "bimini-wheat-dwpr-425231",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Bimini, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Oatmeal, Organic, Pale Tan, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Wheat, Yellow",
+   "sampleVariantId": 44107761516595,
+   "sampleSku": "DWPN-100229",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7700232994867,
+   "handle": "bird-sonnet-blush-wallpaper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Accent Wall, Animal, Architectural, Bedroom, Bird, bird-sonnet, birds, blush, botanical, chinoiserie, Class A Fire Rated, Commercial, Contemporary, Cream, Dining Room, display_variant, Dusty Rose, Eclectic, feature-wall, floral, half-drop, Hospitality, Living Room, Luxury, Mushroom, Nature, Needs-Image, Needs-Price, Needs-Width, Olive Green, orchid, Organic, Pale Pink, paste-the-wall, pavilion-collection, Pink, Red, Residential, Salmon, Showroom Line, songbirds, strippable, Teal, Traditional, Tropical, Vinyl, wallcovering, washable, White",
+   "sampleVariantId": 43720745910323,
+   "sampleSku": "DWWC-506370-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700233027635,
+   "handle": "bird-sonnet-jet-wallpaper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bird, bird-sonnet, birds, black, botanical, Burgundy, chinoiserie, Class A Fire Rated, Commercial, Contemporary, Cream, Dining Room, display_variant, Dramatic, Eclectic, Emerald Green, feature-wall, floral, Gold, jet, Leaf, Light Pink, Living Room, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Olive Green, orchid, paste-the-wall, Pavilion, pavilion-collection, Pink, Red, Rose Quartz, Sage Green, Showroom Line, Sky Blue, songbirds, strippable, Tan, Traditional, Tropical, Vinyl, wallcovering, washable, White",
+   "sampleVariantId": 43720745943091,
+   "sampleSku": "DWWC-506380-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700233650227,
+   "handle": "bird-sonnet-royal-blue-wallpaper-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bird, bird-sonnet, birds, blue, botanical, Burgundy, chinoiserie, Class A Fire Rated, Commercial, Contemporary, Dining Room, display_variant, Dusty Rose, Eclectic, feature-wall, floral, Golden Tan, Living Room, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, paste-the-wall, Pattern, Pavilion, Peacock, Red, royal-blue, Sage Green, Showroom Line, Sophisticated, strippable, Taupe, Teal Blue, Traditional, Vinyl, wallcovering, washable, White",
+   "sampleVariantId": 43720745975859,
+   "sampleSku": "DWWC-506390-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796269023283,
+   "handle": "bolongo-terracotta-dwpr-425280",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bolongo, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Sienna, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Industrial, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Terracotta, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107773378611,
+   "sampleSku": "DWPN-100258",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796269056051,
+   "handle": "bolongo-walnut-dwpr-425281",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bolongo, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Lodge, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44107773411379,
+   "sampleSku": "DWPN-100259",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499694399600,
+   "handle": "branford-stain-repellent-real-dupione-silk-xww-53014",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Geometric, LEED, Maroon, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Silk, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955654975600,
+   "sampleSku": "XWW-53014-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499695415408,
+   "handle": "branford-stain-repellent-real-dupione-silk-xww-53016",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Contemporary, display_variant, Eggshell, Geometric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955664543856,
+   "sampleSku": "XWW-53016-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499695808624,
+   "handle": "branford-stain-repellent-real-dupione-silk-xww-53017",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, Geometric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955666116720,
+   "sampleSku": "XWW-53017-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499696201840,
+   "handle": "branford-stain-repellent-real-dupione-silk-xww-53018",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aluminum, Architectural, Black, Camel, Charcoal, Cloud, Commercial, Contemporary, display_variant, Geometric, Gray, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Snow, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955669098608,
+   "sampleSku": "XWW-53018-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796266696755,
+   "handle": "bridgetown-onyx-dwpr-425263",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Black, Bridgetown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Moody, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107769544755,
+   "sampleSku": "DWPN-100241",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1501382606960,
+   "handle": "brunzo-glam-abaca-bark-prt-16108",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Commercial, Contemporary, display_variant, Glam, Graphite, Grasscloth, Metallic, Multi, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Silver, Single Dominant Background Color Word, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13975698899056,
+   "sampleSku": "PRT-16108-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501392502896,
+   "handle": "brunzo-painted-abaca-bark-prt-16137",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Beige, Black, Coastal, Commercial, Denim, display_variant, Eggshell, Farmhouse, Grasscloth, Multi, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Steel, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 13975872962672,
+   "sampleSku": "PRT-16137-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501392928880,
+   "handle": "brunzo-painted-abaca-bark-prt-16170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bark, Blue, Brunzo Painted Abaca Bark, Coastal, Commercial, display_variant, Eggshell, Grasscloth, Gray, Light Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13975883186288,
+   "sampleSku": "PRT-16170-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501393223792,
+   "handle": "brunzo-painted-abaca-bark-prt-16171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bark, Bone, Brunzo Painted Abaca Bark, Coastal, Commercial, display_variant, Light Blue, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13975887577200,
+   "sampleSku": "PRT-16171-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796263911475,
+   "handle": "buccoo-azure-dwpr-425257",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Azure, Basketweave, Blue, Buccoo, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Industrial, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate Blue, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107763974195,
+   "sampleSku": "DWPN-100235",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796264075315,
+   "handle": "buccoo-sand-dwpr-425258",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Buccoo, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Herringbone, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107764105267,
+   "sampleSku": "DWPN-100236",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796263649331,
+   "handle": "buccoo-silver-dwpr-425255",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Buccoo, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Medium Grey, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107763679283,
+   "sampleSku": "DWPN-100233",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796263780403,
+   "handle": "buccoo-slate-dwpr-425256",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Bedroom, Beige, Brown, Buccoo, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Gray, Hallway, Hospitality, IMO Marine Grade, Industrial, Leather, Light Gray, Living Room, Luxury, Mushroom, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Sophisticated, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107763810355,
+   "sampleSku": "DWPN-100234",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796263518259,
+   "handle": "buccoo-terracotta-dwpr-425254",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Basketweave, Brown, Buccoo, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Olive Drab, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Pumpkin, Russet, Rustic, Showroom Line, Stripe, Tan, Terracotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107763580979,
+   "sampleSku": "DWPN-100232",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497561497712,
+   "handle": "caluvoto-gilded-cork-cork-72000",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Commercial, Contemporary, Cork, Cream, display_variant, Gray, Linen, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 44170993238067,
+   "sampleSku": "CORK-72000-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497561628784,
+   "handle": "caluvoto-gilded-cork-cork-72001",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Commercial, Cork, display_variant, Greige, Hollywood Regency, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 44170993270835,
+   "sampleSku": "CORK-72001-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497561792624,
+   "handle": "caluvoto-gilded-cork-cork-72002",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Cinnamon, Commercial, Contemporary, Cork, display_variant, Gray, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Slate, Textured, Wallcovering",
+   "sampleVariantId": 44170993303603,
+   "sampleSku": "CORK-72002-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497561923696,
+   "handle": "caluvoto-gilded-cork-cork-72003",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, Cork, Cyan, display_variant, Gold, Gray, Industrial, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 44170993336371,
+   "sampleSku": "CORK-72003-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562087536,
+   "handle": "caluvoto-gilded-cork-cork-72004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bronze, Brown, Commercial, Cork, display_variant, Gray, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 44170993401907,
+   "sampleSku": "CORK-72004-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562153072,
+   "handle": "caluvoto-gilded-cork-cork-72005",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Brown, Commercial, Contemporary, Cork, Dark Brown, display_variant, Espresso, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 44170993434675,
+   "sampleSku": "CORK-72005-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562316912,
+   "handle": "caluvoto-gilded-cork-cork-72006",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Brick, Brown, Chocolate, Cocoa, Coffee, Commercial, Contemporary, Cork, display_variant, Gold, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Walnut, Yellow",
+   "sampleVariantId": 44170993467443,
+   "sampleSku": "CORK-72006-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562447984,
+   "handle": "caluvoto-gilded-cork-cork-72007",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Brown, Chocolate, Commercial, Contemporary, Cork, display_variant, Gray, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 44170993500211,
+   "sampleSku": "CORK-72007-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562710128,
+   "handle": "caluvoto-gilded-cork-cork-72009",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, Cork, display_variant, Gray, Industrial, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 44170993598515,
+   "sampleSku": "CORK-72009-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562775664,
+   "handle": "caluvoto-gilded-cork-cork-72010",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Brown, Commercial, Contemporary, Cork, display_variant, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Walnut",
+   "sampleVariantId": 44170993631283,
+   "sampleSku": "CORK-72010-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497562841200,
+   "handle": "caluvoto-gilded-cork-cork-72011",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Commercial, Cork, display_variant, Gray, Industrial, Metallic, Natural, Natural Wallcovering, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Slate, Textured, Wallcovering",
+   "sampleVariantId": 44170993664051,
+   "sampleSku": "CORK-72011-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563005040,
+   "handle": "caluvoto-gilded-cork-cork-72012",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Commercial, Contemporary, Cork, display_variant, Gray, Metallic, Mushroom, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 44170993729587,
+   "sampleSku": "CORK-72012-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563234416,
+   "handle": "caluvoto-gilded-cork-cork-72013",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bronze, Brown, Commercial, Cork, Dark Brown, display_variant, Gold, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 44170993795123,
+   "sampleSku": "CORK-72013-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563463792,
+   "handle": "caluvoto-gilded-cork-cork-72014",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Commercial, Contemporary, Cork, display_variant, Gray, Industrial, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Slate, Textured, Wallcovering",
+   "sampleVariantId": 44170993827891,
+   "sampleSku": "CORK-72014-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563562096,
+   "handle": "caluvoto-gilded-cork-cork-72015",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Commercial, Cork, display_variant, Gold, Metallic, Mocha, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 44170993860659,
+   "sampleSku": "CORK-72015-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563693168,
+   "handle": "caluvoto-gilded-cork-cork-72016",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Cork, display_variant, Gold, Hollywood Regency, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Walnut, Yellow",
+   "sampleVariantId": 44170993926195,
+   "sampleSku": "CORK-72016-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497563824240,
+   "handle": "caluvoto-gilded-cork-cork-72017",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Brown, Chocolate, Commercial, Contemporary, Cork, display_variant, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Gilded Cork, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 44170993958963,
+   "sampleSku": "CORK-72017-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499675459696,
+   "handle": "cape-horn-stain-repellent-real-textile-walls-xwq-52966",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955481272432,
+   "sampleSku": "XWQ-52966-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499676278896,
+   "handle": "cape-horn-stain-repellent-real-textile-walls-xwq-52968",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13955489398896,
+   "sampleSku": "XWQ-52968-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499676901488,
+   "handle": "cape-horn-stain-repellent-real-textile-walls-xwq-52970",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, LEED, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955492839536,
+   "sampleSku": "XWQ-52970-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496307761264,
+   "handle": "caya-copper-leaf-fxx-3208",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Bedroom, Botanical, Bronze, Brown, Burnt Orange, Class A Fire Rated, Coffee, Commercial, Copper, display_variant, Industrial, Living Room, Metallic, Mica, Natural, Needs-Image, Needs-Price, Needs-Width, Office, Organic Modern, Phillipe Romano, Restaurant, Rustic, Showroom Line, Solid/Textural, Specialy Wallcoverings, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44170991206451,
+   "sampleSku": "FXX - 3208-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499902181488,
+   "handle": "cedar-lane-stain-repellent-real-silk-walls-xwt-53351",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Contemporary, display_variant, LEED, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Tan, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957251465328,
+   "sampleSku": "XWT-53351-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499902410864,
+   "handle": "cedar-lane-stain-repellent-real-silk-walls-xwt-53352",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display_variant, Eggshell, LEED, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Texture, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957253922928,
+   "sampleSku": "XWT-53352-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499902935152,
+   "handle": "cedar-lane-stain-repellent-real-silk-walls-xwt-53354",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Cedar Lane Stain Repellent Real Silk, Commercial, display_variant, Eggshell, Grasscloth, LEED, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Taupe, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13957260312688,
+   "sampleSku": "XWT-53354-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499667267696,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52946",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13955414884464,
+   "sampleSku": "XWQ-52946-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499668447344,
+   "handle": "chenago-stain-repellent-real-linen-silk-xwq-52949",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silk, Silk Wallcovering, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13955425435760,
+   "sampleSku": "XWQ-52949-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498935918704,
+   "handle": "cinderford-specialty-wallcovering-xkb-47403",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Beige, Calcium carbonate, Class A Fire Rated, Commercial, Contemporary, display_variant, Linen, mica, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, pulp, Showroom Line, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13943679221872,
+   "sampleSku": "XKB-47403-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233349171,
+   "handle": "cork-charcoal-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Class A Fire Rated, Coastal, Commercial, Contemporary, Cork, display_variant, Gold, Gray, Green, Grey, Living Room, Minimalist, Modern, Natural Seagrass on Paper Backing, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Office, Olive, Olive Green, Organic, Organic Modern, Paper, Paperweave, Phillipe Romano, Rustic, Seagrass, Showroom Line, Sky Blue, Slate Gray, Taupe, Textured, TWIL Seagrass, Wallcovering",
+   "sampleVariantId": 44171421057075,
+   "sampleSku": "DWPW-430121-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502312071280,
+   "handle": "concerto-prt-74017",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13986578727024,
+   "sampleSku": "PRT-74017-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502312300656,
+   "handle": "concerto-prt-74018",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13986579316848,
+   "sampleSku": "PRT-74018-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502312497264,
+   "handle": "concerto-prt-74019",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13986585018480,
+   "sampleSku": "PRT-74019-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502312661104,
+   "handle": "concerto-prt-74020",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13986585837680,
+   "sampleSku": "PRT-74020-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502312956016,
+   "handle": "concerto-prt-74021",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Pink, Showroom Line, Silver, Slate, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13986590654576,
+   "sampleSku": "PRT-74021-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502313087088,
+   "handle": "concerto-prt-74022",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Commercial, Contemporary, Cream, display_variant, Gray, Green, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986592981104,
+   "sampleSku": "PRT-74022-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502313382000,
+   "handle": "cretano-prt-74023",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Teal, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 13986596946032,
+   "sampleSku": "PRT-74023-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502313611376,
+   "handle": "cretano-prt-74024",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Chocolate, Class A Fire Rated, Commercial, Cretano, display_variant, Grasscloth, Gray, Light Gray, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Textured, Traditional, Transitional, Type 2, Type 2 Durable Vinyl, Wallcovering, White",
+   "sampleVariantId": 13986599174256,
+   "sampleSku": "PRT-74024-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502313807984,
+   "handle": "cretano-prt-74025",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Blue, Brown, Class A Fire Rated, Commercial, Cretano, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986602844272,
+   "sampleSku": "PRT-74025-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502314037360,
+   "handle": "cretano-prt-74026",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Cretano, display_variant, Fabric, Indigo, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986604056688,
+   "sampleSku": "PRT-74026-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502314266736,
+   "handle": "cretano-prt-74027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Cretano, Dark Gray, display_variant, Grasscloth, Gray, Ivory, Light Gray, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Textured, Traditional, Transitional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986610675824,
+   "sampleSku": "PRT-74027-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502314823792,
+   "handle": "cretano-prt-74030",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Brass, Charcoal, Class A Fire Rated, Commercial, Contemporary, Cretano, Dark Gray, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986617950320,
+   "sampleSku": "PRT-74030-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502314987632,
+   "handle": "cretano-prt-74031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Cretano, display_variant, Fabric, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Sapphire, Showroom Line, Stripe, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986621161584,
+   "sampleSku": "PRT-74031-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791123988531,
+   "handle": "croix-moss-dwpr-425696",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Alligator, Animal, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Croco, Crocodile, Dark Olive, display_variant, Eggshell, Faux Leather, FR Additives Free, Glamorous, Gold, Green, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, Khaki, Leather, LEED Compatible, Living Room, Luxe, Luxurious, Natural Fiber, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Olive, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sage, Showroom Line, Spring, Sustainable, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wide Width, Yellow",
+   "sampleVariantId": 44086036496435,
+   "sampleSku": "DWPN-100631",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124119603,
+   "handle": "croix-fern-dwpr-425697",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Brown, CA TB 117 Compliant, Chocolate, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Croco, Crocodile, display_variant, Earth Tones, Faux Leather, FR Additives Free, Green, Green Building, Hospitality, Hotel Lobby, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Khaki, Leather, LEED Compatible, Living Room, Luxe, Luxurious, Natural Fiber, Needs-Price, NFPA 260 Compliant, Office, Olive, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Reptile, Showroom Line, Sophisticated, Sustainable, Taupe, Textured, Traditional, Truffle, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wide Width",
+   "sampleVariantId": 44086036725811,
+   "sampleSku": "DWPN-100632",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124250675,
+   "handle": "croix-ivory-dwpr-425698",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, Croco, Crocodile, display_variant, Faux Leather, FR Additives Free, Glamorous, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Ivory, Leather, LEED Compatible, Light Gray, Living Room, Luxe, Luxurious, Natural Fiber, Needs-Price, Neutral Tones, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Primary Suite, Private Label, Reptile, Showroom Line, Sustainable, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, White, Wide Width",
+   "sampleVariantId": 44086036955187,
+   "sampleSku": "DWPN-100633",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124545587,
+   "handle": "crossroads-reef-espresso-dwpr-425700",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Earth Tones, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Medium Brown, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Silicone Surface, Solid, Sustainable, Taupe, Textured, Traditional, Upholstery, Vinyl, Virtual, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44086037479475,
+   "sampleSku": "DWPN-100635",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124676659,
+   "handle": "crossroads-reef-linen-dwpr-425701",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Ecru, Fabric, FR Additives Free, Gold, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Living Room, Minimalist, Natural Greens, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Serene, Showroom Line, Silicone Surface, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Upholstery, Virtual, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086037708851,
+   "sampleSku": "DWPN-100636",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124807731,
+   "handle": "crossroads-reef-pewter-dwpr-425702",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Earth Tones, Fabric, FR Additives Free, Geometric, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Brown, Light Taupe, Living Room, Mushroom, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Serene, Showroom Line, Silicone Surface, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086037938227,
+   "sampleSku": "DWPN-100637",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791124971571,
+   "handle": "crossroads-reef-slate-dwpr-425703",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Graffiti-Free, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, Pewter, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Serene, Showroom Line, Silicone Surface, Silver, Sustainable, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086038233139,
+   "sampleSku": "DWPN-100638",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791125102643,
+   "handle": "crossroads-reef-driftwood-dwpr-425704",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, FR Additives Free, Geometric, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Minimalist, Mushroom, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Silicone Surface, Sisal, Sustainable, Tan, Taupe, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44086038462515,
+   "sampleSku": "DWPN-100639",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791125266483,
+   "handle": "crossroads-reef-toffee-dwpr-425705",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, Burlywood, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Earth Tones, Fabric, FR Additives Free, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, Peru, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Sienna, Silicone Surface, Solid, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Virtual, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44086038724659,
+   "sampleSku": "DWPN-100640",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791125397555,
+   "handle": "crossroads-reef-greige-dwpr-425706",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Chevron, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Crosshatch, Dark Brown, display_variant, DMF-Free, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Showroom Line, Silicone Surface, Silver, Sophisticated, Storm, Sustainable, Taupe, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width",
+   "sampleVariantId": 44086039019571,
+   "sampleSku": "DWPN-100641",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791125594163,
+   "handle": "crossroads-reef-smoke-dwpr-425707",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Crosshatch, Dark Gray, Dark Grey, display_variant, DMF-Free, FR Additives Free, Geometric, Graffiti-Free, Gray, Green Building, Grey, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Light Gray, Light Grey, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Showroom Line, Silicone Surface, Silver, Sophisticated, Surf, Sustainable, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width",
+   "sampleVariantId": 44086039314483,
+   "sampleSku": "DWPN-100642",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128150067,
+   "handle": "crushed-velvet-texture-bronze-umber",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Crushed, Crushed Texture, Dark Brown, display_variant, Distressed, Fabric, Flocked Velvet, FR Additives Free, Glamorous, Green Building, Hospitality, Hotel Lobby, Insects, Irregular Pattern, LEED Compatible, Living Room, Luxe, Luxurious, Moody, Natural Look, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Polyester Blend, Residential, Showroom Line, Sustainable, Taupe, Texture, Textured, Traditional, Upholstery, Velvet, Velvet Effect, Wallcovering, Wide Width",
+   "sampleVariantId": 44086043836467,
+   "sampleSku": "DWPN-100658",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128543283,
+   "handle": "crushed-coral-amber-dwpr-425736",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Amber, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Goldenrod, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gold, Hollywood Regency, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Mustard, Needs-Price, NFPA 260 Compliant, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086044524595,
+   "sampleSku": "DWPN-100661",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791129231411,
+   "handle": "crushed-coral-ash-dwpr-425741",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gold, Gray, Green, Hospitality, Hotel Lobby, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086045737011,
+   "sampleSku": "DWPN-100666",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126085683,
+   "handle": "crushed-coral-azure-dwpr-425717",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Cerulean, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Slate Gray, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Steel Blue, Living Room, Luxe, Luxurious, Luxury, Midnight Blue, Moody, Navy, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086040199219,
+   "sampleSku": "DWPN-100643",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791129526323,
+   "handle": "crushed-coral-barley-dwpr-425743",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Barley, Bathroom, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Ivory, Leather, Light Gray, Living Room, Luxury, Marble, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Pale Goldenrod, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White, Yellow",
+   "sampleVariantId": 44086046261299,
+   "sampleSku": "DWPN-100668",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128838195,
+   "handle": "crushed-coral-biscuit-dwpr-425738",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Biscuit, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, display_variant, Eclectic, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Gray, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Pale Brown, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086045048883,
+   "sampleSku": "DWPN-100663",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127199795,
+   "handle": "crushed-coral-bordeaux-dwpr-425726",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crimson, Crushed Coral, Dark Red, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Garnet, Glamorous, Hollywood Regency, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Maroon, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086042165299,
+   "sampleSku": "DWPN-100651",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128969267,
+   "handle": "crushed-coral-dove-dwpr-425739",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, display_variant, Dove, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gray, Grey, Gunmetal, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Gray, Living Room, Luxe, Luxurious, Luxury, Moody, Navy, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Slate Gray, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086045278259,
+   "sampleSku": "DWPN-100664",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791207546931,
+   "handle": "crushed-coral-dune-dwpr-425733",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Brown, Dining Room, display_variant, Dune, Ecru, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Moody, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086204039219,
+   "sampleSku": "DWPR-425733",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791129395251,
+   "handle": "crushed-coral-fog-dwpr-425742",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Fog, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Modern, Moody, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086045999155,
+   "sampleSku": "DWPN-100667",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127887923,
+   "handle": "crushed-coral-forest-dwpr-425731",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Green, Dark Slate Gray, Dim Gray, Dining Room, display_variant, Embossed, Emerald, Fabric, Faux Leather, Flocked Velvet, Forest, Glamorous, Green, Hospitality, IMO Marine Grade, Leather, Light Slate Gray, Living Room, Luxe, Luxurious, Luxury, Moody, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sea Green, Seafoam Green, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086043377715,
+   "sampleSku": "DWPN-100656",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127461939,
+   "handle": "crushed-coral-gold-dwpr-425728",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gold, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gold, Honey, Hospitality, IMO Marine Grade, Leather, Light Gold, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086042624051,
+   "sampleSku": "DWPN-100653",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128281139,
+   "handle": "crushed-coral-ivory-dwpr-425734",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Green, Hallway, Hospitality, IMO Marine Grade, Insects, Ivory, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Off-white, Olive Drab, Olive Green, Organic, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sage Green, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086044065843,
+   "sampleSku": "DWPN-100659",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126904883,
+   "handle": "crushed-coral-lavender-dwpr-425723",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amethyst, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Lavender, Dark Plum, Dark Purple, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hollywood Regency, Hospitality, IMO Marine Grade, Lavender, Leather, Light Gray, Living Room, Luxe, Luxurious, Luxury, Medium Lavender, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Primary Suite, Purple, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086041641011,
+   "sampleSku": "DWPN-100649",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126642739,
+   "handle": "crushed-coral-linen-dwpr-425721",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Insects, Light Beige, Linen, Living Room, Luxe, Luxurious, Luxury, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086041182259,
+   "sampleSku": "DWPN-100647",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126347827,
+   "handle": "crushed-coral-maroon-dwpr-425719",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crimson, Crushed Coral, Dark Red, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hollywood Regency, Hospitality, Hotel Lobby, IMO Marine Grade, Indian Red, Leather, Living Room, Luxe, Luxurious, Luxury, Maroon, Moody, Needs-Price, NFPA 260 Compliant, Ostrich, Oxblood, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086040690739,
+   "sampleSku": "DWPN-100645",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127330867,
+   "handle": "crushed-coral-mauve-dwpr-425727",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Brown, Dark Plum, display_variant, Dusty Rose, Eggplant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hollywood Regency, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Moody, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Purple, Red, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086042394675,
+   "sampleSku": "DWPN-100652",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791129100339,
+   "handle": "crushed-coral-oat-dwpr-425740",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hollywood Regency, Hospitality, IMO Marine Grade, Ivory, Leather, Light Beige, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Oat, Ostrich, Pale Goldenrod, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Primary Suite, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White, Yellow",
+   "sampleVariantId": 44086045507635,
+   "sampleSku": "DWPN-100665",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128707123,
+   "handle": "crushed-coral-onyx-dwpr-425737",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark, Dark Academia, Dark Gray, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxe, Luxurious, Luxury, Moody, Needs-Price, NFPA 260 Compliant, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate Gray, Slate Grey, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086044819507,
+   "sampleSku": "DWPN-100662",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127593011,
+   "handle": "crushed-coral-sage-dwpr-425729",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark, Dark Academia, Dark Olive Green, display_variant, Embossed, Espresso, Fabric, Faux Leather, Flocked Velvet, Green, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Olive Green, Living Room, Luxe, Luxurious, Luxury, Moody, Moss Green, Needs-Price, NFPA 260 Compliant, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086042853427,
+   "sampleSku": "DWPN-100654",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126511667,
+   "handle": "crushed-coral-sand-dwpr-425720",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Primary Suite, Sand, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086040952883,
+   "sampleSku": "DWPN-100646",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127756851,
+   "handle": "crushed-coral-sapphire-dwpr-425730",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark, Dark Academia, Dark Blue, Dark Slate Blue, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Midnight Blue, Moody, Navy, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086043148339,
+   "sampleSku": "DWPN-100655",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128018995,
+   "handle": "crushed-coral-silver-dwpr-425732",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gray, Grey, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Gray, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086043607091,
+   "sampleSku": "DWPN-100657",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126216755,
+   "handle": "crushed-coral-slate-dwpr-425718",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gray, Hospitality, IMO Marine Grade, Insects, Lavender, Leather, Living Room, Luxe, Luxurious, Luxury, Moody, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Primary Suite, Purple, Showroom Line, Silver, Slate, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086040428595,
+   "sampleSku": "DWPN-100644",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791126773811,
+   "handle": "crushed-coral-smoke-dwpr-425722",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Gray, Grey, Hospitality, Hotel Lobby, IMO Marine Grade, Industrial, Leather, Living Room, Luxe, Luxurious, Luxury, Moody, Navy, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Slate Gray, Smoke, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering",
+   "sampleVariantId": 44086041411635,
+   "sampleSku": "DWPN-100648",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791127035955,
+   "handle": "crushed-coral-toffee-dwpr-425724",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crushed Coral, Dark Brown, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Flocked Velvet, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086041870387,
+   "sampleSku": "DWPN-100650",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791128412211,
+   "handle": "crushed-coral-wheat-dwpr-425735",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crushed Coral, Dark Olive Green, display_variant, Eclectic, Embossed, Fabric, Faux Leather, Flocked Velvet, Glamorous, Green, Hospitality, Hotel Lobby, IMO Marine Grade, Khaki, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Olive, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Vinyl, Wallcovering, Wheat, Yellow",
+   "sampleVariantId": 44086044295219,
+   "sampleSku": "DWPN-100660",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499796275312,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53185",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956471980144,
+   "sampleSku": "XWY-53185-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499806924912,
+   "handle": "crystal-river-stain-repellent-real-textile-walls-xwy-53188",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956548165744,
+   "sampleSku": "XWY-53188-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882877374515,
+   "handle": "dwjj-40860-daniele",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Commercial, Contemporary, Cork, Daniele, Daniele Cork Stripe Naturals, display_variant, Eggshell, Geometric, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 41180290089011,
+   "sampleSku": "DWJJ-40860-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791129657395,
+   "handle": "dead-chest-silver-dwpr-425744",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Aqua, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Blue, Light Gray, Light Grey, Lightgray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Off-white, Office, Pale Blue, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Sustainable, Teal, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086046490675,
+   "sampleSku": "DWPN-100669",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791129821235,
+   "handle": "dead-chest-espresso-dwpr-425745",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Earth Tones, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Medium Brown, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Sophisticated, Sustainable, Taupe, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086046785587,
+   "sampleSku": "DWPN-100670",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791129952307,
+   "handle": "dead-chest-peacock-dwpr-425746",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Teal, display_variant, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Linen, Living Room, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Sustainable, Teal, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086047014963,
+   "sampleSku": "DWPN-100671",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130116147,
+   "handle": "dead-chest-sapphire-dwpr-425747",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Gray, Dark Navy, display_variant, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Medium Gray, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sapphire, Showroom Line, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086047309875,
+   "sampleSku": "DWPN-100672",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130279987,
+   "handle": "dead-chest-sand-dwpr-425748",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Eggshell, Farmhouse, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086047670323,
+   "sampleSku": "DWPN-100673",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130443827,
+   "handle": "dead-chest-gold-dwpr-425749",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Gold, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Yellow",
+   "sampleVariantId": 44086047932467,
+   "sampleSku": "DWPN-100674",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130574899,
+   "handle": "dead-chest-admiral-dwpr-425750",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Blue, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Sustainable, Taupe, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086048161843,
+   "sampleSku": "DWPN-100675",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130738739,
+   "handle": "dead-chest-sage-dwpr-425751",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Green, display_variant, FR Additives Free, Galleria, Grasscloth, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Seafoam Green, Serene, Showroom Line, Steel, Sustainable, Taupe, Teal, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086048423987,
+   "sampleSku": "DWPN-100676",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791130869811,
+   "handle": "dead-chest-copper-dwpr-425752",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Tawny, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086048653363,
+   "sampleSku": "DWPN-100677",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131000883,
+   "handle": "dead-chest-slate-dwpr-425753",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Tones, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Slate Gray, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086048915507,
+   "sampleSku": "DWPN-100678",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131164723,
+   "handle": "dead-chest-forest-dwpr-425754",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, FR Additives Free, Galleria, Grasscloth, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Blue, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Oatmeal, Organic Modern, Pale Beige, Pale Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sage Green, Scandinavian, Serene, Showroom Line, Silver, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086049177651,
+   "sampleSku": "DWPN-100679",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131328563,
+   "handle": "dead-chest-linen-dwpr-425755",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brick Red, Burlywood, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Indianred, LEED Compatible, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Red, Rustic, Showroom Line, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086049472563,
+   "sampleSku": "DWPN-100680",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131492403,
+   "handle": "dead-chest-charcoal-dwpr-425756",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pink, Polyester Blend, Private Label, Red, Rich Purples, Rose Taupe, Showroom Line, Sophisticated, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086049767475,
+   "sampleSku": "DWPN-100681",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131623475,
+   "handle": "devils-bay-sage-dwpr-425757",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Olive, display_variant, Earth Tones, FR Additives Free, Gold, Grasscloth, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Khaki, LEED Compatible, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Office, Olive Drab, Olive Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086049996851,
+   "sampleSku": "DWPN-100682",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131754547,
+   "handle": "devils-bay-sand-dwpr-425758",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Beige, display_variant, Earth Tones, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Oatmeal, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086050226227,
+   "sampleSku": "DWPN-100683",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791131885619,
+   "handle": "devils-bay-bordeaux-dwpr-425759",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Maroon, Dining Room, display_variant, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Maroon, Needs-Price, New Wave, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Red, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Reds, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086050488371,
+   "sampleSku": "DWPN-100684",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132049459,
+   "handle": "devils-bay-toffee-dwpr-425760",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Earth Tones, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086050750515,
+   "sampleSku": "DWPN-100685",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132213299,
+   "handle": "devils-bay-forest-dwpr-425761",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Farmhouse, FR Additives Free, Gray-green, Green, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Khaki, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, Neutral Tones, New Wave, NFPA 260 Compliant, Non-woven, Olive Green, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Putty, Rustic, Sage, Sage Green, Showroom Line, Solid, Sustainable, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086051045427,
+   "sampleSku": "DWPN-100686",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132344371,
+   "handle": "devils-bay-moss-dwpr-425762",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Botanical, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Olive, display_variant, Fabric, Farmhouse, FR Additives Free, Gold, Green, Green Building, Hospitality, Hunter Green, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, Khaki, LEED Compatible, Linen, Linen Texture, Living Room, Natural Greens, Needs-Price, New Wave, NFPA 260 Compliant, Office, Olive, Olive Green, Organic, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086051274803,
+   "sampleSku": "DWPN-100687",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132573747,
+   "handle": "devils-bay-sapphire-dwpr-425763",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, LEED Compatible, Linen, Linen Texture, Living Room, Minimalist, Navy, Needs-Price, Neutral Tones, New Wave, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate Gray, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086051668019,
+   "sampleSku": "DWPN-100688",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132704819,
+   "handle": "devils-bay-pewter-dwpr-425764",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Tones, display_variant, FR Additives Free, Gray, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086051897395,
+   "sampleSku": "DWPN-100689",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132835891,
+   "handle": "devils-bay-admiral-dwpr-425765",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Classic, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Blue, Dark Gray, Deep Indigo, display_variant, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, LEED Compatible, Linen Texture, Living Room, Minimalist, Modern, Navy, Needs-Price, New Wave, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Powder Blue, Private Label, Showroom Line, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086052126771,
+   "sampleSku": "DWPN-100690",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791132966963,
+   "handle": "devils-bay-linen-dwpr-425766",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, Burlywood, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contract Grade, Dark Khaki, display_variant, Earth Tones, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086052356147,
+   "sampleSku": "DWPN-100691",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133098035,
+   "handle": "devils-bay-dune-dwpr-425767",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Beige, display_variant, Earth Tones, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086052585523,
+   "sampleSku": "DWPN-100692",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133229107,
+   "handle": "devils-bay-fern-dwpr-425768",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Olive, display_variant, Fabric, FR Additives Free, Gold, Green, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Khaki, LEED Compatible, Linen, Linen Texture, Living Room, Natural Greens, Needs-Price, New Wave, NFPA 260 Compliant, Office, Olive, Olive Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Sustainable, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086052814899,
+   "sampleSku": "DWPN-100693",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133392947,
+   "handle": "devils-bay-espresso-dwpr-425769",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Espresso, FR Additives Free, Gold, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Needs-Price, Neutral Tones, New Wave, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Yellow",
+   "sampleVariantId": 44086053109811,
+   "sampleSku": "DWPN-100694",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133556787,
+   "handle": "devils-bay-slate-dwpr-425770",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, FR Additives Free, Graphite, Gray, Green Building, Grey, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Modern, Needs-Price, New Wave, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sophisticated, Sustainable, Taupe, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086053732403,
+   "sampleSku": "DWPN-100695",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133687859,
+   "handle": "devils-bay-mahogany-dwpr-425771",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dining Room, display_variant, Earth Tones, Eggshell, Farmhouse, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, New Wave, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086053929011,
+   "sampleSku": "DWPN-100696",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499888287856,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53331",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957114822768,
+   "sampleSku": "XWT-53331-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499888844912,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53332",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957118328944,
+   "sampleSku": "XWT-53332-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499889336432,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53333",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957121212528,
+   "sampleSku": "XWT-53333-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499889860720,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53334",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957127405680,
+   "sampleSku": "XWT-53334-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499890319472,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53335",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, LEED, Leed Walls, Light Gray, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957128650864,
+   "sampleSku": "XWT-53335-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499897987184,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53337",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957197725808,
+   "sampleSku": "XWT-53337-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499898642544,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53339",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13957205819504,
+   "sampleSku": "XWT-53339-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499899035760,
+   "handle": "darden-stain-repellent-real-textile-walls-xwt-53340",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13957210472560,
+   "sampleSku": "XWT-53340-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501380837488,
+   "handle": "darmai-silk-and-paper-prt-16100",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Commercial, Contemporary, Darmai Silk and Paper, display_variant, Eggshell, Fabric, Green, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Purple, Showroom Line, Silk, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13975673012336,
+   "sampleSku": "PRT-16100-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876325939,
+   "handle": "dwjj-40580-davide",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bella Italiano, Black, Bone, Commercial, Contemporary, Dark Green, Davide, Davide Printed Paperweave Naturals, display_variant, Gold, Gray, Green, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Stripe, Texture, Wallcovering, Yellow",
+   "sampleVariantId": 41180288647219,
+   "sampleSku": "DWJJ-40580-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876391475,
+   "handle": "dwjj-40590-davide",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Commercial, Contemporary, Davide, Davide Printed Paperweave Naturals, display_variant, Eggshell, Foil, Gray, Metal Leaf, Metallic, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 41180288843827,
+   "sampleSku": "DWJJ-40590-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499857125488,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53266",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Coastal, Commercial, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956894785648,
+   "sampleSku": "XWC-53266-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499858993264,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53269",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Coastal, Commercial, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956907630704,
+   "sampleSku": "XWC-53269-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499859550320,
+   "handle": "davie-beach-stain-repellent-real-linen-walls-xwc-53270",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Coastal, Commercial, Contemporary, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Texture, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13956909891696,
+   "sampleSku": "XWC-53270-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499811741808,
+   "handle": "deerfield-stain-repellent-real-textile-walls-xwc-53194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, Cream, display_variant, Grasscloth, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13956581359728,
+   "sampleSku": "XWC-53194-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502315249776,
+   "handle": "del-amore-prt-74032",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Cream, Del Amore, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986624995440,
+   "sampleSku": "PRT-74032-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502315544688,
+   "handle": "del-amore-prt-74034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Del Amore, display_variant, Fabric, Light Gray, Maroon, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986628534384,
+   "sampleSku": "PRT-74034-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502315872368,
+   "handle": "del-amore-prt-74036",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display_variant, Eggshell, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13986637578352,
+   "sampleSku": "PRT-74036-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791134965811,
+   "handle": "diamond-reef-copper-dwpr-425780",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Copper, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Light Copper, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086056190003,
+   "sampleSku": "DWPN-100705",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791135096883,
+   "handle": "diamond-reef-dove-dwpr-425781",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Diamond Reef, display_variant, Dove, Embossed, Fabric, Faux Leather, Geometric, Granite Gray, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Industrial, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086056419379,
+   "sampleSku": "DWPN-100706",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134867507,
+   "handle": "diamond-reef-forest-dwpr-425779",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Fern, Forest, Geometric, Green, Hospitality, IMO Marine Grade, Khaki, Leather, Light Beige, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Modern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086056026163,
+   "sampleSku": "DWPN-100704",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134244915,
+   "handle": "diamond-reef-linen-dwpr-425775",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Light Brown, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Pale Gold, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44086054944819,
+   "sampleSku": "DWPN-100700",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134670899,
+   "handle": "diamond-reef-pewter-dwpr-425778",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Mushroom, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086055698483,
+   "sampleSku": "DWPN-100703",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133818931,
+   "handle": "diamond-reef-sage-dwpr-425772",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Blue, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Pale Blue, Pale Green, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086054223923,
+   "sampleSku": "DWPN-100697",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134113843,
+   "handle": "diamond-reef-sand-dwpr-425774",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Diamond Reef, display_variant, Ecru, Embossed, Fabric, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086054715443,
+   "sampleSku": "DWPN-100699",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134539827,
+   "handle": "diamond-reef-silver-dwpr-425777",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086055469107,
+   "sampleSku": "DWPN-100702",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791133950003,
+   "handle": "diamond-reef-slate-dwpr-425773",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086054486067,
+   "sampleSku": "DWPN-100698",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791134375987,
+   "handle": "diamond-reef-smoke-dwpr-425776",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Diamond Reef, display_variant, Embossed, Fabric, Faux Leather, Geometric, Gray, Green, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage Green, Serene, Showroom Line, Silver, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086055174195,
+   "sampleSku": "DWPN-100701",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1501382803568,
+   "handle": "dili-silk-wallcovering-prt-16109",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Commercial, Contemporary, display_variant, Metallic, Multicolored, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Silver, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13975701651568,
+   "sampleSku": "PRT-16109-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791135981619,
+   "handle": "driftwood-bay-slate-dwpr-425796",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, Dark Grey, display_variant, Distressed, DMF-Free, Faux Leather, Flint, FR Additives Free, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Living Room, Minimalist, Mushroom, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Skintex, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086058057779,
+   "sampleSku": "DWPN-100709",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136145459,
+   "handle": "driftwood-bay-espresso-dwpr-425797",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Distressed, DMF-Free, Earth Tones, Espresso, Faux Leather, FR Additives Free, Fudge, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Lodge, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Skintex, Solid, Sustainable, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086058352691,
+   "sampleSku": "DWPN-100710",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136276531,
+   "handle": "driftwood-bay-mahogany-dwpr-425798",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Distressed, DMF-Free, Faux Leather, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Napa, Natural Look, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Red, Rustic, Sand, Showroom Line, Skintex, Solid, Sustainable, Textured, Timeless, Traditional, Transitional, Umber, Upholstery, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086058582067,
+   "sampleSku": "DWPN-100711",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136440371,
+   "handle": "driftwood-bay-cocoa-dwpr-425799",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Distressed, DMF-Free, Earth Tones, Faux Leather, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Saddlebrown, Showroom Line, Sienna, Skintex, Solid, Sustainable, Textured, Traditional, Transitional, Umber, Upholstery, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086058844211,
+   "sampleSku": "DWPN-100712",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136571443,
+   "handle": "driftwood-bay-goldenrod-dwpr-425800",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contract Grade, Dark Mustard, display_variant, Distressed, DMF-Free, Earth Tones, Faux Leather, FR Additives Free, Gold, Golden Brown, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Mustard Yellow, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Rye, Showroom Line, Skintex, Solid, Sustainable, Tan, Textured, Timeless, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Yellow",
+   "sampleVariantId": 44086059106355,
+   "sampleSku": "DWPN-100713",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136702515,
+   "handle": "driftwood-bay-camel-dwpr-425801",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Distressed, DMF-Free, Earth Tones, Faux Leather, FR Additives Free, Gold, Golden Brown, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Safari, Showroom Line, Skintex, Solid, Sustainable, Tan, Textured, Timeless, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086059335731,
+   "sampleSku": "DWPN-100714",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791136866355,
+   "handle": "driftwood-bay-truffle-dwpr-425802",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Distressed, DMF-Free, Earth Tones, Eggshell, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Sepia, Showroom Line, Skintex, Solid, Sophisticated, Sustainable, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086059630643,
+   "sampleSku": "DWPN-100715",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137030195,
+   "handle": "driftwood-bay-pewter-dwpr-425803",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Distressed, DMF-Free, FR Additives Free, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Light Taupe, Living Room, Minimalist, Modern, Natural Look, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Serene, Showroom Line, Skintex, Solid, Stone, Sustainable, Taupe, Textured, Upholstery, Vanilla, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086059925555,
+   "sampleSku": "DWPN-100716",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137161267,
+   "handle": "driftwood-bay-sage-dwpr-425804",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Olive, display_variant, Distressed, DMF-Free, Earth Tones, Faux Leather, FR Additives Free, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Natural Look, Needs-Price, NFPA 260 Compliant, Office, Olive, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Rustic, Showroom Line, Skintex, Solid, Sustainable, Textured, Traditional, Transitional, Upholstery, Vineyard, Vinyl, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086060154931,
+   "sampleSku": "DWPN-100717",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137554483,
+   "handle": "drake-channel-elk",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Channel, Channel Tufted, Chevron, Chevron Pattern, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, Dimensional, display_variant, Divergent, DMF-Free, Elk, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Texture, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Luxe, Medium Brown, Modern, Modern Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Ribbed, Showroom Line, Sophisticated, Tan, Taupe, Texture, Textured, Toffee, Vinyl, Wallcovering",
+   "sampleVariantId": 44086060843059,
+   "sampleSku": "DWPN-100720",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497948356720,
+   "handle": "dominico-real-linen-ltc-73311",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13933442498672,
+   "sampleSku": "LTC-73311-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497948553328,
+   "handle": "dominico-real-linen-ltc-73312",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Stripe, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13933443842160,
+   "sampleSku": "LTC-73312-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497948684400,
+   "handle": "dominico-real-linen-ltc-73313",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Stripe, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13933445349488,
+   "sampleSku": "LTC-73313-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497948881008,
+   "handle": "dominico-real-linen-ltc-73314",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Stripe, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13933447381104,
+   "sampleSku": "LTC-73314-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791137587251,
+   "handle": "drake-channel-gold-dwpr-425808",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Art Deco, Bedroom, Brass, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gold, display_variant, Drake Channel, Embossed, Fabric, Faux Leather, Geometric, Glamorous, Gold, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Gold, Living Room, Luxe, Luxurious, Luxury, Medium Gold, Needs-Price, NFPA 260 Compliant, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086060875827,
+   "sampleSku": "DWPN-100721",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137685555,
+   "handle": "drake-channel-greige-dwpr-425811",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, Brown, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Drake Channel, Embossed, Fabric, Faux Leather, Geometric, Glamorous, Greige, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Taupe, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Oatmeal, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Tan, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086060974131,
+   "sampleSku": "DWPN-100724",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137521715,
+   "handle": "drake-channel-pewter-dwpr-425806",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Brown, CA TB 117 Compliant, Chevron, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Drake Channel, Embossed, Espresso, Fabric, Faux Leather, Geometric, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086060777523,
+   "sampleSku": "DWPN-100719",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137652787,
+   "handle": "drake-channel-sage-dwpr-425810",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Art Deco, Bedroom, CA TB 117 Compliant, Celadon, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, Drake Channel, Embossed, Fabric, Faux Leather, Geometric, Glamorous, Gold, Green, Hospitality, Hotel Lobby, IMO Marine Grade, Insects, Khaki, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Olive, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086060941363,
+   "sampleSku": "DWPN-100723",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137620019,
+   "handle": "drake-channel-sand-dwpr-425809",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, CA TB 117 Compliant, Champagne, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Drake Channel, Embossed, Fabric, Faux Leather, Geometric, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Light Beige, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Pale Goldenrod, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Tan, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086060908595,
+   "sampleSku": "DWPN-100722",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137357875,
+   "handle": "drake-channel-slate-dwpr-425805",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, Drake Channel, Embossed, Fabric, Faux Leather, Geometric, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Leather, Living Room, Luxe, Luxury, Medium Gray, Modern, Needs-Price, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Sophisticated, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086060482611,
+   "sampleSku": "DWPN-100718",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791135883315,
+   "handle": "driftwood-bay-toffee-dwpr-425795",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Brass, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Driftwood Bay, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086057861171,
+   "sampleSku": "DWPN-100708",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791135719475,
+   "handle": "driftwood-bay-walnut-dwpr-425794",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Brown, CA TB 117 Compliant, Caramel, Chocolate Brown, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Driftwood Bay, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44086057599027,
+   "sampleSku": "DWPN-100707",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499887173744,
+   "handle": "dundee-stain-repellent-real-linen-walls-xwt-53329",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Linen, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13957108957296,
+   "sampleSku": "XWT-53329-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791137980467,
+   "handle": "dune-road-camel-dwpr-425819",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brass, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Camel, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061269043,
+   "sampleSku": "DWPN-100732",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138144307,
+   "handle": "dune-road-chartreuse-dwpr-425823",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Chartreuse, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Insects, Khaki, Leather, Light Olive Green, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086061432883,
+   "sampleSku": "DWPN-100736",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138275379,
+   "handle": "dune-road-cocoa-dwpr-425827",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Cocoa, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061563955,
+   "sampleSku": "DWPN-100740",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138373683,
+   "handle": "dune-road-cream-dwpr-425830",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Dune Road, Eggshell, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086061662259,
+   "sampleSku": "DWPN-100743",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138177075,
+   "handle": "dune-road-driftwood-dwpr-425824",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Dune Road, Embossed, Fabric, Faux Leather, Gold, Gray-brown, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061465651,
+   "sampleSku": "DWPN-100737",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138046003,
+   "handle": "dune-road-dune-dwpr-425820",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vanilla, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061334579,
+   "sampleSku": "DWPN-100733",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138537523,
+   "handle": "dune-road-fawn-dwpr-425835",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Fawn, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Tangerine, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061826099,
+   "sampleSku": "DWPN-100748",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138439219,
+   "handle": "dune-road-forest-dwpr-425832",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Eggshell, Embossed, Fabric, Faux Leather, Forest, Green, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Grey, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pale Green, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061727795,
+   "sampleSku": "DWPN-100745",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138340915,
+   "handle": "dune-road-greige-dwpr-425829",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Greige, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Taupe, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061629491,
+   "sampleSku": "DWPN-100742",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137914931,
+   "handle": "dune-road-ivory-dwpr-425817",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Ivory, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086061203507,
+   "sampleSku": "DWPN-100730",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137882163,
+   "handle": "dune-road-linen-dwpr-425816",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Light Beige, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086061170739,
+   "sampleSku": "DWPN-100729",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138471987,
+   "handle": "dune-road-mushroom-dwpr-425833",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Dune Road, Eggshell, Embossed, Fabric, Faux Leather, Gold, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061760563,
+   "sampleSku": "DWPN-100746",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137783859,
+   "handle": "dune-road-onyx-dwpr-425813",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Dune Road, Ebony, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061072435,
+   "sampleSku": "DWPN-100726",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138504755,
+   "handle": "dune-road-peacock-dwpr-425834",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Dusty Teal, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Seafoam Green, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061793331,
+   "sampleSku": "DWPN-100747",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138111539,
+   "handle": "dune-road-pewter-dwpr-425822",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Light Taupe, Living Room, Luxury, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061400115,
+   "sampleSku": "DWPN-100735",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137947699,
+   "handle": "dune-road-russet-dwpr-425818",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Russet, Showroom Line, Sienna, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061236275,
+   "sampleSku": "DWPN-100731",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138078771,
+   "handle": "dune-road-rust-dwpr-425821",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Rust, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rust, Rustic, Showroom Line, Sienna, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061367347,
+   "sampleSku": "DWPN-100734",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138308147,
+   "handle": "dune-road-sage-dwpr-425828",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061596723,
+   "sampleSku": "DWPN-100741",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137751091,
+   "handle": "dune-road-sand-dwpr-425812",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086061039667,
+   "sampleSku": "DWPN-100725",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138209843,
+   "handle": "dune-road-slate-dwpr-425825",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061498419,
+   "sampleSku": "DWPN-100738",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138242611,
+   "handle": "dune-road-smoke-dwpr-425826",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061531187,
+   "sampleSku": "DWPN-100739",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137849395,
+   "handle": "dune-road-toffee-dwpr-425815",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Tan, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Oatmeal, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086061137971,
+   "sampleSku": "DWPN-100728",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791137816627,
+   "handle": "dune-road-walnut-dwpr-425814",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sienna, Solid, Texture, Textured, Timeless, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44086061105203,
+   "sampleSku": "DWPN-100727",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138406451,
+   "handle": "dune-road-wheat-dwpr-425831",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune Road, Embossed, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44086061695027,
+   "sampleSku": "DWPN-100744",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138668595,
+   "handle": "dunmore-town-charcoal-dwpr-425838",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, Dark Gray, Dark Green, Dining Room, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061957171,
+   "sampleSku": "DWPN-100751",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138570291,
+   "handle": "dunmore-town-espresso-dwpr-425836",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, Dark Brown, Dining Room, display_variant, Dunmore Town, Embossed, Espresso, Fabric, Faux Leather, Glamorous, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061858867,
+   "sampleSku": "DWPN-100749",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138799667,
+   "handle": "dunmore-town-ivory-dwpr-425842",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Animal, Animal Skin, Bathroom, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Ivory, Leather, Living Room, Luxe, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086062088243,
+   "sampleSku": "DWPN-100755",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138766899,
+   "handle": "dunmore-town-mahogany-dwpr-425841",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, Dark Brown, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Insects, Leather, Living Room, Luxe, Luxurious, Luxury, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Reptile, Showroom Line, Sienna, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086062055475,
+   "sampleSku": "DWPN-100754",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138701363,
+   "handle": "dunmore-town-obsidian-dwpr-425839",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, Dark Grey, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Glamorous, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxe, Luxurious, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Obsidian, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Reptile, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061989939,
+   "sampleSku": "DWPN-100752",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138635827,
+   "handle": "dunmore-town-onyx-dwpr-425837",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Glamorous, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Office, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086061924403,
+   "sampleSku": "DWPN-100750",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138734131,
+   "handle": "dunmore-town-walnut-dwpr-425840",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Brown, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark Brown, Dining Room, display_variant, Dunmore Town, Embossed, Fabric, Faux Leather, Hollywood Regency, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut",
+   "sampleVariantId": 44086062022707,
+   "sampleSku": "DWPN-100753",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138930739,
+   "handle": "dutch-harbor-dune-dwpr-425845",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Dune, Dutch Harbor, Embossed, Fabric, Faux Leather, Flocked Velvet, Geometric, Glamorous, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Plum, Polyester, Purple, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086062219315,
+   "sampleSku": "DWPN-100758",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138897971,
+   "handle": "dutch-harbor-linen-dwpr-425844",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Diamond, display_variant, Dutch Harbor, Embossed, Fabric, Faux Leather, Flocked Velvet, Geometric, Hospitality, Hotel Lobby, IMO Marine Grade, Light Gray, Linen, Living Room, Luxe, Luxury, Needs-Price, NFPA 260 Compliant, Oyster, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White, Yellow",
+   "sampleVariantId": 44086062186547,
+   "sampleSku": "DWPN-100757",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138832435,
+   "handle": "dutch-harbor-sand-dwpr-425843",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Bedroom, Beige, Black, Brown, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Dutch Harbor, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Geometric, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Sophisticated, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Wallcovering",
+   "sampleVariantId": 44086062121011,
+   "sampleSku": "DWPN-100756",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791138963507,
+   "handle": "dutch-harbor-wheat-dwpr-425846",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Art Deco, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Diamond, display_variant, Dutch Harbor, Embossed, Fabric, Faux Leather, Flocked Velvet, Geometric, Glamorous, Gold, Green, Hospitality, Hotel Lobby, IMO Marine Grade, Leather, Living Room, Luxe, Luxurious, Luxury, Needs-Price, NFPA 260 Compliant, Olive Green, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Velvet, Wallcovering, Wheat, Yellow",
+   "sampleVariantId": 44086062252083,
+   "sampleSku": "DWPN-100759",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497951567984,
+   "handle": "elena-real-felt-type-2-flt-73333",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Solid, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering, White",
+   "sampleVariantId": 13933477757040,
+   "sampleSku": "FLT-73333-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497951731824,
+   "handle": "elena-real-felt-type-2-flt-73334",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Gunmetal, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13933478150256,
+   "sampleSku": "FLT-73334-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497951862896,
+   "handle": "elena-real-felt-type-2-flt-73335",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933478838384,
+   "sampleSku": "FLT-73335-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497952125040,
+   "handle": "elena-real-felt-type-2-flt-73336",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Gunmetal, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933482016880,
+   "sampleSku": "FLT-73336-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497952288880,
+   "handle": "elena-real-felt-type-2-flt-73337",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggplant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Pink, Purple, Red, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933484277872,
+   "sampleSku": "FLT-73337-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497952485488,
+   "handle": "elena-real-felt-type-2-flt-73338",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Elena Real Felt Type 2, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933485031536,
+   "sampleSku": "FLT-73338-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497952911472,
+   "handle": "elena-real-felt-type-2-flt-73340",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Espresso, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933489946736,
+   "sampleSku": "FLT-73340-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497953108080,
+   "handle": "elena-real-felt-type-2-flt-73341",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Peacock, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933491978352,
+   "sampleSku": "FLT-73341-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497953239152,
+   "handle": "elena-real-felt-type-2-flt-73342",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933492273264,
+   "sampleSku": "FLT-73342-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497953468528,
+   "handle": "elena-real-felt-type-2-flt-73343",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brass, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gold, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 13933494599792,
+   "sampleSku": "FLT-73343-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497953796208,
+   "handle": "elena-real-felt-type-2-flt-73344",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Burnt Orange, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13933496205424,
+   "sampleSku": "FLT-73344-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497953960048,
+   "handle": "elena-real-felt-type-2-flt-73345",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Maroon, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933499383920,
+   "sampleSku": "FLT-73345-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497954123888,
+   "handle": "elena-real-felt-type-2-flt-73346",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13933500301424,
+   "sampleSku": "FLT-73346-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497954254960,
+   "handle": "elena-real-felt-type-2-flt-73347",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13933501841520,
+   "sampleSku": "FLT-73347-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791139029043,
+   "handle": "emerald-beach-sand-dwpr-425870",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Fabric, Farmhouse, Flax, FR Additives Free, Graffiti-Free, Grasscloth, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Scandinavian, Showroom Line, Sustainable, Tan, Tekloom, Textured, Traditional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062317619,
+   "sampleSku": "DWPN-100761",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139061811,
+   "handle": "emerald-beach-linen-dwpr-425871",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Burnt Sienna, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Coral, display_variant, DMF-Free, Earth Tones, Elevate, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Graffiti-Free, Green Building, Hallway, Harvest, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Coral, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sustainable, Tan, Tekloom, Terracotta, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062350387,
+   "sampleSku": "DWPN-100762",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139094579,
+   "handle": "emerald-beach-dune-dwpr-425872",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Graffiti-Free, Green Building, Hallway, Hemp, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sustainable, Taupe, Tekloom, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062383155,
+   "sampleSku": "DWPN-100763",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139127347,
+   "handle": "emerald-beach-sage-dwpr-425873",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Eggshell, Elevate, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Gold, Graffiti-Free, Grasscloth, Green, Green Building, Hallway, Herringbone, Hospitality, Hula, IMO 8.2 Certified, IMO Marine Grade, Insects, Khaki, LEED Compatible, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Olive, Olive Green, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Showroom Line, Sustainable, Tekloom, Textured, Traditional, Transitional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062415923,
+   "sampleSku": "DWPN-100764",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139160115,
+   "handle": "emerald-beach-silver-dwpr-425874",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Cool Grey, display_variant, DMF-Free, Elevate, Fabric, FR Additives Free, Geometric, Graffiti-Free, Grasscloth, Gray, Green Building, Grey, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Light Grey, Living Room, Needs-Price, NFPA 260 Compliant, Off-white, Pebble, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Silver, Sustainable, Tekloom, Textured, Transitional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062448691,
+   "sampleSku": "DWPN-100765",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139192883,
+   "handle": "emerald-beach-wheat-dwpr-425875",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Blue, Bohemian, Bone, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Gray, Dark Green, display_variant, DMF-Free, Elevate, Fabric, FR Additives Free, Graffiti-Free, Grasscloth, Green, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polynesia, Private Label, PVC-Free, Scandinavian, Showroom Line, Sustainable, Teal, Tekloom, Transitional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062481459,
+   "sampleSku": "DWPN-100766",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139225651,
+   "handle": "emerald-beach-biscuit-dwpr-425876",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Farmhouse, FR Additives Free, Geometric, Graffiti-Free, Grasscloth, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Greens, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Reed, Scandinavian, Showroom Line, Sisal, Sustainable, Tan, Taupe, Tekloom, Textured, Traditional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062514227,
+   "sampleSku": "DWPN-100767",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139258419,
+   "handle": "emerald-beach-oat-dwpr-425877",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Earth Tones, Elevate, Farmhouse, FR Additives Free, Graffiti-Free, Grasscloth, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sisal, Sustainable, Tan, Tekloom, Textured, Transitional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, White, Wide Width",
+   "sampleVariantId": 44086062546995,
+   "sampleSku": "DWPN-100768",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139291187,
+   "handle": "emerald-beach-slate-dwpr-425878",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Chevron, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Non-woven, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Showroom Line, Slate, Sophisticated, Sustainable, Tekloom, Textured, Traditional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062579763,
+   "sampleSku": "DWPN-100769",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139356723,
+   "handle": "emerald-beach-barley-dwpr-425879",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Graffiti-Free, Grasscloth, Green, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Olive, Olive Green, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Sage Green, Showroom Line, Spa, Sustainable, Tekloom, Textured, Traditional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062710835,
+   "sampleSku": "DWPN-100770",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139389491,
+   "handle": "emerald-beach-sandstone-dwpr-425880",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Chevron, Chocolate, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Taupe, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Gray, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Living Room, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sustainable, Taupe, Tekloom, Textured, Titanium, Traditional, Transitional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062743603,
+   "sampleSku": "DWPN-100771",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139422259,
+   "handle": "emerald-beach-sand-2-dwpr-425881",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Burnt Orange, CA TB 117 Compliant, Chevron, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Pumpkin, PVC-Free, Rust, Showroom Line, Sustainable, Tan, Tangerine, Tekloom, Textured, Torch, Traditional, Transitional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062776371,
+   "sampleSku": "DWPN-100772",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139455027,
+   "handle": "emerald-beach-sand-3-dwpr-425882",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Elevate, Farmhouse, FR Additives Free, Graffiti-Free, Grasscloth, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sustainable, Taupe, Tekloom, Textured, Traditional, Transitional, Upholstery, Vesper, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062809139,
+   "sampleSku": "DWPN-100773",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139487795,
+   "handle": "emerald-beach-sand-4-dwpr-425883",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, display_variant, DMF-Free, Elevate, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Needs-Price, NFPA 260 Compliant, Off-white, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Sustainable, Taupe, Tekloom, Textile, Textured, Transitional, Upholstery, Voyage, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086062841907,
+   "sampleSku": "DWPN-100774",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497959727216,
+   "handle": "elisa-real-silk-sca-73378",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Amber, Architectural, Beige, Commercial, display_variant, Elisa Real Silk, Golden Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Tan, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13933562036336,
+   "sampleSku": "SCA-73378-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497959858288,
+   "handle": "elisa-real-silk-sca-73379",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Elisa Real Silk, Light Yellow, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13933566460016,
+   "sampleSku": "SCA-73379-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497960054896,
+   "handle": "elisa-real-silk-sca-73380",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Brown, Commercial, Dark Brown, display_variant, Elisa Real Silk, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933567475824,
+   "sampleSku": "SCA-73380-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497960218736,
+   "handle": "elisa-real-silk-sca-73381",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, display_variant, Elisa Real Silk, Gold, Honey, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Tan, Texture, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13933568295024,
+   "sampleSku": "SCA-73381-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497960382576,
+   "handle": "elisa-real-silk-sca-73382",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, display_variant, Eggshell, Elisa Real Silk, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Silk, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933568524400,
+   "sampleSku": "SCA-73382-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791138996275,
+   "handle": "emerald-beach-natural-dwpr-425869",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Durable, Eggshell, Embossed, Emerald Beach, Fabric, Farmhouse, Faux Leather, Gold, Grasscloth, Gray, Hallway, Herringbone, Hospitality, Hotel, IMO Marine Grade, Leather, Living Room, Luxury, Modern, Natural, Needs-Price, NFPA 260 Compliant, Non-woven, Oatmeal, Office, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Subtle, Taupe, Teal, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086062284851,
+   "sampleSku": "DWPN-100760",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139717171,
+   "handle": "exuma-sage-dwpr-425889",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Ash, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Natural Greens, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Sage, Sage Green, Seafoam Green, Serene, Showroom Line, Silver, Solid, Sustainable, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086063562803,
+   "sampleSku": "DWPN-100780",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139749939,
+   "handle": "exuma-smoke-dwpr-425890",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Off White, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Solid, Stripe, Sustainable, Taupe, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, White, Wide Width, Woven",
+   "sampleVariantId": 44086063595571,
+   "sampleSku": "DWPN-100781",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139815475,
+   "handle": "exuma-forest-dwpr-425891",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Pale Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Sage, Seafoam Green, Serene, Showroom Line, Solid, Sustainable, Teal, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086063726643,
+   "sampleSku": "DWPN-100782",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139848243,
+   "handle": "exuma-dove-dwpr-425892",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Granite, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Smoke, Solid, Sustainable, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086063759411,
+   "sampleSku": "DWPN-100783",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497409192048,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54573",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Coastal, Commercial, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional Wallcoverings, Wallcovering, Woven",
+   "sampleVariantId": 44170992975923,
+   "sampleSku": "EDD-54573-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497409323120,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54574",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Coastal, Commercial, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional Wallcoverings, Tropical, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44170993008691,
+   "sampleSku": "EDD-54574-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497409486960,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54575",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Metallic, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Traditional Wallcoverings, Wallcovering, Woven",
+   "sampleVariantId": 44170993041459,
+   "sampleSku": "EDD-54575-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497409650800,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54576",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Eggshell, Escado Natural, Grasscloth, Grasscloth Texture, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, White, Yellow",
+   "sampleVariantId": 44170993074227,
+   "sampleSku": "EDD-54576-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497409781872,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54577",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Traditional Wallcoverings, Wallcovering, Woven",
+   "sampleVariantId": 44170993139763,
+   "sampleSku": "EDD-54577-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497409945712,
+   "handle": "escado-natural-wallpaper-by-phillipe-romano-edd-54578",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display_variant, Eggshell, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Green, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Traditional Wallcoverings, Wallcovering, Woven",
+   "sampleVariantId": 44170993172531,
+   "sampleSku": "EDD-54578-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700142981171,
+   "handle": "essence-grasscloth-wallpaper-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Accent Wall, Architectural, Bedroom, Beige, Biophilic, Bone, botanical, Brown, calming, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, essence, essence-collection, Feature Wall, floral, grasscloth, Grasscloth Weave, Green, Hallway, hemp, Hospitality, Leaf, leaf-design, Living Room, luxury, natural, nature, Needs-Image, Needs-Price, Needs-Width, Olive, orchids, Organic, Organic Modern, Purple, Residential, Rustic, Sage Green, Serene, Showroom Line, Tan, Taupe, textured, Transitional, Tropical, wallcovering, watercolour",
+   "sampleVariantId": 43720201732147,
+   "sampleSku": "DWWC-506330-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791140306995,
+   "handle": "estate-thomas-ash-dwpr-425906",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Slate Gray, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064218163,
+   "sampleSku": "DWPN-100797",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140143155,
+   "handle": "estate-thomas-azure-dwpr-425901",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Slate Gray, Denim Blue, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064054323,
+   "sampleSku": "DWPN-100792",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140241459,
+   "handle": "estate-thomas-bordeaux-dwpr-425904",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Burgundy, display_variant, Eggshell, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064152627,
+   "sampleSku": "DWPN-100795",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140503603,
+   "handle": "estate-thomas-cocoa-dwpr-425911",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Cocoa, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Ecru, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064709683,
+   "sampleSku": "DWPN-100802",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140601907,
+   "handle": "estate-thomas-coffee-dwpr-425914",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Eggshell, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064807987,
+   "sampleSku": "DWPN-100805",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140274227,
+   "handle": "estate-thomas-dove-dwpr-425905",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dove, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pearl, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064185395,
+   "sampleSku": "DWPN-100796",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140339763,
+   "handle": "estate-thomas-driftwood-dwpr-425907",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Driftwood, Eggshell, Embossed, Estate Thomas, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064250931,
+   "sampleSku": "DWPN-100798",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140569139,
+   "handle": "estate-thomas-dune-dwpr-425913",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Embossed, Estate Thomas, Fabric, Faux Leather, Gold, Honey, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064775219,
+   "sampleSku": "DWPN-100804",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140208691,
+   "handle": "estate-thomas-fern-dwpr-425903",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Botanical, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Olive, Dark Olive Green, Deep Forest Green, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Fern, Green, Hospitality, Hunter Green, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064119859,
+   "sampleSku": "DWPN-100794",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140470835,
+   "handle": "estate-thomas-fog-dwpr-425910",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Fog, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Linen, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064676915,
+   "sampleSku": "DWPN-100801",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140175923,
+   "handle": "estate-thomas-forest-dwpr-425902",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Forest, Gold, Green, Hospitality, Hunter Green, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064087091,
+   "sampleSku": "DWPN-100793",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140438067,
+   "handle": "estate-thomas-greige-dwpr-425909",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gold, Greige, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Off White, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064644147,
+   "sampleSku": "DWPN-100800",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140667443,
+   "handle": "estate-thomas-ivory-dwpr-425916",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Ivory, Leather, Light Beige, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Off-white, Organic Modern, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064873523,
+   "sampleSku": "DWPN-100807",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140372531,
+   "handle": "estate-thomas-linen-dwpr-425908",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Light Beige, Light Gray, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064283699,
+   "sampleSku": "DWPN-100799",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140700211,
+   "handle": "estate-thomas-mocha-dwpr-425917",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Ecru, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Mocha, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sienna, Solid, Texture, Textured, Timeless, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064906291,
+   "sampleSku": "DWPN-100808",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139946547,
+   "handle": "estate-thomas-pewter-dwpr-425895",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gold, Gray-brown, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063857715,
+   "sampleSku": "DWPN-100786",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139913779,
+   "handle": "estate-thomas-sage-dwpr-425894",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Green, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063824947,
+   "sampleSku": "DWPN-100785",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140044851,
+   "handle": "estate-thomas-sand-dwpr-425898",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Estate Thomas, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063956019,
+   "sampleSku": "DWPN-100789",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140110387,
+   "handle": "estate-thomas-silver-dwpr-425900",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Grey, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086064021555,
+   "sampleSku": "DWPN-100791",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139979315,
+   "handle": "estate-thomas-slate-dwpr-425896",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxe, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063890483,
+   "sampleSku": "DWPN-100787",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140012083,
+   "handle": "estate-thomas-smoke-dwpr-425897",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gray, Green, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Grey, Linen, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063923251,
+   "sampleSku": "DWPN-100788",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139881011,
+   "handle": "estate-thomas-toffee-dwpr-425893",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Tan, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086063792179,
+   "sampleSku": "DWPN-100784",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140536371,
+   "handle": "estate-thomas-umber-dwpr-425912",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086064742451,
+   "sampleSku": "DWPN-100803",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140077619,
+   "handle": "estate-thomas-walnut-dwpr-425899",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44086063988787,
+   "sampleSku": "DWPN-100790",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791140634675,
+   "handle": "estate-thomas-wheat-dwpr-425915",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Estate Thomas, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44086064840755,
+   "sampleSku": "DWPN-100806",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139684403,
+   "handle": "exuma-linen-dwpr-425888",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Basketweave, Bedroom, Beige, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Coral, display_variant, Embossed, Exuma, Fabric, Fabric-backed Vinyl, Farmhouse, Faux Leather, Golden Brown, Hallway, Hospitality, IMO Marine Grade, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Salmon, Showroom Line, Solid, Tan, Terra Cotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086063530035,
+   "sampleSku": "DWPN-100779",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139586099,
+   "handle": "exuma-pewter-dwpr-425885",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Exuma, Fabric, Faux Leather, Grasscloth, Gray-brown, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Stripe, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086063431731,
+   "sampleSku": "DWPN-100776",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139618867,
+   "handle": "exuma-sand-dwpr-425886",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Exuma, Fabric, Fabric-backed Vinyl, Faux Leather, Gray, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Stripe, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063464499,
+   "sampleSku": "DWPN-100777",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139651635,
+   "handle": "exuma-silver-dwpr-425887",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Exuma, Fabric, Faux Leather, Grasscloth, Grasscloth Weave, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Medium Grey, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086063497267,
+   "sampleSku": "DWPN-100778",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791139520563,
+   "handle": "exuma-slate-dwpr-425884",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Exuma, Fabric, Fabric-backed Vinyl, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Medium Grey, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Slate Grey, Smoke, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086062874675,
+   "sampleSku": "DWPN-100775",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497962053744,
+   "handle": "fabriola-textile-wallpaper-twb-73394",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Fabriola Textile, Grasscloth, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933588807792,
+   "sampleSku": "TWB-73394-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497962283120,
+   "handle": "fabriola-textile-wallpaper-twb-73396",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Fabric, Fabriola Textile, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933592182896,
+   "sampleSku": "TWB-73396-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497962479728,
+   "handle": "fabriola-textile-wallpaper-twb-73397",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, Cream, display_variant, Fabriola Textile, Grasscloth, Light Beige, Light Gray, Mushroom, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 13933593264240,
+   "sampleSku": "TWB-73397-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497962676336,
+   "handle": "fabriola-textile-wallpaper-twb-73398",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Eggshell, Fabriola Textile, Grasscloth, Khaki, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933596606576,
+   "sampleSku": "TWB-73398-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497962774640,
+   "handle": "fabriola-textile-wallpaper-twb-73399",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Eggshell, Fabriola Textile, Grasscloth, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13933596999792,
+   "sampleSku": "TWB-73399-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497962971248,
+   "handle": "fabriola-textile-wallpaper-twb-73400",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, Dark Brown, display_variant, Fabriola Textile, Grasscloth, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Taupe, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13933601292400,
+   "sampleSku": "TWB-73400-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497963135088,
+   "handle": "fabriola-textile-wallpaper-twb-73401",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Fabriola Textile, Grasscloth, Khaki, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933602242672,
+   "sampleSku": "TWB-73401-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497963298928,
+   "handle": "fabriola-textile-wallpaper-twb-73402",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Cotton, display_variant, Fabriola Textile, Grasscloth, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933604372592,
+   "sampleSku": "TWB-73402-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497963430000,
+   "handle": "fabriola-textile-wallpaper-twb-73403",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20% Visc, 40% Poly, 40%Cotton, AI-Analyzed-v2, Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Cotton, display_variant, Fabriola Textile, Grasscloth, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13933604569200,
+   "sampleSku": "TWB-73403-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500598272112,
+   "handle": "faguli-real-cork-cork-34177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Commercial Wallcovering, Contemporary, Cork, display_variant, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13966381973616,
+   "sampleSku": "CORK-34177-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500598698096,
+   "handle": "faguli-real-cork-cork-34178",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, Commercial Wallcovering, Contemporary, Cork, display_variant, Gray, Linen, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Tan, Textured, Wallcovering, White",
+   "sampleVariantId": 13966385643632,
+   "sampleSku": "CORK-34178-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500599025776,
+   "handle": "faguli-real-cork-cork-34179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Cork, Cream, display_variant, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering, White",
+   "sampleVariantId": 13966389739632,
+   "sampleSku": "CORK-34179-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500599353456,
+   "handle": "faguli-real-cork-cork-34180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Cork, display_variant, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13966392492144,
+   "sampleSku": "CORK-34180-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500600041584,
+   "handle": "faguli-real-cork-cork-34182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Commercial Wallcovering, Cork, Dark Brown, display_variant, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13966399111280,
+   "sampleSku": "CORK-34182-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500600205424,
+   "handle": "faguli-real-cork-cork-34183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Commercial, Commercial Wallcovering, Cork, display_variant, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering, White",
+   "sampleVariantId": 13966400913520,
+   "sampleSku": "CORK-34183-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500600664176,
+   "handle": "faguli-real-cork-cork-34185",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Commercial, Commercial Wallcovering, Contemporary, Cork, display_variant, Gray, Natural, Natural Textile Wallcovering, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Wallcovering, White",
+   "sampleVariantId": 13966408614000,
+   "sampleSku": "CORK-34185-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791141126195,
+   "handle": "fajardo-sand-dwpr-425979",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, Architectural, Bedroom, Beige, CAN/ULC Certified, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Dark Beige, display_variant, Drapery, Dry Clean Only, Earth Tones, Fabric, Farmhouse, Hallway, Hospitality, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, NFPA 701 Drapery Rated, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Rustic, Showroom Line, Spot Cleanable, Tan, Textured, Traditional, Vinyl, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44086065659955,
+   "sampleSku": "DWPN-100809",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141257267,
+   "handle": "fajardo-espresso-dwpr-425980",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Brown, Cafe, CAN/ULC Certified, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Dark Brown, display_variant, Drapery, Dry Clean Only, Earth Tones, Fabric, Figaro, Hospitality, Linen, Linen Texture, Living Room, Needs-Price, NFPA 701 Drapery Rated, Office, Organic Modern, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Rustic, Showroom Line, Silk, Solid, Spot Cleanable, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Traditional, Transitional, Wallcovering, Warm, Wide Width",
+   "sampleVariantId": 44086065922099,
+   "sampleSku": "DWPN-100810",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141388339,
+   "handle": "fajardo-linen-dwpr-425981",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, CAN/ULC Certified, Cashew, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, display_variant, Drapery, Dry Clean Only, Earth Tones, Fabric, Farmhouse, Figaro, Hallway, Hospitality, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Oatmeal, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Spot Cleanable, Tan, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Traditional, Transitional, Wallcovering, Warm, Wide Width",
+   "sampleVariantId": 44086066151475,
+   "sampleSku": "DWPN-100811",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141421107,
+   "handle": "fajardo-pewter-dwpr-425982",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, CAN/ULC Certified, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Dark Taupe, display_variant, Drapery, Dry Clean Only, Fabric, Farmhouse, Field, Figaro, Hallway, Hospitality, Light Taupe, Linen, Linen Texture, Living Room, Natural Greens, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Spot Cleanable, Tan, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Traditional, Transitional, Wallcovering, Warm, Wide Width",
+   "sampleVariantId": 44086066184243,
+   "sampleSku": "DWPN-100812",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141453875,
+   "handle": "fajardo-driftwood-dwpr-425983",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, CAN/ULC Certified, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Cool Grays, Dark Gray, Dark Taupe, display_variant, Drapery, Dry Clean Only, Fabric, Figaro, Haze, Hospitality, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Mushroom, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Office, Organic Modern, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Spot Cleanable, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Transitional, Wallcovering, Wide Width",
+   "sampleVariantId": 44086066217011,
+   "sampleSku": "DWPN-100813",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141486643,
+   "handle": "fajardo-dune-dwpr-425984",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, CAN/ULC Certified, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Dark Brown, display_variant, Drapery, Dry Clean Only, Ecru, Fabric, Figaro, Horizon, Hospitality, Light Brown, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 701 Drapery Rated, Office, Organic Modern, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Spot Cleanable, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Traditional, Transitional, Vinyl, Wallcovering, Wide Width",
+   "sampleVariantId": 44086066249779,
+   "sampleSku": "DWPN-100814",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141552179,
+   "handle": "fajardo-greige-dwpr-425986",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Animal, Architectural, Bedroom, Brown, CAN/ULC Certified, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Cool Grays, Dark Gray, Dark Taupe, display_variant, Drapery, Dry Clean Only, Fabric, Figaro, Hallway, Hospitality, Insects, Light Taupe, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Organic Modern, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Serene, Showroom Line, Spot Cleanable, Storm, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Transitional, Wallcovering, Wide Width",
+   "sampleVariantId": 44086066315315,
+   "sampleSku": "DWPN-100816",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141584947,
+   "handle": "fajardo-mushroom-dwpr-425987",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Animal, Architectural, Bedroom, CAN/ULC Certified, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contexture, Contract Grade, Dark Gray, Dark Grey, display_variant, Drapery, Dry Clean Only, Fabric, Figaro, Graphite, Gray, Grey, Hospitality, Insects, Linen, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 701 Drapery Rated, Non-woven, Office, Performance Fabric, Philippe Romano Fabrics, Phillipe Romano, Polyester Blend, Private Label, Red, Showroom Line, Solid, Sophisticated, Spot Cleanable, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Twilight, Wallcovering, Wide Width",
+   "sampleVariantId": 44086066348083,
+   "sampleSku": "DWPN-100817",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142174771,
+   "handle": "firefly-admiral-dwpr-426007",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Admiral, Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067036211,
+   "sampleSku": "DWPN-100834",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142797363,
+   "handle": "firefly-ash-dwpr-426025",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Ash, Bedroom, Bone, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Firefly, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Linen, Linen Texture, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067920947,
+   "sampleSku": "DWPN-100852",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142830131,
+   "handle": "firefly-azure-dwpr-426026",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Azure, Bedroom, Blue, Bone, CA TB 117 Compliant, Charcoal Gray, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Firefly, Gray, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Blue, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067953715,
+   "sampleSku": "DWPN-100853",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141781555,
+   "handle": "firefly-bordeaux-dwpr-425994",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Maroon, Dining Room, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maroon, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086066544691,
+   "sampleSku": "DWPN-100823",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141945395,
+   "handle": "firefly-cocoa-dwpr-426000",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Cocoa, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086066806835,
+   "sampleSku": "DWPN-100827",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142764595,
+   "handle": "firefly-coffee-dwpr-426024",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086067888179,
+   "sampleSku": "DWPN-100851",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142666291,
+   "handle": "firefly-dove-dwpr-426021",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Dove, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067789875,
+   "sampleSku": "DWPN-100848",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142535219,
+   "handle": "firefly-driftwood-dwpr-426018",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Driftwood, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086067396659,
+   "sampleSku": "DWPN-100845",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142273075,
+   "handle": "firefly-dusty-rose-dwpr-426010",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Dusty Rose, Ecru, Embossed, Fabric, Faux Leather, Firefly, Floral, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Mauve, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Purple, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067134515,
+   "sampleSku": "DWPN-100837",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141650483,
+   "handle": "firefly-eggplant-dwpr-425989",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Plum, display_variant, Eggplant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Purple, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066413619,
+   "sampleSku": "DWPN-100819",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141912627,
+   "handle": "firefly-espresso-dwpr-425999",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Fabric-backed Vinyl, Farmhouse, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Medium Brown, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086066774067,
+   "sampleSku": "DWPN-100826",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142076467,
+   "handle": "firefly-evergreen-dwpr-426004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Green, Deep Olive, display_variant, Embossed, Evergreen, Fabric, Faux Leather, Firefly, Forest Green, Green, Hospitality, IMO Marine Grade, Juniper, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066937907,
+   "sampleSku": "DWPN-100831",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142109235,
+   "handle": "firefly-fern-dwpr-426005",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Botanical, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Olive, Dark Olive Green, Deep Forest Green, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Farmhouse, Faux Leather, Fern, Firefly, Green, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Olive Green, Organic, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066970675,
+   "sampleSku": "DWPN-100832",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142043699,
+   "handle": "firefly-forest-dwpr-426003",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Firefly, Forest, Forest Green, Green, Hospitality, Hunter Green, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066905139,
+   "sampleSku": "DWPN-100830",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142731827,
+   "handle": "firefly-greige-dwpr-426023",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Firefly, Greige, Hallway, Hospitality, IMO Marine Grade, Leather, Light Taupe, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067855411,
+   "sampleSku": "DWPN-100850",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142469683,
+   "handle": "firefly-indigo-dwpr-426016",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Indigo, Leather, Linen, Living Room, Luxury, Midnight, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067331123,
+   "sampleSku": "DWPN-100843",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142502451,
+   "handle": "firefly-lagoon-dwpr-426017",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Teal, Deep Teal, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Insects, Lagoon, Leather, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067363891,
+   "sampleSku": "DWPN-100844",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142371379,
+   "handle": "firefly-mahogany-dwpr-426013",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Mahogany, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086067232819,
+   "sampleSku": "DWPN-100840",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142699059,
+   "handle": "firefly-maroon-dwpr-426022",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Academia, Dark Brown, Dark Maroon, Dining Room, display_variant, Embossed, Espresso, Fabric, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maroon, Moody, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067822643,
+   "sampleSku": "DWPN-100849",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142600755,
+   "handle": "firefly-merlot-dwpr-426019",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Burgundy, Dining Room, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Merlot, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086067724339,
+   "sampleSku": "DWPN-100846",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142207539,
+   "handle": "firefly-midnight-dwpr-426008",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, Deep Indigo, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Ink, Insects, Leather, Living Room, Luxury, Midnight, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067068979,
+   "sampleSku": "DWPN-100835",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141879859,
+   "handle": "firefly-moss-dwpr-425997",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, Dark Olive, display_variant, Embossed, Espresso, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Gold, Green, Hospitality, IMO Marine Grade, Khaki, Leather, Living Room, Luxury, Moss, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Drab, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086066741299,
+   "sampleSku": "DWPN-100825",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142862899,
+   "handle": "firefly-mushroom-dwpr-426027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Firefly, Gray-brown, Hallway, Hospitality, IMO Marine Grade, Leather, Light Taupe, Linen, Living Room, Luxury, Mushroom, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086067986483,
+   "sampleSku": "DWPN-100854",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141683251,
+   "handle": "firefly-natural-dwpr-425990",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract, Contract Grade, Cream, display_variant, Durable, Easy To Clean, Eggshell, Embossed, Fabric, Faux Leather, Firefly, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Brown, Living Room, Luxury, Minimalist, Modern, Natural, Needs-Price, Neutral, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Subtle, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066446387,
+   "sampleSku": "DWPN-100820",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142404147,
+   "handle": "firefly-natural-dwpr-426014",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Durable, Easy To Clean, Eggshell, Embossed, Fabric, Faux Leather, Firefly, Green, Healthcare, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Minimalist, Moss, Moss Green, Natural, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Olive Green, Organic, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067265587,
+   "sampleSku": "DWPN-100841",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142436915,
+   "handle": "firefly-natural-dwpr-426015",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Architectural, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Durable, Easy To Clean, Ecru, Embossed, Fabric, Faux Leather, Firefly, Gray, Grey, High-traffic Areas, Hospitality, IMO Marine Grade, Leather, Light Taupe, Linen, Living Room, Luxury, Minimalist, Modern, Natural, Needs-Price, Neutral, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086067298355,
+   "sampleSku": "DWPN-100842",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141716019,
+   "handle": "firefly-onyx-dwpr-425991",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Firefly, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Moody, Needs-Price, NFPA 260 Compliant, Non-woven, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066479155,
+   "sampleSku": "DWPN-100821",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142240307,
+   "handle": "firefly-peacock-dwpr-426009",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Dusty Teal, Embossed, Fabric, Faux Leather, Firefly, Green, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Subtle Grey, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067101747,
+   "sampleSku": "DWPN-100836",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142305843,
+   "handle": "firefly-pewter-dwpr-426011",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Firefly, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Taupe, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067167283,
+   "sampleSku": "DWPN-100838",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141814323,
+   "handle": "firefly-sage-dwpr-425995",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Sage, Dark Sea Green, display_variant, Embossed, Fabric, Faux Leather, Firefly, Green, Hospitality, IMO Marine Grade, Leather, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Sea Green, Serene, Showroom Line, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066577459,
+   "sampleSku": "DWPN-100824",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141978163,
+   "handle": "firefly-sand-dwpr-426001",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Firefly, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066839603,
+   "sampleSku": "DWPN-100828",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141748787,
+   "handle": "firefly-sapphire-dwpr-425993",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086066511923,
+   "sampleSku": "DWPN-100822",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142338611,
+   "handle": "firefly-slate-dwpr-426012",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Firefly, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Medium Gray, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067200051,
+   "sampleSku": "DWPN-100839",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142633523,
+   "handle": "firefly-smoke-dwpr-426020",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Firefly, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086067757107,
+   "sampleSku": "DWPN-100847",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142010931,
+   "handle": "firefly-umber-dwpr-426002",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Golden Brown, Dark Tan, display_variant, Embossed, Fabric, Faux Leather, Firefly, Gold, Golden Brown, Hospitality, IMO Marine Grade, Insects, Leather, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086066872371,
+   "sampleSku": "DWPN-100829",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791141617715,
+   "handle": "firefly-walnut-dwpr-425988",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44086066380851,
+   "sampleSku": "DWPN-100818",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142142003,
+   "handle": "firefly-wine-dwpr-426006",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Maroon, Deep Maroon, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Firefly, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Sophisticated, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Wine",
+   "sampleVariantId": 44086067003443,
+   "sampleSku": "DWPN-100833",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143551027,
+   "handle": "flamboyant-copper-dwpr-426035",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Copper, display_variant, Dot, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Hallway, Honey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Orange, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086069100595,
+   "sampleSku": "DWPN-100862",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143485491,
+   "handle": "flamboyant-dove-dwpr-426034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Dove, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Sophisticated, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068969523,
+   "sampleSku": "DWPN-100861",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143190579,
+   "handle": "flamboyant-peacock-dwpr-426032",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Basketweave, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Flamboyant, Geometric, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pattern, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Teal, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068412467,
+   "sampleSku": "DWPN-100859",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142928435,
+   "handle": "flamboyant-sage-dwpr-426029",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Basketweave, Bedroom, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cottagecore, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Green, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Olive Green, Ostrich, Pale Green, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Serene, Showroom Line, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068052019,
+   "sampleSku": "DWPN-100856",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143354419,
+   "handle": "flamboyant-sand-dwpr-426033",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Basketweave, Bathroom, Bedroom, Beige, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Taupe, Teal, Textured, Traditional, Transitional, Turquoise, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086068707379,
+   "sampleSku": "DWPN-100860",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142895667,
+   "handle": "flamboyant-silver-dwpr-426028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bathroom, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Hospitality, IMO Marine Grade, Indigo, Insects, Leather, Light Blue, Light Gray, Living Room, Luxury, Navy Blue, Needs-Price, NFPA 260 Compliant, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Steel Blue, Textured, Tile, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068019251,
+   "sampleSku": "DWPN-100855",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791142961203,
+   "handle": "flamboyant-slate-dwpr-426030",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068084787,
+   "sampleSku": "DWPN-100857",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143026739,
+   "handle": "flamboyant-smoke-dwpr-426031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Flamboyant, Geometric, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pattern, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Smoke, Sophisticated, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086068150323,
+   "sampleSku": "DWPN-100858",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497963626608,
+   "handle": "flavia-textile-wallpaper-twc-73404",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933607551088,
+   "sampleSku": "TWC-73404-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497963724912,
+   "handle": "flavia-textile-wallpaper-twc-73405",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933608403056,
+   "sampleSku": "TWC-73405-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497963921520,
+   "handle": "flavia-textile-wallpaper-twc-73406",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Khaki, Mustard, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Textured, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13933610270832,
+   "sampleSku": "TWC-73406-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964052592,
+   "handle": "flavia-textile-wallpaper-twc-73407",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 13933613056112,
+   "sampleSku": "TWC-73407-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964183664,
+   "handle": "flavia-textile-wallpaper-twc-73408",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Almond, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13933613973616,
+   "sampleSku": "TWC-73408-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964445808,
+   "handle": "flavia-textile-wallpaper-twc-73409",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Flavia Textile, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 13933615153264,
+   "sampleSku": "TWC-73409-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964642416,
+   "handle": "flavia-textile-wallpaper-twc-73410",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Fabric, Flavia Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933620396144,
+   "sampleSku": "TWC-73410-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964773488,
+   "handle": "flavia-textile-wallpaper-twc-73411",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Flavia Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Red, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13933621444720,
+   "sampleSku": "TWC-73411-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497964970096,
+   "handle": "flavia-textile-wallpaper-twc-73412",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Flavia Textile, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Polyester, Polyester Textile, Showroom Line, Taupe, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 13933623607408,
+   "sampleSku": "TWC-73412-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791143714867,
+   "handle": "fort-christian-linen-dwpr-426040",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort Christian, Hospitality, IMO Marine Grade, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Silver, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069264435,
+   "sampleSku": "DWPN-100867",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143878707,
+   "handle": "fort-christian-pewter-dwpr-426045",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Fort Christian, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Stone, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069428275,
+   "sampleSku": "DWPN-100872",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143780403,
+   "handle": "fort-christian-rose-dwpr-426042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dusty Rose, Embossed, Fabric, Farmhouse, Faux Leather, Floral, Fort Christian, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Peach, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Rose, Scandinavian, Serene, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069329971,
+   "sampleSku": "DWPN-100869",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143747635,
+   "handle": "fort-christian-sage-dwpr-426041",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort Christian, Gray, Green, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Scandinavian, Seafoam Green, Serene, Showroom Line, Silver, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069297203,
+   "sampleSku": "DWPN-100868",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143616563,
+   "handle": "fort-christian-sand-dwpr-426037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Fort Christian, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Oatmeal, Ostrich, Pale Brown, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086069166131,
+   "sampleSku": "DWPN-100864",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143682099,
+   "handle": "fort-christian-silver-dwpr-426039",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort Christian, Gray, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069231667,
+   "sampleSku": "DWPN-100866",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143583795,
+   "handle": "fort-christian-sky-dwpr-426036",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort Christian, Hospitality, IMO Marine Grade, Leather, Light Blue, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Sky, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069133363,
+   "sampleSku": "DWPN-100863",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143649331,
+   "handle": "fort-christian-slate-dwpr-426038",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort Christian, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Silver, Silver Grey, Slate, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069198899,
+   "sampleSku": "DWPN-100865",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143813171,
+   "handle": "fort-christian-smoke-dwpr-426043",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Fort Christian, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Silver, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069362739,
+   "sampleSku": "DWPN-100870",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144239155,
+   "handle": "fort-george-biscuit-dwpr-426054",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Biscuit, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort George, Grasscloth, Grasscloth Weave, Grayish Brown, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070149171,
+   "sampleSku": "DWPN-100881",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144140851,
+   "handle": "fort-george-dune-dwpr-426052",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Embossed, Fabric, Faux Leather, Fort George, Gold, Green, Hallway, Hospitality, IMO Marine Grade, Khaki, Leather, Light Goldenrod Yellow, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Olive, Organic, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086069690419,
+   "sampleSku": "DWPN-100879",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144009779,
+   "handle": "fort-george-ivory-dwpr-426048",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort George, Green, Hospitality, IMO Marine Grade, Ivory, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Off-white, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Sea Green, Seafoam Green, Serene, Showroom Line, Silver, Steel, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069559347,
+   "sampleSku": "DWPN-100875",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144042547,
+   "handle": "fort-george-linen-dwpr-426049",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort George, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Oatmeal, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086069592115,
+   "sampleSku": "DWPN-100876",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144108083,
+   "handle": "fort-george-pearl-dwpr-426051",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Fort George, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Ostrich, Pearl, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Silver Gray, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069657651,
+   "sampleSku": "DWPN-100878",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143977011,
+   "handle": "fort-george-sand-dwpr-426047",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Fort George, Grasscloth, Grasscloth Weave, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086069526579,
+   "sampleSku": "DWPN-100874",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143944243,
+   "handle": "fort-george-slate-dwpr-426046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fort George, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Medium Gray, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069493811,
+   "sampleSku": "DWPN-100873",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144075315,
+   "handle": "fort-george-smoke-dwpr-426050",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cornflower Blue, display_variant, Embossed, Fabric, Faux Leather, Fort George, Gray, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Smoke, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086069624883,
+   "sampleSku": "DWPN-100877",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791143845939,
+   "handle": "fort-christian-dove-dwpr-426044",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Medium Gray, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Silver, Solid, Sustainable, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, White, Wide Width, Woven",
+   "sampleVariantId": 44086069395507,
+   "sampleSku": "DWPN-100871",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497965396080,
+   "handle": "fortuna-textile-wallpaper-twd-73414",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Eggshell, Fabric, Fortuna Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933624852592,
+   "sampleSku": "TWD-73414-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497965559920,
+   "handle": "fortuna-textile-wallpaper-twd-73415",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Eggshell, Fabric, Fortuna Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 13933627736176,
+   "sampleSku": "TWD-73415-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497965723760,
+   "handle": "fortuna-textile-wallpaper-twd-73416",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Fortuna Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933631471728,
+   "sampleSku": "TWD-73416-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497965822064,
+   "handle": "fortuna-textile-wallpaper-twd-73417",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Fortuna Textile, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933632225392,
+   "sampleSku": "TWD-73417-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497965953136,
+   "handle": "fortuna-textile-wallpaper-twd-73418",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Fabric, Fortuna Textile, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13933632454768,
+   "sampleSku": "TWD-73418-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497966248048,
+   "handle": "fortuna-textile-wallpaper-twd-73420",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13933636321392,
+   "sampleSku": "TWD-73420-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497966411888,
+   "handle": "fortuna-textile-wallpaper-twd-73421",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13933637501040,
+   "sampleSku": "TWD-73421-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497966575728,
+   "handle": "fortuna-textile-wallpaper-twd-73422",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "35%poly-65visc, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13933640417392,
+   "sampleSku": "TWD-73422-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791144173619,
+   "handle": "fort-george-wheat-dwpr-426053",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Blue, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Blue, Light Gray, Living Room, Modern, Modern Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Silver, Sustainable, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086069723187,
+   "sampleSku": "DWPN-100880",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497966772336,
+   "handle": "franco-textile-wallpaper-twf-73423",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20cot70visc10polyamid, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering",
+   "sampleVariantId": 13933641695344,
+   "sampleSku": "TWF-73423-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497966903408,
+   "handle": "franco-textile-wallpaper-twf-73424",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20cot70visc10polyamid, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13933644513392,
+   "sampleSku": "TWF-73424-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497967034480,
+   "handle": "franco-textile-wallpaper-twf-73425",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20cot70visc10polyamid, Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Vanilla, Wallcovering, White",
+   "sampleVariantId": 13933645004912,
+   "sampleSku": "TWF-73425-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497967198320,
+   "handle": "franco-textile-wallpaper-twf-73426",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20cot70visc10polyamid, Architectural, Commercial, Commercial Wallcovering, Contemporary, display_variant, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Stripe, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13933647102064,
+   "sampleSku": "TWF-73426-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500582477936,
+   "handle": "fukaura-durable-vinyl-xrm-34126",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966206369904,
+   "sampleSku": "XRM-34126-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500583034992,
+   "handle": "fukaura-durable-vinyl-xrm-34128",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966212530288,
+   "sampleSku": "XRM-34128-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500583297136,
+   "handle": "fukaura-durable-vinyl-xrm-34129",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13966217609328,
+   "sampleSku": "XRM-34129-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500583395440,
+   "handle": "fukaura-durable-vinyl-xrm-34130",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966220427376,
+   "sampleSku": "XRM-34130-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500583854192,
+   "handle": "fukaura-durable-vinyl-xrm-34131",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Green, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sage, Showroom Line, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13966221017200,
+   "sampleSku": "XRM-34131-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500584181872,
+   "handle": "fukaura-durable-vinyl-xrm-34133",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966226882672,
+   "sampleSku": "XRM-34133-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500584411248,
+   "handle": "fukaura-durable-vinyl-xrm-34134",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966232813680,
+   "sampleSku": "XRM-34134-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500584706160,
+   "handle": "fukaura-durable-vinyl-xrm-34135",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966234419312,
+   "sampleSku": "XRM-34135-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500585001072,
+   "handle": "fukaura-durable-vinyl-xrm-34136",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966236811376,
+   "sampleSku": "XRM-34136-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500585263216,
+   "handle": "fukaura-durable-vinyl-xrm-34137",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13966242119792,
+   "sampleSku": "XRM-34137-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502356570224,
+   "handle": "georgio-suede-prt-74213",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Solid, Suede, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987265052784,
+   "sampleSku": "PRT-74213-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502356766832,
+   "handle": "georgio-suede-prt-74214",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Faux, Faux Suede, Mushroom, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Solid, Suede, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987273900144,
+   "sampleSku": "PRT-74214-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502356865136,
+   "handle": "georgio-suede-prt-74215",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Suede, Tan, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987279962224,
+   "sampleSku": "PRT-74215-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502357389424,
+   "handle": "georgio-suede-prt-74218",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Suede, Textured, Traditional, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987285074032,
+   "sampleSku": "PRT-74218-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502357848176,
+   "handle": "georgio-suede-prt-74220",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Suede, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987294052464,
+   "sampleSku": "PRT-74220-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502357979248,
+   "handle": "georgio-suede-prt-74221",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Faux, Faux Suede, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Solid, Suede, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987294707824,
+   "sampleSku": "PRT-74221-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502358241392,
+   "handle": "georgio-suede-prt-74222",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Faux, Faux Suede, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Suede, Textured, VINYL/FAUX LEATHER, Wallcovering",
+   "sampleVariantId": 13987295985776,
+   "sampleSku": "PRT-74222-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876522547,
+   "handle": "dwjj-40630-giorgio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bella Italiano, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Giorgio, Giorgio Mural Naturals, Gray, Light Gray, Mural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl, Wallcovering, White",
+   "sampleVariantId": 41180288974899,
+   "sampleSku": "DWJJ-40630-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876555315,
+   "handle": "dwjj-40640-giorgio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Giorgio, Giorgio Mural Naturals, Grasscloth, Gray, Light Gray, Minimalist, Mural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 41180289007667,
+   "sampleSku": "DWJJ-40640-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499329822832,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49249",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Stripe, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13950556864624,
+   "sampleSku": "XUX-49249-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499329953904,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49250",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Light Brown, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Stripe, Textured, Wallcovering",
+   "sampleVariantId": 13950565187696,
+   "sampleSku": "XUX-49250-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499330150512,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49251",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Mfr-Image-Refreshed, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13950568071280,
+   "sampleSku": "XUX-49251-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499330314352,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49252",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13950568562800,
+   "sampleSku": "XUX-49252-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499331395696,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49255",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Gray, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13950585012336,
+   "sampleSku": "XUX-49255-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499331657840,
+   "handle": "gloucester-performance-textile-wallcovering-xux-49256",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Polyester, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Mfr-Image-Refreshed, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13950585929840,
+   "sampleSku": "XUX-49256-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791144501299,
+   "handle": "glowworm-bay-linen-dwpr-426076",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Glowworm Bay, Hospitality, IMO Marine Grade, Insects, Light Beige, Linen, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Silk, Silk Texture, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086070411315,
+   "sampleSku": "DWPN-100889",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144468531,
+   "handle": "glowworm-bay-sand-dwpr-426069",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Glowworm Bay, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Silk, Silk Texture, Silver, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070378547,
+   "sampleSku": "DWPN-100888",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144534067,
+   "handle": "glowworm-bay-slate-dwpr-426078",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Glowworm Bay, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Off White, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086070444083,
+   "sampleSku": "DWPN-100890",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1502310629488,
+   "handle": "grafata-prt-74010",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Gray, Leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 13986554970224,
+   "sampleSku": "PRT-74010-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502310858864,
+   "handle": "grafata-prt-74011",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Ecru, Leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 13986557657200,
+   "sampleSku": "PRT-74011-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502311153776,
+   "handle": "grafata-prt-74012",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Botanical, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Green, Honey, Leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Textured, Wallcovering",
+   "sampleVariantId": 13986561949808,
+   "sampleSku": "PRT-74012-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502311317616,
+   "handle": "grafata-prt-74013",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 13986564309104,
+   "sampleSku": "PRT-74013-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502311514224,
+   "handle": "grafata-prt-74014",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Architectural, Blue, botanical, Class A Fire Rated, Commercial, Commercial Wallcovering, contemporary, display_variant, Fabric, Garnet, Gray, leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Teal, textured, Wallcovering",
+   "sampleVariantId": 13986566799472,
+   "sampleSku": "PRT-74014-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502311710832,
+   "handle": "grafata-prt-74015",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Leaf, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986568601712,
+   "sampleSku": "PRT-74015-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500967600240,
+   "handle": "grand-dame-by-pr-rwy-55146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Eggshell, Fabric, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Solid, Texture, Textured, Traditional, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970622775408,
+   "sampleSku": "RWY-55146-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500967993456,
+   "handle": "grand-dame-by-pr-rwy-55147",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Solid, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970631852144,
+   "sampleSku": "RWY-55147-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500968779888,
+   "handle": "grand-dame-by-pr-rwy-55148",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Ecru, Light Brown, material-group-natural-fiber, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970637193328,
+   "sampleSku": "RWY-55148-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500969566320,
+   "handle": "grand-dame-by-pr-rwy-55150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Eggshell, Grand Dame by PR, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Traditional, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970650857584,
+   "sampleSku": "RWY-55150-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500969828464,
+   "handle": "grand-dame-by-pr-rwy-55151",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Eggshell, Grand Dame by PR, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970654593136,
+   "sampleSku": "RWY-55151-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500970156144,
+   "handle": "grand-dame-by-pr-rwy-55152",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Grand Dame by PR, Light Gray, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970659016816,
+   "sampleSku": "RWY-55152-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500970483824,
+   "handle": "grand-dame-by-pr-rwy-55153",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bone, Coastal, Commercial, display_variant, Grand Dame by PR, Light Blue, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970668454000,
+   "sampleSku": "RWY-55153-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500970811504,
+   "handle": "grand-dame-by-pr-rwy-55154",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Architectural, Blue, Commercial, contemporary, display_variant, Eggshell, Gray, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Teal, Texture, textured, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970671468656,
+   "sampleSku": "RWY-55154-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500971303024,
+   "handle": "grand-dame-by-pr-rwy-55155",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Charcoal, Commercial, Contemporary, Dark Gray, display_variant, Eggshell, Gray, material-group-metallic-foil, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970677170288,
+   "sampleSku": "RWY-55155-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500971597936,
+   "handle": "grand-dame-by-pr-rwy-55156",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Commercial, Cream, display_variant, Eggshell, Fretwork, Geometric, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970678743152,
+   "sampleSku": "RWY-55156-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500972384368,
+   "handle": "grand-dame-by-pr-rwy-55158",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Commercial, Cream, display_variant, Eggshell, Fretwork, Geometric, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970690506864,
+   "sampleSku": "RWY-55158-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500972843120,
+   "handle": "grand-dame-by-pr-rwy-55159",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Commercial, display_variant, Geometric, Gray, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970695422064,
+   "sampleSku": "RWY-55159-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500973236336,
+   "handle": "grand-dame-by-pr-rwy-55160",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Blue, Commercial, display_variant, Geometric, Gray, Linen, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970697420912,
+   "sampleSku": "RWY-55160-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500975038576,
+   "handle": "grand-dame-by-pr-rwy-55164",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Commercial, display_variant, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Tan, Texture, Textured, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970722586736,
+   "sampleSku": "RWY-55164-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500975497328,
+   "handle": "grand-dame-by-pr-rwy-55165",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Gray, material-group-textured, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970723471472,
+   "sampleSku": "RWY-55165-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500976775280,
+   "handle": "grand-dame-by-pr-rwy-55167",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Contemporary, display_variant, Gray, material-group-textured, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970741559408,
+   "sampleSku": "RWY-55167-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500977660016,
+   "handle": "grand-dame-by-pr-rwy-55169",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970758238320,
+   "sampleSku": "RWY-55169-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500978020464,
+   "handle": "grand-dame-by-pr-rwy-55170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, Contemporary, Cream, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970764234864,
+   "sampleSku": "RWY-55170-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500978511984,
+   "handle": "grand-dame-by-pr-rwy-55171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970768593008,
+   "sampleSku": "RWY-55171-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500979036272,
+   "handle": "grand-dame-by-pr-rwy-55172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Cream, display_variant, Ecru, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970773672048,
+   "sampleSku": "RWY-55172-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500981002352,
+   "handle": "grand-dame-by-pr-rwy-55177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, display_variant, Eggshell, Geometric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970805293168,
+   "sampleSku": "RWY-55177-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500981362800,
+   "handle": "grand-dame-by-pr-rwy-55178",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Commercial, display_variant, Geometric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Teal, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970811256944,
+   "sampleSku": "RWY-55178-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500981756016,
+   "handle": "grand-dame-by-pr-rwy-55179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Blue, Commercial, Denim, display_variant, Eggshell, Geometric, Light Blue, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Smoke, Steel, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970817024112,
+   "sampleSku": "RWY-55179-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500982050928,
+   "handle": "grand-dame-by-pr-rwy-55180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Botanical, Commercial, Cream, display_variant, Leaf, material-group-non-woven, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Textured, Traditional, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970819645552,
+   "sampleSku": "RWY-55180-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500982411376,
+   "handle": "grand-dame-by-pr-rwy-55181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, Contemporary, Cream, display_variant, Eggshell, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970829836400,
+   "sampleSku": "RWY-55181-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500982804592,
+   "handle": "grand-dame-by-pr-rwy-55182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Botanical, Commercial, display_variant, Gray, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970833932400,
+   "sampleSku": "RWY-55182-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500985000048,
+   "handle": "grand-dame-by-pr-rwy-55186",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Nickel, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970854740080,
+   "sampleSku": "RWY-55186-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500985557104,
+   "handle": "grand-dame-by-pr-rwy-55187",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Commercial, Contemporary, Cream, display_variant, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970865422448,
+   "sampleSku": "RWY-55187-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500986376304,
+   "handle": "grand-dame-by-pr-rwy-55189",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Alabaster, Architectural, Bone, Commercial, Contemporary, Cream, display_variant, Gray, Light Gray, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Texture, Textured, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970872565872,
+   "sampleSku": "RWY-55189-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500987162736,
+   "handle": "grand-dame-by-pr-rwy-55191",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Commercial, Cream, display_variant, Ecru, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Traditional, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970886721648,
+   "sampleSku": "RWY-55191-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500987523184,
+   "handle": "grand-dame-by-pr-rwy-55192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Botanical, Commercial, Cream, display_variant, Leaf, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Tan, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970887770224,
+   "sampleSku": "RWY-55192-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500987785328,
+   "handle": "grand-dame-by-pr-rwy-55193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Blue, Botanical, Commercial, display_variant, Eggshell, Leaf, Moss, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Traditional, Usually In Stock, Wallcovering",
+   "sampleVariantId": 13970893799536,
+   "sampleSku": "RWY-55193-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500988407920,
+   "handle": "grand-dame-by-pr-rwy-55195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Botanical, Commercial, Cream, display_variant, Leaf, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Pink, Prints, Salmon, Showroom Line, Traditional, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970902777968,
+   "sampleSku": "RWY-55195-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500990144624,
+   "handle": "grand-dame-by-pr-rwy-55199",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Botanical, Celery, Commercial, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Silver, Usually In Stock, Wallcovering, White",
+   "sampleVariantId": 13970923585648,
+   "sampleSku": "RWY-55199-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500990406768,
+   "handle": "grand-dame-by-pr-rwy-55200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Botanical, Commercial, Contemporary, display_variant, Eggshell, Grand Dame by PR, Gray, Needs-Image, Needs-Price, Needs-Width, Off-White, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Prints, Showroom Line, Wallcovering",
+   "sampleVariantId": 13970928140400,
+   "sampleSku": "RWY-55200-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500991127664,
+   "handle": "grand-dame-by-pr-rwy-55202",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Botanical, Commercial, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Prints, Pine, Prints, Showroom Line, Smoke, Teal, Wallcovering",
+   "sampleVariantId": 13970937577584,
+   "sampleSku": "RWY-55202-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791144370227,
+   "handle": "grand-turk-linen-azure-dwpr-426058",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Denim, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Grand Turk Linen, Hallway, Hospitality, IMO Marine Grade, Insects, Light Gray, Light Grey, Linen, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070280243,
+   "sampleSku": "DWPN-100885",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144402995,
+   "handle": "grand-turk-linen-charcoal-dwpr-426059",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Grand Turk Linen, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Slate Gray, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070313011,
+   "sampleSku": "DWPN-100886",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144304691,
+   "handle": "grand-turk-linen-gold-dwpr-426056",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Gold, Grand Turk Linen, Hospitality, IMO Marine Grade, Light Beige, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Silk, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44086070214707,
+   "sampleSku": "DWPN-100883",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144435763,
+   "handle": "grand-turk-linen-sand-dwpr-426060",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grand Turk Linen, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070345779,
+   "sampleSku": "DWPN-100887",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144271923,
+   "handle": "grand-turk-linen-slate-dwpr-426055",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Grand Turk Linen, Gray, Grey, Hospitality, IMO Marine Grade, Light Gray, Linen, Living Room, Luxury, Medium Gray, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070181939,
+   "sampleSku": "DWPN-100882",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144337459,
+   "handle": "grand-turk-linen-smoke-dwpr-426057",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Grand Turk Linen, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Light Gray, Linen, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Scandinavian, Serene, Showroom Line, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070247475,
+   "sampleSku": "DWPN-100884",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7716427399219,
+   "handle": "mali-grasscloth-indigo-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Geometric, global, grasscloth, Greige, Hallway, hemp, indigo, lee-jofa, Living Room, mali, Needs-Image, Needs-Price, Needs-Width, Organic, pbfc-3529-50, print, Rustic, Showroom Line, Slate Blue, wallcovering",
+   "sampleVariantId": 43769207423027,
+   "sampleSku": "DWWC-508400-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7717102485555,
+   "handle": "grasscloth-0-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, barclay-butera, barclay-butera-plains, Basketweave, Bedroom, Beige, Bone, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, display_variant, grasscloth, Grasscloth Weave, Gray, Hallway, Living Room, natural, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-White, Organic, Organic Modern, Rustic, Scandinavian, Showroom Line, sisal, solid, Tan, Texture, textured, wallcovering, wbg5142-wt-0, Willow, winfield-thybony",
+   "sampleVariantId": 43770676346931,
+   "sampleSku": "DWWC-508950-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500056649840,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Capiz, Class A Fire Rated, Commercial, Contemporary, display_variant, Dove Gray, Fabric, Gray, LEED, Leed Walls, Mfr-Image-Refreshed, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Silver, Specialty Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13959635927152,
+   "sampleSku": "XWF-52194-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500057108592,
+   "handle": "greenwich-capiz-shell-woven-textile-walls-xwf-52195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Capiz, Commercial, Contemporary, display_variant, Grasscloth, Gray, LEED, Leed Walls, Mfr-Image-Refreshed, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Specialty Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13959636615280,
+   "sampleSku": "XWF-52195-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791144566835,
+   "handle": "guana-island-slate-dwpr-426121",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Guana Island, Hallway, Hospitality, IMO Marine Grade, Industrial, Leather, Light Gray, Living Room, Luxury, Modern, Moody, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Purple, Showroom Line, Silver, Slate, Slate Gray, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070509619,
+   "sampleSku": "DWPN-100891",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499903721584,
+   "handle": "gulf-breeze-stain-repellent-real-wool-walls-xwt-53357",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gulf Breeze Stain Repellent Real Wool, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Wool",
+   "sampleVariantId": 13957271224432,
+   "sampleSku": "XWT-53357-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791145680947,
+   "handle": "half-moon-sand-dwpr-426156",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Beige, display_variant, Farmhouse, FR Additives Free, Galleria, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086071722035,
+   "sampleSku": "DWPN-100924",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145713715,
+   "handle": "half-moon-linen-dwpr-426157",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Beige, display_variant, Farmhouse, FR Additives Free, Galleria, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086071754803,
+   "sampleSku": "DWPN-100925",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145746483,
+   "handle": "half-moon-terracotta-dwpr-426158",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contract Grade, Cool Grays, Dining Room, display_variant, Eggshell, Farmhouse, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Non-woven, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Russet, Rustic, Showroom Line, Solid, Sustainable, Tan, Tawny, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086071787571,
+   "sampleSku": "DWPN-100926",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145779251,
+   "handle": "half-moon-slate-dwpr-426159",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, Dark Tones, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Medium Gray, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086071820339,
+   "sampleSku": "DWPN-100927",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145812019,
+   "handle": "half-moon-peacock-dwpr-426160",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Classic, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Teal, Deep Teal, display_variant, FR Additives Free, Galleria, Grayish Teal, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Juniper, LEED Compatible, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Teal, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086071853107,
+   "sampleSku": "DWPN-100928",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145844787,
+   "handle": "half-moon-goldenrod-dwpr-426161",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Goldenrod, Dining Room, display_variant, Eggshell, Fabric, Farmhouse, FR Additives Free, Galleria, Gold, Golden Brown, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Linen, Linen Texture, Living Room, Mustard, Needs-Price, Neutral Tones, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven, Yellow",
+   "sampleVariantId": 44086071885875,
+   "sampleSku": "DWPN-100929",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145975859,
+   "handle": "half-moon-smoke-dwpr-426162",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate, Slate Gray, Solid, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086072115251,
+   "sampleSku": "DWPN-100930",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146139699,
+   "handle": "half-moon-silver-dwpr-426163",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086072377395,
+   "sampleSku": "DWPN-100931",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146303539,
+   "handle": "half-moon-mist-dwpr-426164",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Pale Green, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086072639539,
+   "sampleSku": "DWPN-100932",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146434611,
+   "handle": "half-moon-dove-dwpr-426165",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Eggshell, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Sustainable, Taupe, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086072868915,
+   "sampleSku": "DWPN-100933",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146565683,
+   "handle": "half-moon-ash-dwpr-426166",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Linen, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate Blue, Solid, Steel, Steel Gray, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086073131059,
+   "sampleSku": "DWPN-100934",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146729523,
+   "handle": "half-moon-pewter-dwpr-426167",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Earth Tones, FR Additives Free, Galleria, Grasscloth, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Medium Brown, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Sustainable, Taupe, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086073491507,
+   "sampleSku": "DWPN-100935",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791146893363,
+   "handle": "half-moon-fog-dwpr-426168",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Earth Tones, Eggshell, FR Additives Free, Galleria, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Light Taupe, Linen, Linen Texture, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Stone, Sustainable, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44086073786419,
+   "sampleSku": "DWPN-100936",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148007475,
+   "handle": "harbour-island-peacock-dwpr-426176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Classic, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Teal, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Grayish Teal, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Lattice, LEED Compatible, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Sea Green, Seafoam Green, Serene, Showroom Line, Silicone Surface, Stripe, Sustainable, Teal, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086075785267,
+   "sampleSku": "DWPN-100944",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148138547,
+   "handle": "harbour-island-slate-dwpr-426177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Grasscloth Weave, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Lattice, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, Private Label, PVC-Free, Showroom Line, Silicone Surface, Silver, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Virtual, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086076080179,
+   "sampleSku": "DWPN-100945",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148466227,
+   "handle": "havana-azure-dwpr-426179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bleach Cleanable, Blue, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Denim Blue, Dark Teal, Denim Blue, display_variant, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086076604467,
+   "sampleSku": "DWPN-100947",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148597299,
+   "handle": "havana-silver-dwpr-426180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Taupe, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086076866611,
+   "sampleSku": "DWPN-100948",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148761139,
+   "handle": "havana-linen-dwpr-426181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, display_variant, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Oatmeal, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Scandinavian, Serene, Showroom Line, Solid, Sustainable, Tan, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Yellow",
+   "sampleVariantId": 44086077161523,
+   "sampleSku": "DWPN-100949",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791148892211,
+   "handle": "havana-dune-dwpr-426182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Earth Tones, FR Additives Free, Galleria, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086077423667,
+   "sampleSku": "DWPN-100950",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791149056051,
+   "handle": "havana-slate-dwpr-426183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, Dark Grey, Dark Tones, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Slate, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086077685811,
+   "sampleSku": "DWPN-100951",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791149350963,
+   "handle": "havana-terracotta-dwpr-426185",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Earth Tones, Eggshell, Farmhouse, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Red, Rustic, Showroom Line, Solid, Sustainable, Terracotta, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Wood Grain",
+   "sampleVariantId": 44086078210099,
+   "sampleSku": "DWPN-100953",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791149514803,
+   "handle": "havana-mist-dwpr-426186",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, display_variant, FR Additives Free, Galleria, Gray, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086078472243,
+   "sampleSku": "DWPN-100954",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791149645875,
+   "handle": "havana-goldenrod-dwpr-426187",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, FR Additives Free, Galleria, Gold, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Natural Greens, Needs-Price, NFPA 260 Compliant, Pale Yellow, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wheat, Wide Width, Yellow",
+   "sampleVariantId": 44086078734387,
+   "sampleSku": "DWPN-100955",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791149809715,
+   "handle": "havana-toffee-dwpr-426188",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Farmhouse, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Pale Brown, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Golds, Wet/Solvent Cleanable, Wide Width, Wood Grain",
+   "sampleVariantId": 44086078996531,
+   "sampleSku": "DWPN-100956",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791150006323,
+   "handle": "havana-sage-dwpr-426189",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Biophilic, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Olive Green, display_variant, Farmhouse, FR Additives Free, Galleria, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Natural Greens, Needs-Price, NFPA 260 Compliant, Olive Green, Organic Modern, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sage Green, Serene, Showroom Line, Slate, Solid, Stripe, Sustainable, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086079356979,
+   "sampleSku": "DWPN-100957",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791150301235,
+   "handle": "havana-sky-dwpr-426190",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bathroom, Bedroom, Bleach Cleanable, Blue, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, display_variant, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Blue, Minimalist, Needs-Price, NFPA 260 Compliant, Pale Blue, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Scandinavian, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086079717427,
+   "sampleSku": "DWPN-100958",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791150563379,
+   "handle": "havana-forest-dwpr-426191",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Eggshell, FR Additives Free, Galleria, Grayish Teal, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Grey, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sage, Sea Green, Seafoam Green, Serene, Showroom Line, Solid, Sustainable, Teal, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086080110643,
+   "sampleSku": "DWPN-100959",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791150858291,
+   "handle": "havana-smoke-dwpr-426192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Ash, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086080503859,
+   "sampleSku": "DWPN-100960",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791151153203,
+   "handle": "havana-terra-cotta-dwpr-426193",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Farmhouse, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Orange, Organic Modern, Paper, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Pumpkin, Red, Rustic, Showroom Line, Solid, Sustainable, Terra Cotta, Terracotta, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Golds, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086080929843,
+   "sampleSku": "DWPN-100961",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791151448115,
+   "handle": "havana-dove-dwpr-426194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, Dark Grey, display_variant, FR Additives Free, Galleria, Graphite, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44086081323059,
+   "sampleSku": "DWPN-100962",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1496973574256,
+   "handle": "hang-seng-grass-prg-71097",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Bone, Brown, Class A Fire Rated, Commercial, Dining Room, display_variant, Fabric, Floral, Geometric, Grasscloth, Grasscloth Texture, Hang Seng Grass, Linen, Living Room, Madagascar, Madagascar Naturals, Natural, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Grasses Vol. 3, Scandinavian, Showroom Line, Tan, Traditional, Transitional, Wallcovering, Zagora",
+   "sampleVariantId": 13923402023024,
+   "sampleSku": "PRG-71097-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791147024435,
+   "handle": "harbour-island-charcoal-dwpr-426169",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Harbour Island, Hospitality, IMO Marine Grade, Leather, Light Gray, Linen Texture, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Silver, Sophisticated, Stripe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086074048563,
+   "sampleSku": "DWPN-100937",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147581491,
+   "handle": "harbour-island-espresso-dwpr-426173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Faux Leather, Gold, Grasscloth, Hallway, Harbour Island, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Stripe, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086075031603,
+   "sampleSku": "DWPN-100941",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147450419,
+   "handle": "harbour-island-moss-dwpr-426172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Khaki, Dark Olive Green, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Grasscloth, Grasscloth Weave, Green, Hallway, Harbour Island, Hospitality, IMO Marine Grade, Insects, Khaki, Leather, Living Room, Luxury, Moss, Needs-Price, NFPA 260 Compliant, Olive, Organic, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sage Green, Showroom Line, Stripe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086074769459,
+   "sampleSku": "DWPN-100940",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147319347,
+   "handle": "harbour-island-onyx-dwpr-426171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Red, display_variant, Embossed, Fabric, Faux Leather, Garnet, Harbour Island, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maroon, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Sophisticated, Stripe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086074540083,
+   "sampleSku": "DWPN-100939",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147155507,
+   "handle": "harbour-island-sage-dwpr-426170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Gold, Grasscloth, Grasscloth Weave, Green, Harbour Island, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Showroom Line, Sophisticated, Stripe, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086074245171,
+   "sampleSku": "DWPN-100938",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147843635,
+   "handle": "harbour-island-sapphire-dwpr-426175",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Grasscloth Weave, Gunmetal, Harbour Island, Hospitality, IMO Marine Grade, Leather, Light Gray, Linen Texture, Living Room, Luxury, Medium Gray, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Serene, Showroom Line, Stripe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086075523123,
+   "sampleSku": "DWPN-100943",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791147712563,
+   "handle": "harbour-island-terracotta-dwpr-426174",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Harbour Island, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Pumpkin, Rustic, Showroom Line, Sienna, Stripe, Terracotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086075293747,
+   "sampleSku": "DWPN-100942",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145287731,
+   "handle": "hawksbill-aegean-dwpr-426144",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Aegean, Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Green, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071296051,
+   "sampleSku": "DWPN-100912",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144828979,
+   "handle": "hawksbill-azure-dwpr-426131",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Gray, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070771763,
+   "sampleSku": "DWPN-100899",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145451571,
+   "handle": "hawksbill-baltic-dwpr-426149",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Baltic, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071459891,
+   "sampleSku": "DWPN-100917",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144730675,
+   "handle": "hawksbill-bordeaux-dwpr-426128",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Burgundy, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Oxblood, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070673459,
+   "sampleSku": "DWPN-100896",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145418803,
+   "handle": "hawksbill-cerulean-dwpr-426148",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Cerulean, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cornflower Blue, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071427123,
+   "sampleSku": "DWPN-100916",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144894515,
+   "handle": "hawksbill-cobalt-dwpr-426133",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Cobalt, Commercial, Contemporary, Contract Grade, Dark Denim Blue, Dark Slate Gray, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070870067,
+   "sampleSku": "DWPN-100901",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145320499,
+   "handle": "hawksbill-cornflower-dwpr-426145",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cornflower, display_variant, Embossed, Fabric, Faux Leather, Floral, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Slate Blue, Solid, Steel Blue, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071328819,
+   "sampleSku": "DWPN-100913",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145025587,
+   "handle": "hawksbill-driftwood-dwpr-426137",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Taupe, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071001139,
+   "sampleSku": "DWPN-100905",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145549875,
+   "handle": "hawksbill-dune-dwpr-426152",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086071558195,
+   "sampleSku": "DWPN-100920",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145189427,
+   "handle": "hawksbill-dusty-rose-dwpr-426141",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dusty Rose, Embossed, Fabric, Faux Leather, Fawn, Floral, Hawksbill, Hospitality, IMO Marine Grade, Leather, Light Peach, Light Tan, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Primary Suite, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071197747,
+   "sampleSku": "DWPN-100909",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144960051,
+   "handle": "hawksbill-forest-dwpr-426135",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Sea Green, display_variant, Embossed, Fabric, Faux Leather, Forest, Green, Hawksbill, Hospitality, Hunter Green, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sea Green, Seafoam Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070935603,
+   "sampleSku": "DWPN-100903",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145386035,
+   "handle": "hawksbill-greige-dwpr-426147",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Greige, Hawksbill, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071394355,
+   "sampleSku": "DWPN-100915",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144927283,
+   "handle": "hawksbill-ivory-dwpr-426134",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hawksbill, Hospitality, IMO Marine Grade, Ivory, Leather, Light Gray, Light Grey, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44086070902835,
+   "sampleSku": "DWPN-100902",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145254963,
+   "handle": "hawksbill-lagoon-dwpr-426143",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Aqua, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Lagoon, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Turquoise, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071263283,
+   "sampleSku": "DWPN-100911",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145058355,
+   "handle": "hawksbill-linen-dwpr-426138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Light Beige, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071033907,
+   "sampleSku": "DWPN-100906",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145484339,
+   "handle": "hawksbill-mist-dwpr-426150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Linen, Living Room, Luxury, Minimalist, Mist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071492659,
+   "sampleSku": "DWPN-100918",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145582643,
+   "handle": "hawksbill-mushroom-dwpr-426153",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Taupe, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071623731,
+   "sampleSku": "DWPN-100921",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145156659,
+   "handle": "hawksbill-ocean-dwpr-426140",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Navy, Dark Slate Blue, Denim, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Navy Blue, Needs-Price, NFPA 260 Compliant, Ocean, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Blue, Solid, Steel Blue, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071132211,
+   "sampleSku": "DWPN-100908",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145222195,
+   "handle": "hawksbill-peacock-dwpr-426142",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Turquoise, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071230515,
+   "sampleSku": "DWPN-100910",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145615411,
+   "handle": "hawksbill-pebble-dwpr-426154",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Ecru, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Pebble, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071656499,
+   "sampleSku": "DWPN-100922",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144632371,
+   "handle": "hawksbill-pewter-dwpr-426125",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070575155,
+   "sampleSku": "DWPN-100893",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144861747,
+   "handle": "hawksbill-sage-dwpr-426132",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Green, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Muted Green, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070804531,
+   "sampleSku": "DWPN-100900",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144599603,
+   "handle": "hawksbill-sand-dwpr-426124",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hawksbill, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070542387,
+   "sampleSku": "DWPN-100892",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145648179,
+   "handle": "hawksbill-shale-dwpr-426155",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Gray-brown, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Mocha, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Shale, Showroom Line, Solid, Sophisticated, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071689267,
+   "sampleSku": "DWPN-100923",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145091123,
+   "handle": "hawksbill-silver-dwpr-426139",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hawksbill, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Linen, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071066675,
+   "sampleSku": "DWPN-100907",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144665139,
+   "handle": "hawksbill-sky-dwpr-426126",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bathroom, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Leather, Light Blue, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Sky, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070607923,
+   "sampleSku": "DWPN-100894",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144992819,
+   "handle": "hawksbill-slate-dwpr-426136",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hawksbill, Hospitality, IMO Marine Grade, Industrial, Leather, Light Gray, Living Room, Luxury, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086070968371,
+   "sampleSku": "DWPN-100904",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145353267,
+   "handle": "hawksbill-smoke-dwpr-426146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Linen, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086071361587,
+   "sampleSku": "DWPN-100914",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144763443,
+   "handle": "hawksbill-terra-cotta-dwpr-426129",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Terra Cotta, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rosewood, Rust, Showroom Line, Solid, Terra Cotta, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070706227,
+   "sampleSku": "DWPN-100897",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144697907,
+   "handle": "hawksbill-terracotta-dwpr-426127",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Copper, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Terracotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070640691,
+   "sampleSku": "DWPN-100895",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791144796211,
+   "handle": "hawksbill-toffee-dwpr-426130",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Light Tan, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086070738995,
+   "sampleSku": "DWPN-100898",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791145517107,
+   "handle": "hawksbill-walnut-dwpr-426151",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Goldenrod, display_variant, Embossed, Fabric, Faux Leather, Golden Brown, Hawksbill, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086071525427,
+   "sampleSku": "DWPN-100919",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500577136752,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34106",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966142799984,
+   "sampleSku": "XRK-34106-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500577267824,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34107",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966144340080,
+   "sampleSku": "XRK-34107-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500577628272,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34108",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966148632688,
+   "sampleSku": "XRK-34108-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500577792112,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34109",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Herringbone, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966154793072,
+   "sampleSku": "XRK-34109-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500578087024,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34110",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Pink, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966156824688,
+   "sampleSku": "XRK-34110-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500578218096,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34111",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966159806576,
+   "sampleSku": "XRK-34111-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500578611312,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34112",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Gray, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966161182832,
+   "sampleSku": "XRK-34112-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500579102832,
+   "handle": "hiranai-bay-durable-vinyl-xrk-34114",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13966172094576,
+   "sampleSku": "XRK-34114-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500423716976,
+   "handle": "hiro-bay-durable-vinyl-xqb-33724",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Lattice, Light Beige, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Umber, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964389711984,
+   "sampleSku": "XQB-33724-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500423979120,
+   "handle": "hiro-bay-durable-vinyl-xqb-33725",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964393545840,
+   "sampleSku": "XQB-33725-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500424274032,
+   "handle": "hiro-bay-durable-vinyl-xqb-33726",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Umber, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13964394463344,
+   "sampleSku": "XQB-33726-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500424732784,
+   "handle": "hiro-bay-durable-vinyl-xqb-33727",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Mocha, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Wood",
+   "sampleVariantId": 13964395380848,
+   "sampleSku": "XQB-33727-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500425093232,
+   "handle": "hiro-bay-durable-vinyl-xqb-33728",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Lattice, Light Gray, Moss, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Wood",
+   "sampleVariantId": 13964402589808,
+   "sampleSku": "XQB-33728-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500426010736,
+   "handle": "hiro-bay-durable-vinyl-xqb-33729",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Beige, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Gold, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White, Wood",
+   "sampleVariantId": 13964411142256,
+   "sampleSku": "XQB-33729-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500432728176,
+   "handle": "hiro-bay-durable-vinyl-xqb-33730",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White, Wood",
+   "sampleVariantId": 13964486967408,
+   "sampleSku": "XQB-33730-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500433219696,
+   "handle": "hiro-bay-durable-vinyl-xqb-33731",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White, Wood",
+   "sampleVariantId": 13964488278128,
+   "sampleSku": "XQB-33731-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500433612912,
+   "handle": "hiro-bay-durable-vinyl-xqb-33732",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "30% Polyester, 70% Woodpulp, Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Polyester, Showroom Line, Smoke, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Wood, Woven",
+   "sampleVariantId": 13964493127792,
+   "sampleSku": "XQB-33732-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500433973360,
+   "handle": "hiro-bay-durable-vinyl-xqb-33733",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964497420400,
+   "sampleSku": "XQB-33733-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500434366576,
+   "handle": "hiro-bay-durable-vinyl-xqb-33734",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964502728816,
+   "sampleSku": "XQB-33734-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500434628720,
+   "handle": "hiro-bay-durable-vinyl-xqb-33735",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964505088112,
+   "sampleSku": "XQB-33735-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500434923632,
+   "handle": "hiro-bay-durable-vinyl-xqb-33736",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Solid, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964510036080,
+   "sampleSku": "XQB-33736-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500435251312,
+   "handle": "hiro-bay-durable-vinyl-xqb-33737",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964514099312,
+   "sampleSku": "XQB-33737-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500435480688,
+   "handle": "hiro-bay-durable-vinyl-xqb-33738",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Taupe, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964517507184,
+   "sampleSku": "XQB-33738-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496359600240,
+   "handle": "hollywood-abaca-grasscloth-book-book-201410",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Brown, Commercial, Contemporary, display_variant, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Living Room, Minimalist, Modern, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13914125533296,
+   "sampleSku": "Book-201410-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500575432816,
+   "handle": "honshu-durable-vinyl-xrj-34100",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Solid, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966119960688,
+   "sampleSku": "XRJ-34100-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500575694960,
+   "handle": "honshu-durable-vinyl-xrj-34101",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966124351600,
+   "sampleSku": "XRJ-34101-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500575891568,
+   "handle": "honshu-durable-vinyl-xrj-34102",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966126153840,
+   "sampleSku": "XRJ-34102-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500576874608,
+   "handle": "honshu-durable-vinyl-xrj-34105",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966140997744,
+   "sampleSku": "XRJ-34105-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500512387184,
+   "handle": "horito-bay-xrb-33926",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965333299312,
+   "sampleSku": "XRB-33926-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500512649328,
+   "handle": "horito-bay-xrb-33927",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Texture, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965342277744,
+   "sampleSku": "XRB-33927-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500513075312,
+   "handle": "horito-bay-xrb-33928",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Fabric, Mushroom, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13965343490160,
+   "sampleSku": "XRB-33928-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500513501296,
+   "handle": "horito-bay-xrb-33929",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gold, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965350207600,
+   "sampleSku": "XRB-33929-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500513960048,
+   "handle": "horito-bay-xrb-33930",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965355155568,
+   "sampleSku": "XRB-33930-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500514615408,
+   "handle": "horito-bay-xrb-33931",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965359513712,
+   "sampleSku": "XRB-33931-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500515565680,
+   "handle": "horito-bay-xrb-33933",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Teal, Texture, Textured, Vinyls, Wallcovering",
+   "sampleVariantId": 13965369213040,
+   "sampleSku": "XRB-33933-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500516647024,
+   "handle": "horito-bay-xrb-33935",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Texture, Textured, Vinyls, Wallcovering",
+   "sampleVariantId": 13965378453616,
+   "sampleSku": "XRB-33935-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500516876400,
+   "handle": "horito-bay-xrb-33936",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Texture, Textured, Traditional, Vinyls, Wallcovering",
+   "sampleVariantId": 13965382647920,
+   "sampleSku": "XRB-33936-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791151579187,
+   "handle": "iguana-cay-sapphire-dwpr-426195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, display_variant, Embossed, Fabric, Faux Leather, Hospitality, Iguana Cay, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44086081617971,
+   "sampleSku": "DWPN-100963",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500441903216,
+   "handle": "ikeda-durable-vinyl-xqf-33755",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13964589826160,
+   "sampleSku": "XQF-33755-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500442198128,
+   "handle": "ikeda-durable-vinyl-xqf-33756",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964592808048,
+   "sampleSku": "XQF-33756-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500442591344,
+   "handle": "ikeda-durable-vinyl-xqf-33757",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Taupe, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13964598083696,
+   "sampleSku": "XQF-33757-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500442886256,
+   "handle": "ikeda-durable-vinyl-xqf-33758",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964604211312,
+   "sampleSku": "XQF-33758-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500443181168,
+   "handle": "ikeda-durable-vinyl-xqf-33759",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Terracotta, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964607062128,
+   "sampleSku": "XQF-33759-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500443934832,
+   "handle": "ikeda-durable-vinyl-xqf-33761",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964613681264,
+   "sampleSku": "XQF-33761-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500579463280,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34115",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966174191728,
+   "sampleSku": "XRL-34115-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500580085872,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34117",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966177239152,
+   "sampleSku": "XRL-34117-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500580446320,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34118",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966184677488,
+   "sampleSku": "XRL-34118-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500580774000,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34119",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966188740720,
+   "sampleSku": "XRL-34119-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500581003376,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34120",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966190968944,
+   "sampleSku": "XRL-34120-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500581265520,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34121",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966192771184,
+   "sampleSku": "XRL-34121-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500581494896,
+   "handle": "imabetsu-canal-durable-vinyl-xrl-34122",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966194901104,
+   "sampleSku": "XRL-34122-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882874851379,
+   "handle": "dwjj-40180-isabela",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Charcoal, Commercial, display_variant, Ecru, Grasscloth, Grasscloth Texture, Gray, Isabela, Isabela Grasscloth Naturals, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 41180285993011,
+   "sampleSku": "DWJJ-40180-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500302442608,
+   "handle": "isabela-island-xor-33497",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963136663664,
+   "sampleSku": "XOR-33497-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500303622256,
+   "handle": "isabela-island-xor-33498",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13963149738096,
+   "sampleSku": "XOR-33498-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500304736368,
+   "handle": "isabela-island-xor-33499",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13963161272432,
+   "sampleSku": "XOR-33499-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500306866288,
+   "handle": "isabela-island-xor-33501",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, display_variant, Fabric, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963186012272,
+   "sampleSku": "XOR-33501-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500307652720,
+   "handle": "isabela-island-xor-33502",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13963200430192,
+   "sampleSku": "XOR-33502-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498299891824,
+   "handle": "italiano-textile-wallpaper-fbk-43500",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Pink, Polyester, Purple, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935892103280,
+   "sampleSku": "FBK-43500-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498300481648,
+   "handle": "italiano-textile-wallpaper-fbk-43502",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Traditional, Wallcovering, Wheat",
+   "sampleVariantId": 13935893151856,
+   "sampleSku": "FBK-43502-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498300711024,
+   "handle": "italiano-textile-wallpaper-fbk-43503",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935893610608,
+   "sampleSku": "FBK-43503-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498300907632,
+   "handle": "italiano-textile-wallpaper-fbk-43504",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13935894495344,
+   "sampleSku": "FBK-43504-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498301268080,
+   "handle": "italiano-textile-wallpaper-fbk-43505",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Fawn, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13935897542768,
+   "sampleSku": "FBK-43505-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498301497456,
+   "handle": "italiano-textile-wallpaper-fbk-43506",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, European, European Import : Washable, Fabric, Lavender, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Pink, Polyester, Purple, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935898525808,
+   "sampleSku": "FBK-43506-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498301661296,
+   "handle": "italiano-textile-wallpaper-fbk-43507",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Red, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935899836528,
+   "sampleSku": "FBK-43507-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498301923440,
+   "handle": "italiano-textile-wallpaper-fbk-43508",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935900229744,
+   "sampleSku": "FBK-43508-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498302152816,
+   "handle": "italiano-textile-wallpaper-fbk-43509",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Ash, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935900557424,
+   "sampleSku": "FBK-43509-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498302513264,
+   "handle": "italiano-textile-wallpaper-fbk-43510",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Steel, Textured, Wallcovering",
+   "sampleVariantId": 13935901343856,
+   "sampleSku": "FBK-43510-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498302840944,
+   "handle": "italiano-textile-wallpaper-fbk-43511",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935906324592,
+   "sampleSku": "FBK-43511-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498303332464,
+   "handle": "italiano-textile-wallpaper-fbk-43513",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gold, Green, Naturals, Needs-Image, Needs-Price, Needs-Width, Olive, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering, Walnut",
+   "sampleVariantId": 13935907143792,
+   "sampleSku": "FBK-43513-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498303660144,
+   "handle": "italiano-textile-wallpaper-fbk-43514",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Wallcovering",
+   "sampleVariantId": 13935907504240,
+   "sampleSku": "FBK-43514-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498303823984,
+   "handle": "italiano-textile-wallpaper-fbk-43515",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Purple, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935910584432,
+   "sampleSku": "FBK-43515-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498304413808,
+   "handle": "italiano-textile-wallpaper-fbk-43517",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935913336944,
+   "sampleSku": "FBK-43517-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498304643184,
+   "handle": "italiano-textile-wallpaper-fbk-43518",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935915040880,
+   "sampleSku": "FBK-43518-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498304938096,
+   "handle": "italiano-textile-wallpaper-fbk-43519",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Slate Blue, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935917432944,
+   "sampleSku": "FBK-43519-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498305265776,
+   "handle": "italiano-textile-wallpaper-fbk-43520",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935918383216,
+   "sampleSku": "FBK-43520-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498305495152,
+   "handle": "italiano-textile-wallpaper-fbk-43521",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, European, European Import : Washable, Fabric, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Pearl, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering, White",
+   "sampleVariantId": 13935918809200,
+   "sampleSku": "FBK-43521-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498305822832,
+   "handle": "italiano-textile-wallpaper-fbk-43522",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Gunmetal, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13935919431792,
+   "sampleSku": "FBK-43522-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498306117744,
+   "handle": "italiano-textile-wallpaper-fbk-43523",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Emerald, European, European Import : Washable, Fabric, Green, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Wallcovering",
+   "sampleVariantId": 13935920971888,
+   "sampleSku": "FBK-43523-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498306314352,
+   "handle": "italiano-textile-wallpaper-fbk-43524",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935923757168,
+   "sampleSku": "FBK-43524-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498306674800,
+   "handle": "italiano-textile-wallpaper-fbk-43525",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Teal, Textured, Wallcovering",
+   "sampleVariantId": 13935924346992,
+   "sampleSku": "FBK-43525-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498306936944,
+   "handle": "italiano-textile-wallpaper-fbk-43526",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, European, European Import : Washable, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13935926444144,
+   "sampleSku": "FBK-43526-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500507635824,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33914",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Gray, Lemon, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13965277692016,
+   "sampleSku": "XRA-33914-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500508029040,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33915",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965278380144,
+   "sampleSku": "XRA-33915-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500508389488,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33916",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965286834288,
+   "sampleSku": "XRA-33916-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500509208688,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33918",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965294895216,
+   "sampleSku": "XRA-33918-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500509700208,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33919",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965300465776,
+   "sampleSku": "XRA-33919-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500509962352,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33920",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965306495088,
+   "sampleSku": "XRA-33920-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500510978160,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33922",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965314556016,
+   "sampleSku": "XRA-33922-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500511404144,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33923",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965321896048,
+   "sampleSku": "XRA-33923-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500511764592,
+   "handle": "jilia-bay-durable-vertical-vinyl-xra-33924",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13965325533296,
+   "sampleSku": "XRA-33924-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1495925293168,
+   "handle": "johnny-s-jute-burlap-wall-paper-grs-38015",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, ASTM E84 Class A, Bedroom, Beige, Burlap, Class A Fire Rated, Coastal, Commercial, Dining Room, display_variant, Entryway, Fabric, Farmhouse, Grasscloth, Jute, Khaki, Kyoto Garden Natural Weaves, Living Room, Mahogany, Mink, Natural Cream Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering, Walnut, Woven",
+   "sampleVariantId": 13908973420656,
+   "sampleSku": "GRS-38015-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500774858864,
+   "handle": "juleard-durable-water-color-xls-34590",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Juleard Durable Water Color, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13968196632688,
+   "sampleSku": "XLS-34590-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500775186544,
+   "handle": "juleard-durable-water-color-xls-34592",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Gray, Juleard Durable Water Color, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tomato, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13968202629232,
+   "sampleSku": "XLS-34592-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500775776368,
+   "handle": "juleard-durable-water-color-xls-34594",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Juleard Durable Water Color, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Transitional, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13968211640432,
+   "sampleSku": "XLS-34594-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500776038512,
+   "handle": "juleard-durable-water-color-xls-34595",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Green, Juleard Durable Water Color, Light Beige, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13968214294640,
+   "sampleSku": "XLS-34595-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500776267888,
+   "handle": "juleard-durable-water-color-xls-34596",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Gray, Juleard Durable Water Color, Light Gray, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Powder Blue, Showroom Line, Stripe, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13968221241456,
+   "sampleSku": "XLS-34596-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500776530032,
+   "handle": "juleard-durable-water-color-xls-34597",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, Juleard Durable Water Color, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Powder Blue, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13968222650480,
+   "sampleSku": "XLS-34597-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500016541808,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53706",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Tan, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13959054753904,
+   "sampleSku": "XJE-53706-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500016869488,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53707",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959061536880,
+   "sampleSku": "XJE-53707-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500017197168,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53708",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959066157168,
+   "sampleSku": "XJE-53708-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500017885296,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53710",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Coastal, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, LEED, Leed Walls, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959077265520,
+   "sampleSku": "XJE-53710-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500018409584,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53711",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13959086702704,
+   "sampleSku": "XJE-53711-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500018901104,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53712",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Coastal, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Silver, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13959092076656,
+   "sampleSku": "XJE-53712-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500019196016,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53713",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Light Gray, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959097712752,
+   "sampleSku": "XJE-53713-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500019720304,
+   "handle": "juno-beach-stain-repellent-real-silk-slub-walls-xje-53714",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Silk Wallcovering, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White",
+   "sampleVariantId": 13959101448304,
+   "sampleSku": "XJE-53714-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226041907,
+   "handle": "kick-em-jenny-sage-dwpr-426247",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Olive, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Gold, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075381811,
+   "sampleSku": "DWPN-100964",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226074675,
+   "handle": "kick-em-jenny-walnut-dwpr-426248",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Tropical, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075414579,
+   "sampleSku": "DWPN-100965",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226107443,
+   "handle": "kick-em-jenny-peacock-dwpr-426249",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Green, Dark Teal, Deep Green, display_variant, FR Additives Free, Galleria, Global Inspired, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Midnight, Minimalist, Navy, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sophisticated, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075447347,
+   "sampleSku": "DWPN-100966",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226140211,
+   "handle": "kick-em-jenny-sand-dwpr-426250",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, White, Wide Width",
+   "sampleVariantId": 44090075480115,
+   "sampleSku": "DWPN-100967",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226172979,
+   "handle": "kick-em-jenny-cocoa-dwpr-426251",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Earth Tones, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Oatmeal, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075512883,
+   "sampleSku": "DWPN-100968",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226271283,
+   "handle": "kick-em-jenny-linen-dwpr-426253",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, display_variant, FR Additives Free, Galleria, Global Inspired, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Beige, Linen, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075611187,
+   "sampleSku": "DWPN-100970",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226304051,
+   "handle": "kick-em-jenny-espresso-dwpr-426254",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Earth Tones, FR Additives Free, Galleria, Global Inspired, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sophisticated, Sustainable, Taupe, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075643955,
+   "sampleSku": "DWPN-100971",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226402355,
+   "handle": "kick-em-jenny-moss-dwpr-426255",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Olive, Dark Tones, Deep Taupe, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Gold, Graphite, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Single Dominant Background Color Word, Solid, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075775027,
+   "sampleSku": "DWPN-100972",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226435123,
+   "handle": "kick-em-jenny-forest-dwpr-426256",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Biophilic, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Charcoal Grey, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Green, Dark Olive Green, Deep Forest Green, display_variant, FR Additives Free, Galleria, Global Inspired, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075807795,
+   "sampleSku": "DWPN-100973",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226467891,
+   "handle": "kick-em-jenny-pewter-dwpr-426257",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Taupe, display_variant, FR Additives Free, Galleria, Global Inspired, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075840563,
+   "sampleSku": "DWPN-100974",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226500659,
+   "handle": "kick-em-jenny-mahogany-dwpr-426258",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Dark Olive, display_variant, Earth Tones, Espresso, Faux Leather, FR Additives Free, Galleria, Global Inspired, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Luxe, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sophisticated, Sustainable, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075873331,
+   "sampleSku": "DWPN-100975",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226566195,
+   "handle": "kick-em-jenny-dune-dwpr-426259",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Earth Tones, Fabric-backed Vinyl, FR Additives Free, Galleria, Global Inspired, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Showroom Line, Solid, Sustainable, Tan, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090075938867,
+   "sampleSku": "DWPN-100976",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500770238576,
+   "handle": "karumai-canal-durable-vinyl-xlr-34573",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Grasscloth, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Transitional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968124575856,
+   "sampleSku": "XLR-34573-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500770500720,
+   "handle": "karumai-canal-durable-vinyl-xlr-34574",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968131555440,
+   "sampleSku": "XLR-34574-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500770926704,
+   "handle": "karumai-canal-durable-vinyl-xlr-34575",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968138338416,
+   "sampleSku": "XLR-34575-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500771549296,
+   "handle": "karumai-canal-durable-vinyl-xlr-34577",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Gray, display_variant, Fabric, Gray, Karumai Canal Durable Vinyl, Light Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968143482992,
+   "sampleSku": "XLR-34577-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500771876976,
+   "handle": "karumai-canal-durable-vinyl-xlr-34578",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Brown, Check, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Fabric, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968148004976,
+   "sampleSku": "XLR-34578-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500772204656,
+   "handle": "karumai-canal-durable-vinyl-xlr-34579",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Check, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Karumai Canal Durable Vinyl, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13968150954096,
+   "sampleSku": "XLR-34579-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499994914928,
+   "handle": "kenneth-real-suede-walls-xwo-53649",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, display_variant, Ecru, Fabric, Geometric, Gold, Lattice, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Tan, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13958707609712,
+   "sampleSku": "XWO-53649-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499995111536,
+   "handle": "kenneth-real-suede-walls-xwo-53650",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Beige, Class A Fire Rated, Commercial, display_variant, Ecru, Fabric, Geometric, Gold, Lattice, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering, Yellow",
+   "sampleVariantId": 13958710100080,
+   "sampleSku": "XWO-53650-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499995537520,
+   "handle": "kenneth-real-suede-walls-xwo-53651",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Ecru, Fabric, Geometric, Gray, Lattice, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Suede, Texture, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13958713802864,
+   "sampleSku": "XWO-53651-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500352053360,
+   "handle": "kimo-durable-vinyl-xpf-33575",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gray, Light Beige, Needs-Image, Needs-Price, Needs-Width, Pale Gray, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Soft Taupe, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963677761648,
+   "sampleSku": "XPF-33575-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500352577648,
+   "handle": "kimo-durable-vinyl-xpf-33576",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Tan, Needs-Image, Needs-Price, Needs-Width, Pale Gold, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sandy Beige, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963678646384,
+   "sampleSku": "XPF-33576-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500353134704,
+   "handle": "kimo-durable-vinyl-xpf-33577",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Golden Beige, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Ivory, Yellow",
+   "sampleVariantId": 13963684282480,
+   "sampleSku": "XPF-33577-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500353691760,
+   "handle": "kimo-durable-vinyl-xpf-33578",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Golden Yellow, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Soft Gold, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Beige",
+   "sampleVariantId": 13963686936688,
+   "sampleSku": "XPF-33578-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500354216048,
+   "handle": "kimo-durable-vinyl-xpf-33579",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gold, Light Brown, Natural Linen, Needs-Image, Needs-Price, Needs-Width, Olive Green, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sage Green, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963695685744,
+   "sampleSku": "XPF-33579-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500362637424,
+   "handle": "kimo-durable-vinyl-xpf-33580",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Golden Tan, Light Brown, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sandy Brown, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Beige",
+   "sampleVariantId": 13963776852080,
+   "sampleSku": "XPF-33580-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500363194480,
+   "handle": "kimo-durable-vinyl-xpf-33581",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Bone, Caramel, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gold, Golden Brown, Honey Gold, Light Brown, Medium Brown, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963781406832,
+   "sampleSku": "XPF-33581-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500363587696,
+   "handle": "kimo-durable-vinyl-xpf-33582",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Golden Brown, Light Brown, Medium Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963789566064,
+   "sampleSku": "XPF-33582-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500364439664,
+   "handle": "kimo-durable-vinyl-xpf-33584",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, ASTM E84 Class A, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Light Gray, Medium Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Silver Gray, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963793760368,
+   "sampleSku": "XPF-33584-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500364931184,
+   "handle": "kimo-durable-vinyl-xpf-33585",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Soft Brown, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Gray",
+   "sampleVariantId": 13963798216816,
+   "sampleSku": "XPF-33585-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500366307440,
+   "handle": "kimo-durable-vinyl-xpf-33588",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Brown, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Eggshell, Light Brown, Medium Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963809554544,
+   "sampleSku": "XPF-33588-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500366831728,
+   "handle": "kimo-durable-vinyl-xpf-33589",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Brown, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, Deep Gray, display_variant, Eggshell, Light Brown, Medium Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Rust Brown, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Taupe",
+   "sampleVariantId": 13963812634736,
+   "sampleSku": "XPF-33589-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500367323248,
+   "handle": "kimo-durable-vinyl-xpf-33590",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Bone, Brown, Burnt Orange, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Medium Brown, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rust Brown, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Tan",
+   "sampleVariantId": 13963819057264,
+   "sampleSku": "XPF-33590-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500367782000,
+   "handle": "kimo-durable-vinyl-xpf-33591",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Eggshell, Light Taupe, Needs-Image, Needs-Price, Needs-Width, Pale Blush, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Soft Pink, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13963824529520,
+   "sampleSku": "XPF-33591-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500368207984,
+   "handle": "kimo-durable-vinyl-xpf-33592",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Mushroom Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Soft Gray, Tan, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963827282032,
+   "sampleSku": "XPF-33592-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500368601200,
+   "handle": "kimo-durable-vinyl-xpf-33593",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, ASTM E84 Class A, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Soft Tan, Tan, Textured, Type 2, Type 2 Durable Vinyl, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Warm Ivory",
+   "sampleVariantId": 13963829870704,
+   "sampleSku": "XPF-33593-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500331311216,
+   "handle": "koshi-xoy-33534",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Blue, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13963494129776,
+   "sampleSku": "XOY-33534-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500332687472,
+   "handle": "koshi-xoy-33537",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Bone, Brown, Commercial, display_variant, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Vinyls, Wallcovering",
+   "sampleVariantId": 13963507990640,
+   "sampleSku": "XOY-33537-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791157706803,
+   "handle": "kralendijk-bordeaux",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, FR Additives Free, Global Inspired, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Luxe, Matte Finish, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Residential, Rich, Rustic, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Textured, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Reds",
+   "sampleVariantId": 44086093217843,
+   "sampleSku": "DWPN-100981",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791157870643,
+   "handle": "kralendijk-canyon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Distressed, Distressed texture, Earthy, Fabric, Faux Leather, FR Additives Free, Global Inspired, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, Leather look, LEED Compatible, Living Room, Mushroom, Natural grain, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm",
+   "sampleVariantId": 44086093545523,
+   "sampleSku": "DWPN-100982",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158034483,
+   "handle": "kralendijk-carmine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contract Grade, Dark Maroon, display_variant, Executive Office, Fabric, Faux Leather, FR Additives Free, Garnet, Global Inspired, Grain, Green Building, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, Leather-like, LEED Compatible, Living Room, Luxe, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Rustic, Showroom Line, Smooth, Solid, Solid Color, Subtle Texture, Sustainable, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Reds",
+   "sampleVariantId": 44086093840435,
+   "sampleSku": "DWPN-100983",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158231091,
+   "handle": "kralendijk-field",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Global Inspired, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Brown, Living Room, Matte Finish, Minimalist, Modern, Mushroom, Natural Greens, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086094168115,
+   "sampleSku": "DWPN-100984",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158329395,
+   "handle": "kralendijk-glacier",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, FR Additives Free, Global Inspired, Grain, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, light gray, Light Grey, Living Room, Minimalist, Needs-Price, Neutral Texture, Neutral Tones, NFPA 260 Compliant, Pale Gray, Pale Grey, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Silver, Soft, Solid, Stone Effect, Subtle, Subtle Pattern, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086094331955,
+   "sampleSku": "DWPN-100985",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158493235,
+   "handle": "kralendijk-jade",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dove Gray, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Grain, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Beige, Light Gray, Living Room, Matte Finish, Minimalist, Natural Greens, Needs-Price, Neutral Texture, NFPA 260 Compliant, Off-white, Pale Grey, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Silver, Soft, Solid, Subtle, Subtle Pattern, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086094626867,
+   "sampleSku": "DWPN-100986",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158657075,
+   "handle": "kralendijk-midnight",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, Dark Tones, display_variant, Distressed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, Leather-like, LEED Compatible, Light Gray, Living Room, Matte, Medium Gray, Moody, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Solid, Subtle, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086094921779,
+   "sampleSku": "DWPN-100987",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791158788147,
+   "handle": "kralendijk-neptune",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Blues, dark gray, Dark Slate Gray, Deep, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Global Inspired, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, Leather Look, LEED Compatible, Living Room, Midnight, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Solid, Solid Color, Sophisticated, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086095183923,
+   "sampleSku": "DWPN-100988",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791159115827,
+   "handle": "kralendijk-saddle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, FR Additives Free, Global Inspired, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Sienna, Smooth, Solid, Solid Color, Sustainable, Tan, Textured, Timeless, Traditional, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm",
+   "sampleVariantId": 44086095708211,
+   "sampleSku": "DWPN-100990",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791159279667,
+   "handle": "kralendijk-shadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Ash, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Tones, display_variant, Fabric, FR Additives Free, Global Inspired, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Silver Gray, Soft, Solid, Subtle, Subtle Texture, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086096003123,
+   "sampleSku": "DWPN-100991",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791159410739,
+   "handle": "kralendijk-shell",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Global Inspired, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Beige, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Pale Gold, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Smooth, Soft, Solid, Subtle, Sustainable, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44086096232499,
+   "sampleSku": "DWPN-100992",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791159705651,
+   "handle": "kralendijk-spruce",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, dark green, Deep, Deep Green, display_variant, Evergreen, Fabric, Faux Leather, Fine Texture, Forest Green, FR Additives Free, Global Inspired, Grain, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Olive Green, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Smooth, Solid, Solid Color, Sophisticated, Sustainable, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086096756787,
+   "sampleSku": "DWPN-100994",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227385395,
+   "handle": "kralendijk-admiral-dwpr-426315",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Admiral, Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Dark, Dark Blue, Denim Blue, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Kralendijk, Leather, Living Room, Luxury, Midnight Blue, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077085747,
+   "sampleSku": "DWPN-100997",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227156019,
+   "handle": "kralendijk-ash-dwpr-426309",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, Bone, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver Gray, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076856371,
+   "sampleSku": "DWPR-426309",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226861107,
+   "handle": "kralendijk-bordeaux-dwpr-426301",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, Hotel Lobby, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxe, Luxury, Mahogany, Maroon, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Oxblood, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076430387,
+   "sampleSku": "DWPR-426301",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226992179,
+   "handle": "kralendijk-dove-dwpr-426305",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Charcoal, display_variant, Dove, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Kralendijk, Leather, Living Room, Luxury, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076692531,
+   "sampleSku": "DWPR-426305",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226828339,
+   "handle": "kralendijk-driftwood-dwpr-426300",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxury, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076397619,
+   "sampleSku": "DWPR-426300",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226795571,
+   "handle": "kralendijk-espresso-dwpr-426299",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Espresso, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxe, Luxury, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076364851,
+   "sampleSku": "DWPR-426299",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227254323,
+   "handle": "kralendijk-forest-dwpr-426312",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Green, display_variant, Ebony, Embossed, Fabric, Faux Leather, Forest, Forest Green, Green, Hospitality, Hunter Green, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxury, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076954675,
+   "sampleSku": "DWPR-426312",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226893875,
+   "handle": "kralendijk-greige-dwpr-426302",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Greige, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Beige, Living Room, Luxury, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076463155,
+   "sampleSku": "DWPR-426302",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227188787,
+   "handle": "kralendijk-linen-dwpr-426310",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Light Beige, Linen, Living Room, Luxury, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076889139,
+   "sampleSku": "DWPR-426310",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227319859,
+   "handle": "kralendijk-mahogany-dwpr-426314",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, Hotel Lobby, IMO Marine Grade, Industrial, Kralendijk, Leather, Living Room, Luxe, Luxury, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Sophisticated, Taupe, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077020211,
+   "sampleSku": "DWPN-100996",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226926643,
+   "handle": "kralendijk-mist-dwpr-426303",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Grey, Hallway, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Grey, Linen, Living Room, Luxury, Minimalist, Mist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Pale Grey, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076495923,
+   "sampleSku": "DWPR-426303",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227221555,
+   "handle": "kralendijk-mushroom-dwpr-426311",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Brown, Living Room, Luxury, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076921907,
+   "sampleSku": "DWPN-100993",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227287091,
+   "handle": "kralendijk-peacock-dwpr-426313",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Dark, Dark Gray, Dark Teal, display_variant, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Industrial, Kralendijk, Leather, Living Room, Luxury, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate Gray, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076987443,
+   "sampleSku": "DWPN-100995",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226664499,
+   "handle": "kralendijk-pewter-dwpr-426295",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Grayish Brown, Hospitality, IMO Marine Grade, Industrial, Kralendijk, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Olive Brown, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076233779,
+   "sampleSku": "DWPN-100977",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227090483,
+   "handle": "kralendijk-sand-dwpr-426307",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Gray, Linen, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Organic Modern, Ostrich, Pale Beige, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Silver, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076790835,
+   "sampleSku": "DWPN-100989",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227057715,
+   "handle": "kralendijk-sapphire-dwpr-426306",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076758067,
+   "sampleSku": "DWPR-426306",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226730035,
+   "handle": "kralendijk-silver-dwpr-426297",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Gray, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Blue, Light Gray, Light Silver, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pale Blue, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076299315,
+   "sampleSku": "DWPN-100979",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226762803,
+   "handle": "kralendijk-slate-dwpr-426298",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dim Gray, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Gray, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Slate Gray, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076332083,
+   "sampleSku": "DWPN-100980",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792226959411,
+   "handle": "kralendijk-smoke-dwpr-426304",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Grey, Hallway, Hospitality, IMO Marine Grade, Kralendijk, Leather, Light Grey, Living Room, Luxury, Minimalist, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Pale Beige, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Smoke, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090076659763,
+   "sampleSku": "DWPR-426304",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227123251,
+   "handle": "kralendijk-toffee-dwpr-426308",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Kralendijk, Leather, Living Room, Luxury, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090076823603,
+   "sampleSku": "DWPR-426308",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792226697267,
+   "handle": "kralendijk-walnut-dwpr-426296",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Industrial, Kralendijk, Leather, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Sienna, Solid, Tan, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44090076266547,
+   "sampleSku": "DWPN-100978",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1495922901104,
+   "handle": "kumiko-grasscloth-wallpaper-horizontal-weave-grs-38001",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Bronze, Brown, Coastal, Commercial, Dining Room, display_variant, Ecru, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Kyoto Garden Natural Weaves, Living Room, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Textured, Traditional, Transitional, Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13908965425264,
+   "sampleSku": "GRS-38001-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500534472816,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-33997",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Beige, Coastal, Commercial, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Stripe, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965606781040,
+   "sampleSku": "GRS-33997-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500534800496,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-33998",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Beige, Bone, Commercial, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965612646512,
+   "sampleSku": "GRS-33998-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500535160944,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-33999",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Beige, Bone, Commercial, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13965613891696,
+   "sampleSku": "GRS-33999-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500536406128,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34001",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Bone, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13965624672368,
+   "sampleSku": "GRS-34001-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500536701040,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34002",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Commercial, Commercial Wallcovering, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965629063280,
+   "sampleSku": "GRS-34002-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500537389168,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34005",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Sand, Showroom Line, Sisal, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13965640171632,
+   "sampleSku": "GRS-34005-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500537618544,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34006",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Bone, Brown, Coastal, Commercial, Commercial Wallcovering, display_variant, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Stripe, Teal, Textured, Tropical, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13965641449584,
+   "sampleSku": "GRS-34006-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500537815152,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34007",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Commercial, Commercial Wallcovering, display_variant, Ecru, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13965645774960,
+   "sampleSku": "GRS-34007-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500538011760,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34008",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Brown, Commercial, Commercial Wallcovering, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965652295792,
+   "sampleSku": "GRS-34008-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500538273904,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34009",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Commercial, Commercial Wallcovering, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Sisal, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13965654622320,
+   "sampleSku": "GRS-34009-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500538634352,
+   "handle": "kuromatsu-sisal-grasscloth-walls-grs-34010",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Sisal, Architectural, Black, Charcoal, Commercial, Commercial Wallcovering, display_variant, Ecru, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Sisal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965657571440,
+   "sampleSku": "GRS-34010-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496804622448,
+   "handle": "la-adamo-basketweave-prg-47833",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Almond, Architectural, Basketweave, Bedroom, Beige, Blonde, Bone, Class A Fire Rated, Coastal, Commercial, Cream, display_variant, Entryway, Farmhouse, Grasscloth, Hand Crafted, La Adamo Basketweave, Light Brown, Living Room, Mica, Natural, Natural Cream, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Solid/Textural, Tan, Textural, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13920897728624,
+   "sampleSku": "PRG-47833-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502333763696,
+   "handle": "la-brancata-lace-prt-74106",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gray, Lace, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 13986922627184,
+   "sampleSku": "PRT-74106-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502333960304,
+   "handle": "la-brancata-lace-prt-74107",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gold, Gray, Lace, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Wallcovering, White, Yellow",
+   "sampleVariantId": 13986924462192,
+   "sampleSku": "PRT-74107-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502334189680,
+   "handle": "la-brancata-lace-prt-74108",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gray, Lace, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986925609072,
+   "sampleSku": "PRT-74108-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502334484592,
+   "handle": "la-brancata-lace-prt-74109",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Greige, Lace, Latte, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Sepia, Showroom Line, Tan, Taupe, Textured, Traditional, Wallcovering, Walnut",
+   "sampleVariantId": 13986930294896,
+   "sampleSku": "PRT-74109-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502334812272,
+   "handle": "la-brancata-lace-prt-74111",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, display_variant, Eggshell, Green, Lace, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986940420208,
+   "sampleSku": "PRT-74111-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502316101744,
+   "handle": "la-corka-prt-74037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Cork, display_variant, Eggshell, Gray, Industrial, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13986639642736,
+   "sampleSku": "PRT-74037-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502316265584,
+   "handle": "la-corka-prt-74038",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Cork, Cream, display_variant, Ecru, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Rustic, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986642722928,
+   "sampleSku": "PRT-74038-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502316494960,
+   "handle": "la-corka-prt-74039",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bone, Commercial, Cork, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Rustic, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986645278832,
+   "sampleSku": "PRT-74039-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502316691568,
+   "handle": "la-corka-prt-74040",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Cork, display_variant, Gray, Industrial, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off White, Orange, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13986647277680,
+   "sampleSku": "PRT-74040-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502316888176,
+   "handle": "la-corka-prt-74041",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, Contemporary, Cork, display_variant, Gold, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Slate, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13986650882160,
+   "sampleSku": "PRT-74041-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502317084784,
+   "handle": "la-corka-prt-74042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, Cork, Cream, display_variant, Gray, Industrial, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13986655502448,
+   "sampleSku": "PRT-74042-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502317314160,
+   "handle": "la-corka-prt-74043",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, Cork, Dark Brown, display_variant, Espresso, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986656157808,
+   "sampleSku": "PRT-74043-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502317510768,
+   "handle": "la-corka-prt-74044",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Brown, Commercial, Cork, display_variant, Gold, Metallic, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Rustic, Showroom Line, Texture, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13986661498992,
+   "sampleSku": "PRT-74044-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502317674608,
+   "handle": "la-corka-prt-74045",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, Cork, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Powder Blue, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986663399536,
+   "sampleSku": "PRT-74045-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502317936752,
+   "handle": "la-corka-prt-74046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Cork, Dark Brown, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Rustic, Showroom Line, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986670346352,
+   "sampleSku": "PRT-74046-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502318133360,
+   "handle": "la-corka-prt-74047",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Cork, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Powder Blue, Rustic, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986671526000,
+   "sampleSku": "PRT-74047-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502318428272,
+   "handle": "la-corka-prt-74048",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Commercial, Contemporary, Cork, display_variant, Eggshell, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13986676899952,
+   "sampleSku": "PRT-74048-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502318624880,
+   "handle": "la-corka-prt-74049",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Brown, Commercial, Cork, Dark Brown, display_variant, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering, Walnut",
+   "sampleVariantId": 13986680569968,
+   "sampleSku": "PRT-74049-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502318887024,
+   "handle": "la-corka-prt-74050",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Commercial, Contemporary, Cork, display_variant, La Corka, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Slate, Textured, Wallcovering",
+   "sampleVariantId": 13986681585776,
+   "sampleSku": "PRT-74050-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502319050864,
+   "handle": "la-corka-prt-74051",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Commercial, Cork, display_variant, Foil, La Corka, Light Gray, Metal Leaf, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Sage, Showroom Line, Silver, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13986685845616,
+   "sampleSku": "PRT-74051-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502319280240,
+   "handle": "la-corka-prt-74052",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Brown, Commercial, Cork, display_variant, Gold, La Corka, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13986688434288,
+   "sampleSku": "PRT-74052-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502319509616,
+   "handle": "la-corka-prt-74053",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Black, Commercial, Contemporary, Cork, display_variant, Gray, Industrial, La Corka, Maroon, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13986690367600,
+   "sampleSku": "PRT-74053-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502319771760,
+   "handle": "la-corka-prt-74054",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Commercial, Cork, Dark Brown, display_variant, Indigo, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986695610480,
+   "sampleSku": "PRT-74054-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502320197744,
+   "handle": "la-corka-prt-74056",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Commercial, Cork, display_variant, Indigo, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986705408112,
+   "sampleSku": "PRT-74056-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502320328816,
+   "handle": "la-corka-prt-74057",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Black, Charcoal, Commercial, Cork, Dark Gray, display_variant, La Corka, Light Blue, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13986709536880,
+   "sampleSku": "PRT-74057-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502320951408,
+   "handle": "la-corka-prt-74060",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Brown, Commercial, Commercial Wallcovering, Cork, Dark Brown, display_variant, Green, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering, Walnut",
+   "sampleVariantId": 13986719367280,
+   "sampleSku": "PRT-74060-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502321213552,
+   "handle": "la-corka-prt-74061",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Commercial, Commercial Wallcovering, Cork, display_variant, Fabric, Jet, La Corka, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13986721759344,
+   "sampleSku": "PRT-74061-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496806162544,
+   "handle": "la-cresta-basketweave-prg-47841",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Bone, Coastal, Commercial, display_variant, Entryway, Farmhouse, Gold, Grasscloth, Hand Crafted, Light Brown, Living Room, Mica, Natural, Natural Spice Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Scandinavian, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13920924467312,
+   "sampleSku": "PRG-47841-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496799805552,
+   "handle": "la-diabla-grasscloth-prg-47808",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Blue, Brown, Coastal, Commercial, Dining Room, display_variant, Farmhouse, Grasscloth, Grasscloth Texture, Gray, Hand Crafted, La Diabla Brown Gold Reeds, La Diabla Grasscloth, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Solid/Textural, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920816595056,
+   "sampleSku": "PRG-47808-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496804851824,
+   "handle": "la-gregaria-grasscloth-prg-47834",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Entryway, Farmhouse, Fawn, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, La Gregaria Grasscloth, Light Brown, Linear, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Stripe, Tan, Textural, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 13920899465328,
+   "sampleSku": "PRG-47834-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496805376112,
+   "handle": "la-halelua-grasscloth-prg-47837",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Black, Brown, Coastal, Commercial, Dining Room, display_variant, Geometric, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Spice Red Blue On Natural, Tan, Textured, Traditional, Transitional, Tropical, Wallcovering, Woven",
+   "sampleVariantId": 13920912703600,
+   "sampleSku": "PRG-47837-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496805834864,
+   "handle": "la-halelua-grasscloth-prg-47839",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Entryway, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Scandinavian, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Tropical, Wallcovering, Woven",
+   "sampleVariantId": 13920920731760,
+   "sampleSku": "PRG-47839-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496805998704,
+   "handle": "la-halelua-grasscloth-prg-47840",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Coastal, Commercial, display_variant, Entryway, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Hand Crafted, Light Brown, Light Slate Olive Green, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Neutral, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Taupe, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13920922304624,
+   "sampleSku": "PRG-47840-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496806948976,
+   "handle": "la-halelua-grasscloth-prg-47845",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Coastal, Commercial, display_variant, Entryway, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13920941244528,
+   "sampleSku": "PRG-47845-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496807374960,
+   "handle": "la-halelua-grasscloth-prg-47847",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Coastal, Commercial, display_variant, Gold, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Hand Crafted, Hotel Lobby, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13920949829744,
+   "sampleSku": "PRG-47847-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496807768176,
+   "handle": "la-halelua-grasscloth-prg-47849",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Commercial, Contemporary, Deep Gold Yellow, display_variant, Geometric, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Hotel Lobby, La Halelua Grasscloth, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Tan, Textural, Textured, Traditional, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13920959496304,
+   "sampleSku": "PRG-47849-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803115120,
+   "handle": "la-kahuna-grasscloth-prg-47825",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Coastal, Commercial, Cream, display_variant, Eggshell, Entryway, Farmhouse, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, La Kahuna Grasscloth, Light Gray, Living Room, Mica, Natural, Natural on Silver Mylar, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Textural, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 13920870072432,
+   "sampleSku": "PRG-47825-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496800297072,
+   "handle": "la-libra-grasscloth-prg-47811",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bohemian, Brown, Coastal, Commercial, display_variant, Ecru, Entryway, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, La Libra Grasscloth, Living Room, Mica, Natural, Natural Gold With Brown Slubs, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Tan, Textured, Tropical, Wallcovering",
+   "sampleVariantId": 13920824918128,
+   "sampleSku": "PRG-47811-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496801673328,
+   "handle": "la-libra-grasscloth-prg-47818",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Ecru, Entryway, Farmhouse, Grasscloth, Grasscloth Texture, Hand Crafted, La Libra Grasscloth, Living Room, Mica, Natural, Natural on Red With Slubs, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Solid/Textural, Stripe, Tan, Textured, Traditional, Tropical, Wallcovering, White, Woven",
+   "sampleVariantId": 13920850378864,
+   "sampleSku": "PRG-47818-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496801771632,
+   "handle": "la-libra-grasscloth-prg-47819",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Bone, Brown, Commercial, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Hand Crafted, La Libra Grasscloth, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange Red, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Textural, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920854507632,
+   "sampleSku": "PRG-47819-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496802001008,
+   "handle": "la-libraria-basketweave-prg-47820",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Brown, Class A Fire Rated, Coastal, Commercial, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Hand Crafted, La Libraria Basketweave, Living Room, Mica, Natural, Natural on Dark, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Scandinavian, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920855195760,
+   "sampleSku": "PRG-47820-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496804130928,
+   "handle": "la-lito-grassloth-prg-47830",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Class A Fire Rated, Coastal, Commercial, Cream, display_variant, Eggshell, Entryway, Farmhouse, Grasscloth, Hand Crafted, La Lito Grassloth, Light Brown, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Scandinavian, Showroom Line, Solid/Textural, Spice Brown With Natural Gold With Slubs, Tan, Textured, Tropical, Wallcovering, White, Yellow",
+   "sampleVariantId": 13920888619120,
+   "sampleSku": "PRG-47830-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496804458608,
+   "handle": "la-lito-grassloth-prg-47832",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bohemian, Brown, Class A Fire Rated, Coastal, Commercial, Dining Room, display_variant, Eggshell, Farmhouse, Grasscloth, Hand Crafted, La Lito Grassloth, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Solid/Textural, Spice Brown With Natural Yellow Gold With Slubs, Tan, Textured, Traditional, Tropical, Wallcovering",
+   "sampleVariantId": 13920897269872,
+   "sampleSku": "PRG-47832-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496806785136,
+   "handle": "la-locavista-twil-basketweave-prg-47844",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Beige, Bone, Commercial, display_variant, Grasscloth, Hand Crafted, Lattice, Mica, Natural, Natural Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13920939212912,
+   "sampleSku": "PRG-47844-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496807211120,
+   "handle": "la-locavista-twil-basketweave-prg-47846",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Entryway, Farmhouse, Geometric, Gold, Grasscloth, Hand Crafted, Herringbone, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13920943669360,
+   "sampleSku": "PRG-47846-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496807637104,
+   "handle": "la-loparica-basketweave-prg-47848",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Class A Fire Rated, Coastal, Commercial, Dining Room, display_variant, Farmhouse, Grasscloth, Hand Crafted, La Loparica Basketweave, Light Brown, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering, Yellow, Yellow Corn Natural Gold",
+   "sampleVariantId": 13920958349424,
+   "sampleSku": "PRG-47848-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496800952432,
+   "handle": "la-luna-basketweave-prg-47814",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Class A Fire Rated, Coastal, Commercial, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Hand Crafted, La Luna Basketweave, Light Brown, Living Room, Mica, Natural, Natural Spice Red, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13920837599344,
+   "sampleSku": "PRG-47814-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803901552,
+   "handle": "la-lunaria-grasscloth-prg-47829",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Coastal, Commercial, Cream, Cream Natural, Dining Room, display_variant, Grasscloth, Grasscloth Texture, Hand Crafted, La Lunaria Grasscloth, Light Beige, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 13920883703920,
+   "sampleSku": "PRG-47829-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496802721904,
+   "handle": "la-metalica-grasscloth-prg-47823",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Commercial, Contemporary, Cream, display_variant, Eggshell, Grasscloth, Grasscloth Texture, Gray, Hand Crafted, La Metalica Grasscloth, Light Beige, Light Natural on Silver Mylar, Living Room, Mica, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Spa, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920867483760,
+   "sampleSku": "PRG-47823-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803475568,
+   "handle": "la-natural-grasscloth-paperweave-basketweave-prg-47826",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Commercial, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Hand Crafted, La Natural Grasscloth PaperWeave Basketweave, Light Gray, Living Room, Mica, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Office, Paper, Paperweave, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Silver, Solid/Textural, Spa, Textured, Traditional, Wallcovering, White, White Paper Weave - Gorgeous!",
+   "sampleVariantId": 13920871841904,
+   "sampleSku": "PRG-47826-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803672176,
+   "handle": "la-nina-grasscloth-prg-47827",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Coastal, Commercial, display_variant, Entryway, Grasscloth, Grasscloth Texture, Hand Crafted, La Nina Grasscloth, Light Beige, Light Brown, Living Room, Mica, Natural, Natural on Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Taupe, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920882720880,
+   "sampleSku": "PRG-47827-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496804294768,
+   "handle": "la-tito-grasscloth-prg-47831",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Commercial, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Hand Crafted, Hotel Lobby, La Tito Grasscloth, Living Room, Mica, Minimalist, Natural, Natural Corn Yellow, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Scandinavian, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920893698160,
+   "sampleSku": "PRG-47831-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496805048432,
+   "handle": "la-tito-grasscloth-prg-47835",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Coastal, Commercial, display_variant, Ecru, Entryway, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Khaki, La Tito Grasscloth, Light Brown, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920906051696,
+   "sampleSku": "PRG-47835-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496805572720,
+   "handle": "la-tito-grasscloth-prg-47838",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Commercial, Contemporary, display_variant, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Green, Hand Crafted, Light Aqua Green, Living Room, Mica, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Silver, Solid/Textural, Spa, Textured, Traditional, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 13920913719408,
+   "sampleSku": "PRG-47838-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496802558064,
+   "handle": "la-vida-loca-basketweave-prg-47822",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Class A Fire Rated, Coastal, Commercial, Dining Room, display_variant, Eggshell, Farmhouse, Geometric, Grasscloth, Hand Crafted, La Vida Loca Basketweave, Living Room, Mica, Natural, Natural Wallcovering, Natural With Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Tan, Textural, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920861618288,
+   "sampleSku": "PRG-47822-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502343856240,
+   "handle": "labarina-prt-74153",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Umber, Wallcovering, Woven",
+   "sampleVariantId": 13987077652592,
+   "sampleSku": "PRT-74153-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502344020080,
+   "handle": "labarina-prt-74154",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Dark Brown, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987081977968,
+   "sampleSku": "PRT-74154-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502344216688,
+   "handle": "labarina-prt-74155",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Herringbone, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987085058160,
+   "sampleSku": "PRT-74155-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502344642672,
+   "handle": "labarina-prt-74157",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Chevron, Class A Fire Rated, Commercial, display_variant, Fabric, Geometric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987091284080,
+   "sampleSku": "PRT-74157-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502344806512,
+   "handle": "labarina-prt-74158",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Charcoal, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Lattice, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987094429808,
+   "sampleSku": "PRT-74158-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502345101424,
+   "handle": "labarina-prt-74159",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987102425200,
+   "sampleSku": "PRT-74159-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496307892336,
+   "handle": "lagos-copper-gold-fxx-3232",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bedroom, Beige, Commercial, Dining Room, display_variant, Fretwork, Geometric, Green, Living Room, Mica, Natural, Needs-Image, Needs-Price, Needs-Width, Office, Paper, Phillipe Romano, Pink, Red, Showroom Line, Specialy Wallcoverings, Tan, Textured Copper Metallic, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 44170991271987,
+   "sampleSku": "FXX - 3232-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496962105456,
+   "handle": "lakeshore-grass-prg-71051",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, Coastal, Commercial, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Gray, Grey, Lakeshore Grass, Light Gray, Living Room, Madagascar, Madagascar Naturals, Natural, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Grasses Vol. 3, Sand, Santa Barbara, Showroom Line, Textural, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 13923243720816,
+   "sampleSku": "PRG-71051-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498777976944,
+   "handle": "largo-linen-walls-prx-79059",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gold, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Silver, Stripe, Textured, Viscose, Wallcovering, Yellow",
+   "sampleVariantId": 13940689764464,
+   "sampleSku": "PRX-79059-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498778206320,
+   "handle": "largo-linen-walls-prx-79060",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Viscose, Wallcovering, White, Woven",
+   "sampleVariantId": 13940693696624,
+   "sampleSku": "PRX-79060-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498778402928,
+   "handle": "largo-linen-walls-prx-79061",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Eggshell, Floral, Gold, Grasscloth, Green, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Traditional, Viscose, Wallcovering, Woven",
+   "sampleVariantId": 13940701888624,
+   "sampleSku": "PRX-79061-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498778599536,
+   "handle": "largo-linen-walls-prx-79062",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Floral, Gold, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Viscose, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13940705001584,
+   "sampleSku": "PRX-79062-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498778763376,
+   "handle": "largo-linen-walls-prx-79063",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Blue, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Floral, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Viscose, Wallcovering, Woven",
+   "sampleVariantId": 13940705525872,
+   "sampleSku": "PRX-79063-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498779025520,
+   "handle": "largo-linen-walls-prx-79064",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gold, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Viscose, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13940709163120,
+   "sampleSku": "PRX-79064-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498775814256,
+   "handle": "latigo-linen-walls-prx-79049",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Beige, Commercial, Commercial Wallcovering, display_variant, Geometric, Gold, Grasscloth, Latigo Linen, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Tan, Wallcovering, Yellow",
+   "sampleVariantId": 13940653293680,
+   "sampleSku": "PRX-79049-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498776010864,
+   "handle": "latigo-linen-walls-prx-79050",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Commercial, Commercial Wallcovering, Cream, display_variant, Geometric, Latigo Linen, Light Gray, Linen, Mid-Century Modern, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Wallcovering, White",
+   "sampleVariantId": 13940659945584,
+   "sampleSku": "PRX-79050-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498776207472,
+   "handle": "latigo-linen-walls-prx-79051",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13940663255152,
+   "sampleSku": "PRX-79051-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498776371312,
+   "handle": "latigo-linen-walls-prx-79052",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940666007664,
+   "sampleSku": "PRX-79052-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498776600688,
+   "handle": "latigo-linen-walls-prx-79053",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Geometric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Wallcovering, Woven",
+   "sampleVariantId": 13940670693488,
+   "sampleSku": "PRX-79053-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498776862832,
+   "handle": "latigo-linen-walls-prx-79054",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940672692336,
+   "sampleSku": "PRX-79054-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498777059440,
+   "handle": "latigo-linen-walls-prx-79055",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Beige, Brown, Commercial, Commercial Wallcovering, display_variant, Eggshell, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Tan, Textured, Wallcovering",
+   "sampleVariantId": 13940674429040,
+   "sampleSku": "PRX-79055-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498777354352,
+   "handle": "latigo-linen-walls-prx-79056",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Eggshell, Geometric, Gold, Gray, Linen, Mid-Century Modern, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940676329584,
+   "sampleSku": "PRX-79056-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498777518192,
+   "handle": "latigo-linen-walls-prx-79057",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bone, Bronze, Commercial, Commercial Wallcovering, display_variant, Fretwork, Geometric, Gray, Linen, Metallic, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940682489968,
+   "sampleSku": "PRX-79057-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498785742960,
+   "handle": "lawrence-of-linen-walls-prx-79100",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, Linen, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940839317616,
+   "sampleSku": "PRX-79100-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498786168944,
+   "handle": "lawrence-of-linen-walls-prx-79102",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Linen, Mushroom, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940845707376,
+   "sampleSku": "PRX-79102-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498786496624,
+   "handle": "lawrence-of-linen-walls-prx-79103",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13940848590960,
+   "sampleSku": "PRX-79103-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498786758768,
+   "handle": "lawrence-of-linen-walls-prx-79104",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940853407856,
+   "sampleSku": "PRX-79104-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498786988144,
+   "handle": "lawrence-of-linen-walls-prx-79105",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Light Beige, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Tan, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940860551280,
+   "sampleSku": "PRX-79105-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498787217520,
+   "handle": "lawrence-of-linen-walls-prx-79106",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940865794160,
+   "sampleSku": "PRX-79106-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498787348592,
+   "handle": "lawrence-of-linen-walls-prx-79107",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Lawrence of Linen, Light Beige, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940870512752,
+   "sampleSku": "PRX-79107-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498787610736,
+   "handle": "lawrence-of-linen-walls-prx-79108",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Silver, Textured, Wallcovering",
+   "sampleVariantId": 13940875198576,
+   "sampleSku": "PRX-79108-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500655845488,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34364",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13967052079216,
+   "sampleSku": "XCH-34364-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500656664688,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34366",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967059878000,
+   "sampleSku": "XCH-34366-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500657221744,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34367",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13967064957040,
+   "sampleSku": "XCH-34367-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500657713264,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34368",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13967068889200,
+   "sampleSku": "XCH-34368-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500658991216,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34371",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13967082029168,
+   "sampleSku": "XCH-34371-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500659220592,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34372",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Almond, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13967084617840,
+   "sampleSku": "XCH-34372-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500659679344,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34373",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967088943216,
+   "sampleSku": "XCH-34373-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500667412592,
+   "handle": "le-gita-durable-faux-grass-vinyl-xch-34375",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Faux, Faux Grasscloth, Grasscloth, Grasscloth Texture, Grasscloth Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13967169912944,
+   "sampleSku": "XCH-34375-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7717102551091,
+   "handle": "palm-jungle-straw-blue-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "95-1006-cs, Architectural, Bathroom, Bedroom, Beige, Birds, blue, botanical, Champagne, Class A Fire Rated, Coastal, cole-son, Commercial, Contemporary, contemporary-restyled, display_variant, floral, Hospitality, Leaves, Living Room, Nature, Needs-Image, Needs-Price, Needs-Width, Neutral, Organic Modern, Palm, palm-jungle, Periwinkle, pretrimmed, Residential, Serene, Showroom Line, Silver, Steel, straw, Toucan, Tropical, Tropical Leaf, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43770676445235,
+   "sampleSku": "DWWC-508960-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498760478832,
+   "handle": "leonara-linen-walls-prx-79003",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940396851312,
+   "sampleSku": "PRX-79003-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498760773744,
+   "handle": "leonara-linen-walls-prx-79004",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940404551792,
+   "sampleSku": "PRX-79004-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498760970352,
+   "handle": "leonara-linen-walls-prx-79005",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940410122352,
+   "sampleSku": "PRX-79005-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498761265264,
+   "handle": "leonara-linen-walls-prx-79006",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940413792368,
+   "sampleSku": "PRX-79006-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498761429104,
+   "handle": "leonara-linen-walls-prx-79007",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940419330160,
+   "sampleSku": "PRX-79007-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498761658480,
+   "handle": "leonara-linen-walls-prx-79008",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940423065712,
+   "sampleSku": "PRX-79008-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498761920624,
+   "handle": "leonara-linen-walls-prx-79009",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940427522160,
+   "sampleSku": "PRX-79009-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501393846384,
+   "handle": "leonardo-silver-bark-prt-16175",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bark, Commercial, Contemporary, display_variant, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13975901372528,
+   "sampleSku": "PRT-16175-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500470116464,
+   "handle": "leonardo-walls-xda-33829",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Metallic, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13964870189168,
+   "sampleSku": "XDA-33829-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500471197808,
+   "handle": "leonardo-walls-xda-33832",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13964882673776,
+   "sampleSku": "XDA-33832-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500471623792,
+   "handle": "leonardo-walls-xda-33833",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13964885327984,
+   "sampleSku": "XDA-33833-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882874949683,
+   "handle": "dwjj-40210-leonora",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bella Italiano, Commercial, display_variant, grasscloth, Grasscloth Texture, Gray, Leonora, Leonora Printed Grasscloth on Mylar Foil Naturals, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Printed Grasscloth on Mylar Foil, Rustic, Showroom Line, Silver, Textured, Traditional, Wallcovering, Wheat",
+   "sampleVariantId": 41180286091315,
+   "sampleSku": "DWJJ-40210-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498781778032,
+   "handle": "lido-linen-walls-prx-79083",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Silver, Stripe, Texture, Textured, Viscose, Wallcovering, White, Woven",
+   "sampleVariantId": 13940762443888,
+   "sampleSku": "PRX-79083-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498782007408,
+   "handle": "lido-linen-walls-prx-79084",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gold, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13940765163632,
+   "sampleSku": "PRX-79084-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498782236784,
+   "handle": "lido-linen-walls-prx-79085",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Grasscloth, Green, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Woven",
+   "sampleVariantId": 13940768768112,
+   "sampleSku": "PRX-79085-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498782531696,
+   "handle": "lido-linen-walls-prx-79086",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Woven",
+   "sampleVariantId": 13940773814384,
+   "sampleSku": "PRX-79086-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498782662768,
+   "handle": "lido-linen-walls-prx-79087",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Blue, Bone, Charcoal, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering",
+   "sampleVariantId": 13940776796272,
+   "sampleSku": "PRX-79087-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498782924912,
+   "handle": "lido-linen-walls-prx-79088",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gold, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13940782628976,
+   "sampleSku": "PRX-79088-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498783088752,
+   "handle": "lido-linen-walls-prx-79089",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Rustic, Showroom Line, Stripe, Textured, Viscose, Wallcovering",
+   "sampleVariantId": 13940787019888,
+   "sampleSku": "PRX-79089-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792227450931,
+   "handle": "lime-cay-sand-dwpr-426336",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Grasscloth, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Brown, Lime Cay, Linen, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077184051,
+   "sampleSku": "DWPN-100998",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1498772570224,
+   "handle": "linean-linen-walls-prx-79032",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940598341744,
+   "sampleSku": "PRX-79032-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498772734064,
+   "handle": "linean-linen-walls-prx-79033",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940600045680,
+   "sampleSku": "PRX-79033-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498772897904,
+   "handle": "linean-linen-walls-prx-79034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940601389168,
+   "sampleSku": "PRX-79034-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498773127280,
+   "handle": "linean-linen-walls-prx-79035",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940608303216,
+   "sampleSku": "PRX-79035-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498773323888,
+   "handle": "linean-linen-walls-prx-79036",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940614463600,
+   "sampleSku": "PRX-79036-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498773454960,
+   "handle": "linean-linen-walls-prx-79037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940614692976,
+   "sampleSku": "PRX-79037-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498773651568,
+   "handle": "linean-linen-walls-prx-79038",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13940615708784,
+   "sampleSku": "PRX-79038-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498773848176,
+   "handle": "linean-linen-walls-prx-79039",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940619903088,
+   "sampleSku": "PRX-79039-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498774077552,
+   "handle": "linean-linen-walls-prx-79040",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Eggshell, Fabric, Linen, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13940623605872,
+   "sampleSku": "PRX-79040-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498774274160,
+   "handle": "linean-linen-walls-prx-79041",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Linen, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Steel, Textured, Wallcovering",
+   "sampleVariantId": 13940626554992,
+   "sampleSku": "PRX-79041-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498774438000,
+   "handle": "linean-linen-walls-prx-79042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gold, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940632387696,
+   "sampleSku": "PRX-79042-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498774601840,
+   "handle": "linean-linen-walls-prx-79043",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Silver, Textured, Wallcovering, White",
+   "sampleVariantId": 13940633993328,
+   "sampleSku": "PRX-79043-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498774765680,
+   "handle": "linean-linen-walls-prx-79044",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gold, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Taupe, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940636811376,
+   "sampleSku": "PRX-79044-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498775060592,
+   "handle": "linean-linen-walls-prx-79045",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940642578544,
+   "sampleSku": "PRX-79045-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498775257200,
+   "handle": "linean-linen-walls-prx-79046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13940646477936,
+   "sampleSku": "PRX-79046-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498775453808,
+   "handle": "linean-linen-walls-prx-79047",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940648738928,
+   "sampleSku": "PRX-79047-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498775584880,
+   "handle": "linean-linen-walls-prx-79048",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940650311792,
+   "sampleSku": "PRX-79048-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792228171827,
+   "handle": "linen-island-azure-dwpr-426366",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Navy, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078068787,
+   "sampleSku": "DWPN-101016",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227975219,
+   "handle": "linen-island-bordeaux-dwpr-426360",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44090077872179,
+   "sampleSku": "DWPN-101010",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227745843,
+   "handle": "linen-island-cocoa-dwpr-426355",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Cocoa, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077478963,
+   "sampleSku": "DWPN-101005",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228040755,
+   "handle": "linen-island-driftwood-dwpr-426362",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Gold, Gray-brown, Hallway, Hospitality, IMO Marine Grade, Insects, Light Beige, Light Taupe, Linen, Linen Island, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077937715,
+   "sampleSku": "DWPN-101012",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228007987,
+   "handle": "linen-island-dune-dwpr-426361",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Light Brown, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077904947,
+   "sampleSku": "DWPN-101011",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227483699,
+   "handle": "linen-island-espresso-dwpr-426349",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Light Brown, Linen, Linen Island, Living Room, Luxury, Medium Brown, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077216819,
+   "sampleSku": "DWPN-100999",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228368435,
+   "handle": "linen-island-fern-dwpr-426371",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Botanical, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gold, Dark Olive, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Fern, Gold, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090078298163,
+   "sampleSku": "DWPN-101021",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227516467,
+   "handle": "linen-island-forest-dwpr-426350",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Green, Deep Gray, Deep Olive Green, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Forest, Forest Green, Green, Hospitality, IMO Marine Grade, Insects, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Olive Green, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077249587,
+   "sampleSku": "DWPN-101000",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228237363,
+   "handle": "linen-island-greige-dwpr-426368",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Gray-brown, Greige, Hospitality, IMO Marine Grade, Insects, Linen, Linen Island, Living Room, Luxury, Minimalist, Mocha, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Sophisticated, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078134323,
+   "sampleSku": "DWPN-101018",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228204595,
+   "handle": "linen-island-lagoon-dwpr-426367",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Lagoon, Linen, Linen Island, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Silver, Solid, Teal, Texture, Textured, Transitional, Turquoise, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078101555,
+   "sampleSku": "DWPN-101017",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227909683,
+   "handle": "linen-island-linen-dwpr-426359",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Ecru, Eggshell, Embossed, Fabric, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Linen Island, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Pale Beige, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077642803,
+   "sampleSku": "DWPN-101009",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228270131,
+   "handle": "linen-island-moss-dwpr-426369",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Linen, Linen Island, Linen Texture, Living Room, Luxury, Moss, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Modern, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078167091,
+   "sampleSku": "DWPN-101019",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228401203,
+   "handle": "linen-island-mushroom-dwpr-426372",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Linen, Linen Island, Linen Texture, Living Room, Luxury, Minimalist, Mushroom, Needs-Price, NFPA 260 Compliant, Oatmeal, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078330931,
+   "sampleSku": "DWPN-101022",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227680307,
+   "handle": "linen-island-peacock-dwpr-426354",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Teal, display_variant, Embossed, Fabric, Faux Leather, Graphite, Hospitality, IMO Marine Grade, Linen, Linen Island, Linen Texture, Living Room, Luxury, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Scandinavian, Serene, Showroom Line, Slate Gray, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077413427,
+   "sampleSku": "DWPN-101004",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227811379,
+   "handle": "linen-island-pewter-dwpr-426356",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Light Gray, Linen, Linen Island, Linen Texture, Living Room, Luxury, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077544499,
+   "sampleSku": "DWPN-101006",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227844147,
+   "handle": "linen-island-sage-dwpr-426357",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Khaki, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Olive, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sage, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077577267,
+   "sampleSku": "DWPN-101007",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227614771,
+   "handle": "linen-island-sand-dwpr-426352",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Light Beige, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077347891,
+   "sampleSku": "DWPN-101002",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228335667,
+   "handle": "linen-island-sapphire-dwpr-426370",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Gunmetal, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sapphire, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078265395,
+   "sampleSku": "DWPN-101020",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227647539,
+   "handle": "linen-island-slate-dwpr-426353",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Light Gray, Linen, Linen Island, Living Room, Luxury, Medium Gray, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Slate, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090077380659,
+   "sampleSku": "DWPN-101003",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228106291,
+   "handle": "linen-island-terracotta-dwpr-426364",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rust, Rustic, Showroom Line, Solid, Terracotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078003251,
+   "sampleSku": "DWPN-101014",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228073523,
+   "handle": "linen-island-toffee-dwpr-426363",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Light Brown, Linen, Linen Island, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077970483,
+   "sampleSku": "DWPN-101013",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227876915,
+   "handle": "linen-island-umber-dwpr-426358",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090077610035,
+   "sampleSku": "DWPN-101008",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792227582003,
+   "handle": "linen-island-walnut-dwpr-426351",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Linen, Linen Island, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Russet, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44090077315123,
+   "sampleSku": "DWPN-101001",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228139059,
+   "handle": "linen-island-wheat-dwpr-426365",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Light Beige, Linen, Linen Island, Linen Texture, Living Room, Luxury, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44090078036019,
+   "sampleSku": "DWPN-101015",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500225142896,
+   "handle": "linia-faux-durable-linen-xoh-33428",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Brown, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Faux, Faux Linen, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962200678512,
+   "sampleSku": "XOH-33428-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500225863792,
+   "handle": "linia-faux-durable-linen-xoh-33429",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Faux, Faux Linen, Gold, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962212835440,
+   "sampleSku": "XOH-33429-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500233105520,
+   "handle": "linia-faux-durable-linen-xoh-33431",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Faux, Faux Linen, Gray, Light Gray, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962309927024,
+   "sampleSku": "XOH-33431-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500234154096,
+   "handle": "linia-faux-durable-linen-xoh-33432",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, display_variant, Faux, Faux Linen, Grasscloth, Light Brown, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962323034224,
+   "sampleSku": "XOH-33432-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500236152944,
+   "handle": "linia-faux-durable-linen-xoh-33434",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Faux, Faux Linen, Gray, Light Gray, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Silver, Textured, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962348527728,
+   "sampleSku": "XOH-33434-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500238348400,
+   "handle": "linia-faux-durable-linen-xoh-33436",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, display_variant, Faux, Faux Linen, Grasscloth, Light Brown, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962375659632,
+   "sampleSku": "XOH-33436-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500239298672,
+   "handle": "linia-faux-durable-linen-xoh-33437",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Commercial, Commercial Wallcovering, display_variant, Fabric, Faux, Faux Linen, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Tan, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962388602992,
+   "sampleSku": "XOH-33437-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500240740464,
+   "handle": "linia-faux-durable-linen-xoh-33438",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Faux, Faux Linen, Light Beige, Light Gray, Linen, Linia Faux Durable Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Rustic, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962398728304,
+   "sampleSku": "XOH-33438-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803016816,
+   "handle": "locavita-basketweave-prg-47824",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Class A Fire Rated, Coastal, Commercial, Cream, Cream White With Slubs, display_variant, Entryway, Grasscloth, Hand Crafted, Light Beige, Living Room, Locavita Basketweave, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Silver, Solid/Textural, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920869089392,
+   "sampleSku": "PRG-47824-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498803208304,
+   "handle": "lovela-linen-walls-prx-79179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Herringbone, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13941182693488,
+   "sampleSku": "PRX-79179-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498803372144,
+   "handle": "lovela-linen-walls-prx-79180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Solid, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13941187608688,
+   "sampleSku": "PRX-79180-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498803535984,
+   "handle": "lovela-linen-walls-prx-79181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13941189607536,
+   "sampleSku": "PRX-79181-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498803798128,
+   "handle": "lovela-linen-walls-prx-79182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13941193539696,
+   "sampleSku": "PRX-79182-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498803994736,
+   "handle": "lovela-linen-walls-prx-79183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Herringbone, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Rustic, Showroom Line, Silver, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13941199503472,
+   "sampleSku": "PRX-79183-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501382049904,
+   "handle": "luega-glam-weave-prt-16106",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Copper, display_variant, Glam, Luega Glam Weave, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Textured, Traditional, Vinyl, Wallcovering, Walnut",
+   "sampleVariantId": 13975691100272,
+   "sampleSku": "PRT-16106-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501383491696,
+   "handle": "luega-glam-weave-prt-16112",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Glam, Gold, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, SHELL, Showroom Line, Silver, Steel, Stripe, Textured, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13975711318128,
+   "sampleSku": "PRT-16112-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496803803248,
+   "handle": "lululama-mica-prg-47828",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Class A Fire Rated, Commercial, Cork, Cream, Cream With Gold, display_variant, Entryway, Glam, Hand Crafted, Light Brown, Living Room, Lululama Mica, Mica, Minimalist, Modern, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Scandinavian, Showroom Line, Solid/Textural, Tan, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13920883245168,
+   "sampleSku": "PRG-47828-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791161606195,
+   "handle": "luxury-cay-pitch",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Tones, Deep, display_variant, Ebony, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Solid, Solid Color, Sophisticated, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086099705907,
+   "sampleSku": "DWPN-101042",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791161737267,
+   "handle": "luxury-cay-truffle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather-like, LEED Compatible, Living Room, Luxe, Medium Brown, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Rustic, Showroom Line, Silicone Hybrid, Smooth, Solid, Sophisticated, Subtle Texture, Taupe, Textured, Traditional, Truffle, Vinyl, Wallcovering",
+   "sampleVariantId": 44086099836979,
+   "sampleSku": "DWPN-101046",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 4395705335859,
+   "handle": "luxuria-fine-textile-wallcoverings-m4081",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Burnt Orange, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Luxuria Fine Textile, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Rust, Showroom Line, Textile, Texture, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 31404070961203,
+   "sampleSku": "M4081",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395703337011,
+   "handle": "luxuria-fine-textile-wallcoverings-m2610",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Fuchsia, Luxuria Fine Textile, Magenta, material-group-textured, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Pink, Showroom Line, Textile, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31404060377139,
+   "sampleSku": "M2610",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395703730227,
+   "handle": "luxuria-fine-textile-wallcoverings-m2650",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Camel, Class A Fire Rated, Commercial, Contemporary, display_variant, Goldenrod, Luxuria Fine Textile, Minimalist, Needs-Image, Needs-Price, Needs-Width, Ochre, Orange, Phillipe Romano, Showroom Line, Solid, Textile, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 31404061294643,
+   "sampleSku": "M2650",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395702714419,
+   "handle": "luxuria-fine-textile-wallcoverings-m2377031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Light Gray, Linen, Luxuria Fine Textile, Minimalist, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Showroom Line, Stripe, Textile, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31404056281139,
+   "sampleSku": "M2377031",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395703369779,
+   "handle": "luxuria-fine-textile-wallcoverings-m2611",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Light Golden Yellow, Lightgoldenrodyellow, Luxuria Fine Textile, material-group-wood-veneer, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Stripe, Textile, Texture, Textured, Traditional, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 31404060442675,
+   "sampleSku": "M2611",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395712806963,
+   "handle": "luxuria-fine-textile-wallcoverings-m6428",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Dark Brown, display_variant, Fabric, Luxuria Fine Textile, Maroon, material-group-natural-fiber, Needs-Image, Needs-Price, Needs-Width, Oxblood, Phillipe Romano, Red, Showroom Line, Stripe, Textile, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 31404106055731,
+   "sampleSku": "M6428",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395702976563,
+   "handle": "luxuria-fine-textile-wallcoverings-m2399",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Fabric, Luxuria Fine Textile, material-group-linen, Minimalist, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Showroom Line, Solid, Textile, Texture, Textured, Wallcovering, Wheat, Woven",
+   "sampleVariantId": 31404056707123,
+   "sampleSku": "M2399",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395704483891,
+   "handle": "luxuria-fine-textile-wallcoverings-m3003",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Light Beige, Luxuria Fine Textile, Needs-Image, Needs-Price, Needs-Width, Pale Beige, Phillipe Romano, Showroom Line, Silver, Stripe, Textile, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 31404063719475,
+   "sampleSku": "M3003",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395702517811,
+   "handle": "luxuria-fine-textile-wallcoverings-m2340",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Light Gray, Luxuria Fine Textile, material-group-natural-fiber, Minimalist, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Pale Green, Phillipe Romano, Showroom Line, Silver, Stripe, Textile, Texture, Textured, Wallcovering",
+   "sampleVariantId": 31404055953459,
+   "sampleSku": "M2340",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395708121139,
+   "handle": "luxuria-fine-textile-wallcoverings-m6028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Contemporary, Dark Red, display_variant, Fabric, Floral, Light Pink, Luxuria Fine Textile, Luxuria Pale Rose, material-group-natural-fiber, Needs-Image, Needs-Price, Needs-Width, Pale Rose, Petal, Phillipe Romano, Red, Showroom Line, Stripe, Textile, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 31404083478579,
+   "sampleSku": "M6028",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395708809267,
+   "handle": "luxuria-fine-textile-wallcoverings-m6063",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Green, Greige, Light Gray, Luxuria Fine Textile, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage Green, Showroom Line, Solid, Textile, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 31404086034483,
+   "sampleSku": "M6063",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395704188979,
+   "handle": "luxuria-fine-textile-wallcoverings-m2691",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Celadon, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Green, Light Gray, Luxuria Fine Textile, material-group-natural-fiber, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Sage, Sea Green, Showroom Line, Solid, Textile, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 31404062113843,
+   "sampleSku": "M2691",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395703828531,
+   "handle": "luxuria-fine-textile-wallcoverings-m2660",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Burnt Umber, Class A Fire Rated, Commercial, Contemporary, Dark Brown, display_variant, Luxuria Fine Textile, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Red, Showroom Line, Stripe, Tan, Terracotta, Textile, Texture, Textured, Traditional, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 31404061458483,
+   "sampleSku": "M2660",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 4395706482739,
+   "handle": "luxuria-fine-textile-wallcoverings-m4595",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Luxuria Fine Textile, material-group-linen, Mushroom, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Showroom Line, Tan, Taupe, Textile, Texture, Textured, Transitional, Wallcovering, Woven",
+   "sampleVariantId": 31404074958899,
+   "sampleSku": "M4595",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792228597811,
+   "handle": "luxury-cay-azure-dwpr-426416",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Powder Blue, Serene, Showroom Line, Slate Blue, Solid, Steel Blue, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078527539,
+   "sampleSku": "DWPN-101026",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229285939,
+   "handle": "luxury-cay-bordeaux-dwpr-426434",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bordeaux, Brown, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Maroon, display_variant, Embossed, Fabric, Faux Leather, Garnet, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Luxury Cay, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Russet, Showroom Line, Sienna, Solid, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090079248435,
+   "sampleSku": "DWPN-101044",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228794419,
+   "handle": "luxury-cay-camel-dwpr-426422",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Tan, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078724147,
+   "sampleSku": "DWPN-101032",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228565043,
+   "handle": "luxury-cay-charcoal-dwpr-426415",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Navy, Dim Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate Gray, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078494771,
+   "sampleSku": "DWPN-101025",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228630579,
+   "handle": "luxury-cay-cocoa-dwpr-426417",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Golden Brown, Hospitality, IMO Marine Grade, Insects, Leather, Light Golden Brown, Light Tan, Living Room, Luxury, Luxury Cay, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078560307,
+   "sampleSku": "DWPN-101027",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229089331,
+   "handle": "luxury-cay-cream-dwpr-426429",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090079019059,
+   "sampleSku": "DWPN-101039",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228827187,
+   "handle": "luxury-cay-driftwood-dwpr-426423",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Eggshell, Embossed, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Insects, Leather, Light Taupe, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078756915,
+   "sampleSku": "DWPN-101033",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229122099,
+   "handle": "luxury-cay-dune-dwpr-426430",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44090079051827,
+   "sampleSku": "DWPN-101040",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229351475,
+   "handle": "luxury-cay-espresso-dwpr-426436",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Luxury Cay, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090079313971,
+   "sampleSku": "DWPR-426436",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792228892723,
+   "handle": "luxury-cay-fawn-dwpr-426425",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fawn, Hospitality, IMO Marine Grade, Leather, Light Tan, Living Room, Luxury, Luxury Cay, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078822451,
+   "sampleSku": "DWPN-101035",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228925491,
+   "handle": "luxury-cay-greige-dwpr-426426",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Greige, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Light Taupe, Living Room, Luxury, Luxury Cay, Minimalist, Mocha, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078855219,
+   "sampleSku": "DWPN-101036",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228499507,
+   "handle": "luxury-cay-ivory-dwpr-426413",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Ivory, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090078429235,
+   "sampleSku": "DWPN-101023",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228859955,
+   "handle": "luxury-cay-linen-dwpr-426424",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Insects, Light Beige, Linen, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078789683,
+   "sampleSku": "DWPN-101034",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229154867,
+   "handle": "luxury-cay-moss-dwpr-426431",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Moss, Needs-Price, NFPA 260 Compliant, Office, Olive, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090079084595,
+   "sampleSku": "DWPN-101041",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228958259,
+   "handle": "luxury-cay-mushroom-dwpr-426427",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078887987,
+   "sampleSku": "DWPN-101037",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229187635,
+   "handle": "luxury-cay-onyx-dwpr-426432",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090079150131,
+   "sampleSku": "DWPR-426432",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792229253171,
+   "handle": "luxury-cay-pebble-dwpr-426433",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Leather, Light Taupe, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Pebble, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090079215667,
+   "sampleSku": "DWPN-101043",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228663347,
+   "handle": "luxury-cay-pewter-dwpr-426418",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Taupe, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078593075,
+   "sampleSku": "DWPN-101028",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229023795,
+   "handle": "luxury-cay-sage-dwpr-426428",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Insects, Khaki, Leather, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Olive, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Putty, Sage, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078953523,
+   "sampleSku": "DWPN-101038",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228761651,
+   "handle": "luxury-cay-sand-dwpr-426421",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078691379,
+   "sampleSku": "DWPN-101031",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228728883,
+   "handle": "luxury-cay-slate-dwpr-426420",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Industrial, Insects, Leather, Light Gray, Living Room, Luxury, Luxury Cay, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090078658611,
+   "sampleSku": "DWPN-101030",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228696115,
+   "handle": "luxury-cay-toffee-dwpr-426419",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gold, Hospitality, IMO Marine Grade, Insects, Leather, Light Tan, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Toffee, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078625843,
+   "sampleSku": "DWPN-101029",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792228532275,
+   "handle": "luxury-cay-walnut-dwpr-426414",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Golden Brown, Hospitality, IMO Marine Grade, Insects, Leather, Light Brown, Living Room, Luxury, Luxury Cay, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090078462003,
+   "sampleSku": "DWPN-101024",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229318707,
+   "handle": "luxury-cay-wheat-dwpr-426435",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fawn, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Luxury Cay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Wheat",
+   "sampleVariantId": 44090079281203,
+   "sampleSku": "DWPN-101045",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1496799182960,
+   "handle": "machu-pichu-backetweave-prg-47805",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, Brown, Class A Fire Rated, Coastal, Commercial, display_variant, Entryway, Farmhouse, Geometric, Grasscloth, Hand Crafted, Living Room, Machu Pichu Backetweave, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Showroom Line, Tan, Textural, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13920808403056,
+   "sampleSku": "PRG-47805-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792229548083,
+   "handle": "marigot-smoke-dwpr-426479",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Gray, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Silver Gray, Smoke, Solid, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090079576115,
+   "sampleSku": "DWPN-101048",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229580851,
+   "handle": "marigot-midnight-dwpr-426480",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Blue, Dark Gray, display_variant, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Linen, Living Room, Minimalist, Navy, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate Gray, Solid, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090079608883,
+   "sampleSku": "DWPN-101049",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229613619,
+   "handle": "marigot-dusty-rose-dwpr-426481",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Dusty Rose, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Living Room, Needs-Price, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pink, Polyester Blend, Private Label, Red, Rose, Rustic, Showroom Line, Solid, Sustainable, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Warm Reds, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090079641651,
+   "sampleSku": "DWPN-101050",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229679155,
+   "handle": "marigot-azure-dwpr-426482",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Denim, Dark Slate Gray, Denim, Denim Blue, Dim Gray, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate Gray, Solid, Steel Blue, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090079871027,
+   "sampleSku": "DWPN-101051",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229711923,
+   "handle": "marigot-dove-dwpr-426483",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Ash, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, display_variant, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Linen, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Scandinavian, Serene, Showroom Line, Silver, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090079903795,
+   "sampleSku": "DWPN-101052",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229744691,
+   "handle": "marigot-pewter-dwpr-426484",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Serene, Showroom Line, Solid, Sustainable, Taupe, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090079936563,
+   "sampleSku": "DWPN-101053",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229777459,
+   "handle": "marigot-ash-dwpr-426485",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Ash, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, Fabric-backed Vinyl, FR Additives Free, Galleria, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090079969331,
+   "sampleSku": "DWPN-101054",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229810227,
+   "handle": "marigot-fog-dwpr-426486",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Eggshell, FR Additives Free, Galleria, Gray, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Linen, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Sage, Serene, Showroom Line, Solid, Sustainable, Textured, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080002099,
+   "sampleSku": "DWPN-101055",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229842995,
+   "handle": "marigot-driftwood-dwpr-426487",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, FR Additives Free, Galleria, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Solid, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080034867,
+   "sampleSku": "DWPN-101056",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229875763,
+   "handle": "marigot-walnut-dwpr-426488",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, Farmhouse, FR Additives Free, Galleria, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width",
+   "sampleVariantId": 44090080067635,
+   "sampleSku": "DWPN-101057",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792229941299,
+   "handle": "marigot-cobalt-dwpr-426489",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, display_variant, Eggshell, Fabric-backed Vinyl, FR Additives Free, Galleria, Gray, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, Serene, Showroom Line, Slate Gray, Solid, Steel Blue, Sustainable, Textured, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080133171,
+   "sampleSku": "DWPN-101058",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233381939,
+   "handle": "maho-bay-ash-dwpr-426615",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Linen, Living Room, Luxury, Maho Bay, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083934259,
+   "sampleSku": "DWPR-426615",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233283635,
+   "handle": "maho-bay-azure-dwpr-426613",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dusty Blue, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Slate Blue, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083835955,
+   "sampleSku": "DWPR-426613",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233644083,
+   "handle": "maho-bay-bordeaux-dwpr-426622",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dining Room, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Maroon, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090084360243,
+   "sampleSku": "DWPR-426622",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233676851,
+   "handle": "maho-bay-cobalt-dwpr-426623",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Cobalt, Commercial, Contemporary, Contract Grade, display_variant, Dusty Blue, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Indigo, Leather, Living Room, Luxury, Maho Bay, Minimalist, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Slate Gray, Solid, Suede, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084393011,
+   "sampleSku": "DWPR-426623",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233316403,
+   "handle": "maho-bay-dove-dwpr-426614",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Dove, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Maho Bay, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Suede, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083868723,
+   "sampleSku": "DWPR-426614",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233513011,
+   "handle": "maho-bay-driftwood-dwpr-426618",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084229171,
+   "sampleSku": "DWPR-426618",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233152563,
+   "handle": "maho-bay-dune-dwpr-426610",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dune, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Linen, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083704883,
+   "sampleSku": "DWPR-426610",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233054259,
+   "handle": "maho-bay-espresso-dwpr-426608",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Maho Bay, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Textured, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090083606579,
+   "sampleSku": "DWPN-101113",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233414707,
+   "handle": "maho-bay-fog-dwpr-426616",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Fog, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Leather, Living Room, Luxury, Maho Bay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Solid, Sophisticated, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083967027,
+   "sampleSku": "DWPN-101121",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232824883,
+   "handle": "maho-bay-goldenrod-dwpr-426603",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gold, Goldenrod, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Mustard, Mustard Yellow, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Suede, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090083377203,
+   "sampleSku": "DWPN-101109",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233578547,
+   "handle": "maho-bay-graphite-dwpr-426620",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Maho Bay, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Gray, Solid, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084294707,
+   "sampleSku": "DWPN-101125",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233087027,
+   "handle": "maho-bay-linen-dwpr-426609",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic Modern, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083639347,
+   "sampleSku": "DWPR-426609",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233250867,
+   "handle": "maho-bay-mahogany-dwpr-426612",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Eggshell, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Mahogany, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090083803187,
+   "sampleSku": "DWPR-426612",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233775155,
+   "handle": "maho-bay-moss-dwpr-426625",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hallway, Hospitality, IMO Marine Grade, Khaki, Leather, Light Olive, Living Room, Luxury, Maho Bay, Moss, Needs-Price, NFPA 260 Compliant, Olive, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage Green, Serene, Showroom Line, Solid, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084491315,
+   "sampleSku": "DWPN-101130",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233218099,
+   "handle": "maho-bay-peacock-dwpr-426611",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Peacock, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Teal, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083770419,
+   "sampleSku": "DWPR-426611",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232890419,
+   "handle": "maho-bay-pewter-dwpr-426604",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Taupe, Living Room, Luxury, Maho Bay, Minimalist, Mocha, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Suede, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083442739,
+   "sampleSku": "DWPN-101110",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233545779,
+   "handle": "maho-bay-sage-dwpr-426619",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084261939,
+   "sampleSku": "DWPR-426619",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232988723,
+   "handle": "maho-bay-sand-dwpr-426607",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Suede, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083541043,
+   "sampleSku": "DWPR-426607",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232759347,
+   "handle": "maho-bay-slate-dwpr-426602",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash Gray, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Slate Gray, Solid, Suede, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083311667,
+   "sampleSku": "DWPN-101108",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232923187,
+   "handle": "maho-bay-smoke-dwpr-426605",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxury, Maho Bay, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Suede, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083475507,
+   "sampleSku": "DWPN-101111",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233480243,
+   "handle": "maho-bay-stone-dwpr-426617",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Ostrich, Pale Gray, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Stone, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084196403,
+   "sampleSku": "DWPR-426617",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233840691,
+   "handle": "maho-bay-toffee-dwpr-426626",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Luxury, Maho Bay, Minimalist, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Textured, Timeless, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090084556851,
+   "sampleSku": "DWPN-101131",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792233611315,
+   "handle": "maho-bay-walnut-dwpr-426621",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maho Bay, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Suede, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44090084327475,
+   "sampleSku": "DWPR-426621",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233742387,
+   "handle": "maho-bay-zinc-dwpr-426624",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Light Grey, Living Room, Luxury, Maho Bay, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Silver Grey, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Zinc",
+   "sampleVariantId": 44090084458547,
+   "sampleSku": "DWPN-101129",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499479933040,
+   "handle": "maiden-olefin-textile-walls-xwf-52293",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Leed Walls, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953077936240,
+   "sampleSku": "XWF-52293-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499480457328,
+   "handle": "maiden-olefin-textile-walls-xwh-52296",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13953088487536,
+   "sampleSku": "XWH-52296-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499480850544,
+   "handle": "maiden-olefin-textile-walls-xwh-52298",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gold, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, White, Woven, Yellow",
+   "sampleVariantId": 13953099169904,
+   "sampleSku": "XWH-52298-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499481833584,
+   "handle": "maiden-olefin-textile-walls-xwh-52304",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Fabric, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Tan, Textured, Vinyl Wallcovering, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13953115947120,
+   "sampleSku": "XWH-52304-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230006835,
+   "handle": "manchioneel-ivory-dwpr-426491",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Earth Tones, Fabric, FR Additives Free, Global Inspired, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off-white, Organic Modern, Pale Beige, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Sustainable, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, White, Wide Width, Woven",
+   "sampleVariantId": 44090080198707,
+   "sampleSku": "DWPN-101059",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230039603,
+   "handle": "manchioneel-sand-dwpr-426492",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, Dark Tan, display_variant, DMF-Free, Fabric, Farmhouse, FR Additives Free, Geometric, Global Inspired, Graffiti-Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Rustic, Showroom Line, Sustainable, Tan, Tekloom, Textured, Traditional, Upholstery, Wallcovering, Warm, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080231475,
+   "sampleSku": "DWPN-101060",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230105139,
+   "handle": "manchioneel-slate-dwpr-426493",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Graffiti-Free, Granite Gray, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Sustainable, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080297011,
+   "sampleSku": "DWPN-101061",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230203443,
+   "handle": "manchioneel-sky-dwpr-426494",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bathroom, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Graffiti-Free, Grasscloth, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Blue, Light Gray, Lightblue, Lightyellow, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Pale Green, Pale Yellow, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Powder Blue, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Sustainable, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, White, Wide Width, Woven",
+   "sampleVariantId": 44090080428083,
+   "sampleSku": "DWPN-101062",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230236211,
+   "handle": "manchioneel-smoke-dwpr-426495",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, DMF-Free, Dove Gray, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Graffiti-Free, Gray, Green Building, Grey, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Silver, Sustainable, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080493619,
+   "sampleSku": "DWPN-101063",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230301747,
+   "handle": "manchioneel-ice-dwpr-426496",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Basketweave, Bathroom, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Blue, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Oatmeal, Pale Turquoise, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Sky Blue, Steel Blue, Sustainable, Teal, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080559155,
+   "sampleSku": "DWPN-101064",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230334515,
+   "handle": "manchioneel-linen-dwpr-426497",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, FR Additives Free, Global Inspired, Gold, Graffiti-Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic Modern, Pale Goldenrod, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Sustainable, Tan, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven, Yellow",
+   "sampleVariantId": 44090080591923,
+   "sampleSku": "DWPN-101065",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230367283,
+   "handle": "manchioneel-dove-dwpr-426498",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Gray, Denim, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Light Grey, Living Room, Medium Grey, Minimalist, Modern, Navy, Navy Blue, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Serene, Showroom Line, Steel Blue, Sustainable, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080624691,
+   "sampleSku": "DWPN-101066",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230400051,
+   "handle": "manchioneel-silver-dwpr-426499",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Global Inspired, Graffiti-Free, Grasscloth, Gray, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Lattice, LEED Compatible, Light Gray, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Sage, Sage Green, Serene, Showroom Line, Slate Blue, Steel Blue, Sustainable, Taupe, Tekloom, Textured, Upholstery, Vinyl, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080657459,
+   "sampleSku": "DWPN-101067",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230432819,
+   "handle": "manchioneel-dune-dwpr-426500",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Global Inspired, Graffiti-Free, Grasscloth, Grasscloth Weave, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Green, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Off-white, Olive Green, Organic Modern, Pale Beige, Pale Green, Pale Yellow, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pistachio, Polyester Blend, Private Label, PVC-Free, Sage, Sage Green, Scandinavian, Serene, Showroom Line, Sustainable, Tekloom, Textured, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080690227,
+   "sampleSku": "DWPN-101068",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230465587,
+   "handle": "manchioneel-wheat-dwpr-426501",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, FR Additives Free, Global Inspired, Graffiti-Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic Modern, Pale Tan, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester Blend, Private Label, PVC-Free, Scandinavian, Serene, Showroom Line, Straw, Sustainable, Tan, Tekloom, Textured, Transitional, Upholstery, Wallcovering, Wet/Solvent Cleanable, Wide Width, Woven",
+   "sampleVariantId": 44090080722995,
+   "sampleSku": "DWPN-101069",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500069003376,
+   "handle": "malibu-coast-paper-weave-prp-56531",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, display_variant, Grasscloth, Lattice, Natural, Natural Wallcovering, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Pink, Showroom Line, Taupe, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959781449840,
+   "sampleSku": "PRP-56531-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500069429360,
+   "handle": "malibu-coast-paper-weave-prp-56532",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Coastal, Commercial, display_variant, Lattice, Lightblue, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Teal, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13959786463344,
+   "sampleSku": "PRP-56532-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500070740080,
+   "handle": "malibu-coast-paper-weave-prp-56535",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Contemporary, display_variant, Geometric, Gray, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959801503856,
+   "sampleSku": "PRP-56535-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496098406512,
+   "handle": "manhattan-cork-vinyl-cork-840",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, Commercial, Commercial Wallcovering, Cork, Cotton, display_variant, Entryway, Living Room, Manhattan Cork Vinyl, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Polyester, Portugal Cork, Rustic, Scandinavian, Showroom Line, Solid/Textural, Straited Natural Cork, Stripe, Tan, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44170990780467,
+   "sampleSku": "CORK-840-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500667871344,
+   "handle": "mare-island-stiple-dots-durable-xcj-34376",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13967179022448,
+   "sampleSku": "XCJ-34376-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500668297328,
+   "handle": "mare-island-stiple-dots-durable-xcj-34377",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Eggshell, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13967182037104,
+   "sampleSku": "XCJ-34377-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500669050992,
+   "handle": "mare-island-stiple-dots-durable-xcj-34379",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Gray, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967186034800,
+   "sampleSku": "XCJ-34379-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500670066800,
+   "handle": "mare-island-stiple-dots-durable-xcj-34381",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Gray, Linen, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967201730672,
+   "sampleSku": "XCJ-34381-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500670591088,
+   "handle": "mare-island-stiple-dots-durable-xcj-34382",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13967204384880,
+   "sampleSku": "XCJ-34382-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500671213680,
+   "handle": "mare-island-stiple-dots-durable-xcj-34383",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Eggshell, Gray, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967212249200,
+   "sampleSku": "XCJ-34383-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500671770736,
+   "handle": "mare-island-stiple-dots-durable-xcj-34384",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Dots, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967214968944,
+   "sampleSku": "XCJ-34384-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500672360560,
+   "handle": "mare-island-stiple-dots-durable-xcj-34385",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Dots, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967221391472,
+   "sampleSku": "XCJ-34385-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792229515315,
+   "handle": "marigot-slate-dwpr-426478",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Marigot, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090079543347,
+   "sampleSku": "DWPN-101047",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280885299,
+   "handle": "blue-marlin-amber-dwpr-425330",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amber, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Eggshell, Embossed, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Ostrich Skin, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812012083,
+   "sampleSku": "DWPN-100308",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280819763,
+   "handle": "blue-marlin-camel-dwpr-425329",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brass, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Dot, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107811946547,
+   "sampleSku": "DWPN-100307",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281081907,
+   "handle": "blue-marlin-cinnamon-dwpr-425334",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, Brown, Burnt Sienna, CA TB 117 Compliant, Cinnamon, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Brown, Living Room, Lodge, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Patterned, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812208691,
+   "sampleSku": "DWPN-100312",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280721459,
+   "handle": "blue-marlin-espresso-dwpr-425327",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Durable, Embossed, Espresso, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxury, Marlin, Medium Brown, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Sophisticated, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107811848243,
+   "sampleSku": "DWPN-100305",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281344051,
+   "handle": "blue-marlin-goldenrod-dwpr-425338",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Dot, Embossed, Fabric, Faux Leather, Gold, Golden Tan, Goldenrod, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Marigold, Marlin, Minimalist, Modern Farmhouse, Mustard, Needs-Price, NFPA 260 Compliant, Office, Orange, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Reptile, Showroom Line, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44107812470835,
+   "sampleSku": "DWPN-100316",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281442355,
+   "handle": "blue-marlin-ivory-dwpr-425340",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Ivory, Leather, Light Beige, Living Room, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44107812569139,
+   "sampleSku": "DWPN-100318",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280786995,
+   "handle": "blue-marlin-onyx-dwpr-425328",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Print, Animal Skin, Bedroom, Black, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux, Faux Leather, Gray, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Living Room, Luxe, Luxury, Marlin, Medium Gray, Minimalist, Modern, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107811913779,
+   "sampleSku": "DWPN-100306",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281212979,
+   "handle": "blue-marlin-pewter-dwpr-425336",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Print, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Linen, Living Room, Luxe, Luxury, Marlin, Minimalist, Modern, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Ostrich Leather, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107812339763,
+   "sampleSku": "DWPN-100314",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281049139,
+   "handle": "blue-marlin-saddle-dwpr-425333",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Ostrich Leather, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Saddle, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812175923,
+   "sampleSku": "DWPN-100311",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281147443,
+   "handle": "blue-marlin-sage-dwpr-425335",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Celadon, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Marlin, Matte, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Olive, Organic, Organic Modern, Ostrich, Ostrich Skin, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107812274227,
+   "sampleSku": "DWPN-100313",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281376819,
+   "handle": "blue-marlin-sand-dwpr-425339",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Farmhouse, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Ostrich Skin, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812503603,
+   "sampleSku": "DWPN-100317",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280950835,
+   "handle": "blue-marlin-sapphire-dwpr-425331",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Navy, Deep Blue, display_variant, Durable, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxury, Marlin, Midnight Blue, Minimalist, Modern, Modern Farmhouse, Navy, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Ostrich Skin, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44107812077619,
+   "sampleSku": "DWPN-100309",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796280983603,
+   "handle": "blue-marlin-terracotta-dwpr-425332",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Coral, display_variant, Embossed, Exotic, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxe, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Ostrich Skin, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Russet, Rustic, Showroom Line, Solid, Terra Cotta, Terracotta, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812110387,
+   "sampleSku": "DWPN-100310",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7796281278515,
+   "handle": "blue-marlin-toffee-dwpr-425337",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Lodge, Luxury, Marlin, Minimalist, Modern Farmhouse, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Ostrich Print, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Toffee, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44107812405299,
+   "sampleSku": "DWPN-100315",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500585885808,
+   "handle": "matika-xrp-34139",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, display_variant, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966245658736,
+   "sampleSku": "XRP-34139-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500586246256,
+   "handle": "matika-xrp-34140",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Commercial, display_variant, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966249525360,
+   "sampleSku": "XRP-34140-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500586541168,
+   "handle": "matika-xrp-34141",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966253326448,
+   "sampleSku": "XRP-34141-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500587589744,
+   "handle": "matika-xrp-34145",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966266237040,
+   "sampleSku": "XRP-34145-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876915763,
+   "handle": "dwjj-40750-matteo",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bella Italiano, Bone, Commercial, Dark Blue, display_variant, Geometric, Matteo, Matteo Printed Paperweave Naturals, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Stripe, Texture, Wallcovering",
+   "sampleVariantId": 41180289368115,
+   "sampleSku": "DWJJ-40750-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791164882995,
+   "handle": "maya-riviera-acorn",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Executive Office, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather-like, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Red, Residential, Rustic, Showroom Line, Sienna, Silicone Hybrid, Solid, Textured, Timeless, Traditional, Transitional, Umber, Uniform Grain, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086105702451,
+   "sampleSku": "DWPN-101070",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791165046835,
+   "handle": "maya-riviera-ash",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark, Dark Gray, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Global Inspired, Graffiti-Free, Gray, Green Building, Grey, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Solid, Sophisticated, Subtle Texture, Texture, Textured, Transitional, Uniform, Vinyl, Wallcovering",
+   "sampleVariantId": 44086105997363,
+   "sampleSku": "DWPN-101071",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791165341747,
+   "handle": "maya-riviera-buff",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Smooth Feel, Solid, Tan, Textured, Timeless, Traditional, Transitional, Uniform Grain, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086106521651,
+   "sampleSku": "DWPN-101073",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791165505587,
+   "handle": "maya-riviera-canvas",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Brown, Linen Look, Living Room, Minimalist, Needs-Price, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Oatmeal, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone Hybrid, Soft, Solid, Subtle Texture, Taupe, Textured, Vinyl, Wallcovering, Weave, Woven",
+   "sampleVariantId": 44086106783795,
+   "sampleSku": "DWPN-101074",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791165636659,
+   "handle": "maya-riviera-champagne",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone Hybrid, Soft, Solid, Subtle, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Uniform Grain, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086107045939,
+   "sampleSku": "DWPN-101075",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791165931571,
+   "handle": "maya-riviera-cobalt",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Cobalt, Commercial, Contemporary, Contract Grade, Cool Blues, Dark Gray, Dark Grey, Deep, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, LEED Compatible, Light Gray, Living Room, Matte Finish, Medium Gray, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone Hybrid, Solid, Solid Color, Sophisticated, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086107570227,
+   "sampleSku": "DWPN-101077",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791166095411,
+   "handle": "maya-riviera-cream",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Maya, Minimalist, Needs-Price, Neutral Tones, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Soft, Solid, Subtle, Tan, Texture, Textured, Timeless, Traditional, Transitional, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44086107832371,
+   "sampleSku": "DWPN-101078",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791166423091,
+   "handle": "maya-riviera-ebony",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Clean Look, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Tones, Deep, display_variant, DMF-Free, Ebony, Estimated Type: Vinyl, Fabric, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Living Room, Matte, Maya, Minimalist, Modern, Moody, Navy, Needs-Price, NFPA 260 Compliant, Office, Onyx, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Smooth, Solid, Solid Color, Texture, Textured, Uniform Texture, Vinyl, Wallcovering",
+   "sampleVariantId": 44086108454963,
+   "sampleSku": "DWPN-101080",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791166554163,
+   "handle": "maya-riviera-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark, dark brown, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Medium Brown, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Rustic, Showroom Line, Silicone, Solid, Taupe, Textured, Traditional, Transitional, Uniform, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086108684339,
+   "sampleSku": "DWPN-101081",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791166718003,
+   "handle": "maya-riviera-flint",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Cool Grays, Dark Gray, display_variant, DMF-Free, Fabric, Fine, Flint, FR Additives Free, Global Inspired, Graffiti-Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Maya, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone Hybrid, Smoke, Solid, Subtle Grain, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086108979251,
+   "sampleSku": "DWPN-101082",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791166849075,
+   "handle": "maya-riviera-latte",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Global Inspired, Graffiti-Free, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Latte, LEED Compatible, Light Gray, Living Room, Maya, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Solid, Taupe, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086109241395,
+   "sampleSku": "DWPN-101083",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167012915,
+   "handle": "maya-riviera-merlot",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Deep, Deep Taupe, display_variant, DMF-Free, Ebony, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Maya, Merlot, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, PVC-Free, Showroom Line, Silicone, Solid, Sophisticated, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086109503539,
+   "sampleSku": "DWPN-101084",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167176755,
+   "handle": "maya-riviera-mocha",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Maya, Mocha, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Residential, Rich, Rustic, Showroom Line, Silicone Hybrid, Solid, Solid Color, Tan, Taupe, Textured, Traditional, Transitional, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086109831219,
+   "sampleSku": "DWPN-101085",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167340595,
+   "handle": "maya-riviera-olive",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Global Inspired, Gold, Graffiti-Free, Grain, Gray-brown, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Maya, Minimalist, Modern, Muted, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Drab, Olive Green, Organic Modern, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone Hybrid, Solid, Subtle Grain, Taupe, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086110093363,
+   "sampleSku": "DWPN-101086",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167537203,
+   "handle": "maya-riviera-pewter",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark, Dark Gray, Dark Grey, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Maya, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone Hybrid, Solid, Sophisticated, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086110519347,
+   "sampleSku": "DWPN-101087",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167668275,
+   "handle": "maya-riviera-rust",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, dark brown, display_variant, DMF-Free, Executive Office, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather Look, LEED Compatible, Living Room, Lodge, Matte Finish, Maya, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Rich, Rustic, Showroom Line, Silicone Hybrid, Solid, Tan, Textured, Timeless, Traditional, Umber, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086110781491,
+   "sampleSku": "DWPN-101088",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791167864883,
+   "handle": "maya-riviera-seal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Deep, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Graphite, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte Finish, Maya, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Seal, Showroom Line, Silicone, Solid, Solid Color, Sophisticated, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086111109171,
+   "sampleSku": "DWPN-101089",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791168159795,
+   "handle": "maya-riviera-trail",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Global Inspired, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Maya, Minimalist, Mocha, Modern, Muted, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Pebble, Pebble Grain, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Solid, Subtle Texture, Taupe, Texture, Textured, Traditional, Trail, Vinyl, Wallcovering",
+   "sampleVariantId": 44086111633459,
+   "sampleSku": "DWPN-101091",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791168290867,
+   "handle": "maya-riviera-truffle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Charcoal, dark gray, Deep, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Global Inspired, Graffiti-Free, Grain, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Maya, Medium Gray, Minimalist, Modern, Monochromatic, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Solid, Sophisticated, Subtle Grain, Textured, Truffle, Vinyl, Wallcovering",
+   "sampleVariantId": 44086111862835,
+   "sampleSku": "DWPN-101092",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792231940147,
+   "handle": "maya-riviera-ash-dwpr-426557",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Ash, Bedroom, Bone, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082295859,
+   "sampleSku": "DWPR-426557",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230891571,
+   "handle": "maya-riviera-bordeaux-dwpr-426546",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bordeaux, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Maroon, Dining Room, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Maroon, Living Room, Luxe, Luxury, Maya Riviera, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Showroom Line, Solid, Sophisticated, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090081148979,
+   "sampleSku": "DWPN-101076",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230694963,
+   "handle": "maya-riviera-camel-dwpr-426543",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Oatmeal, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090080952371,
+   "sampleSku": "DWPR-426543",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231743539,
+   "handle": "maya-riviera-dove-dwpr-426552",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Dove, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082000947,
+   "sampleSku": "DWPR-426552",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231907379,
+   "handle": "maya-riviera-driftwood-dwpr-426556",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Gold, Green, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Olive Drab, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082263091,
+   "sampleSku": "DWPR-426556",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230760499,
+   "handle": "maya-riviera-dune-dwpr-426545",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Dune, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090081017907,
+   "sampleSku": "DWPR-426545",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231678003,
+   "handle": "maya-riviera-espresso-dwpr-426551",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Espresso, Fabric, Fabric-backed Vinyl, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090081935411,
+   "sampleSku": "DWPR-426551",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232005683,
+   "handle": "maya-riviera-fog-dwpr-426559",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Fog, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082361395,
+   "sampleSku": "DWPR-426559",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232136755,
+   "handle": "maya-riviera-graphite-dwpr-426562",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Graphite, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082492467,
+   "sampleSku": "DWPR-426562",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232103987,
+   "handle": "maya-riviera-greige-dwpr-426561",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Greige, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082459699,
+   "sampleSku": "DWPR-426561",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230727731,
+   "handle": "maya-riviera-linen-dwpr-426544",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Linen, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090080985139,
+   "sampleSku": "DWPR-426544",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231841843,
+   "handle": "maya-riviera-mahogany-dwpr-426554",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Mahogany, Maya Riviera, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester, Showroom Line, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut",
+   "sampleVariantId": 44090082197555,
+   "sampleSku": "DWPR-426554",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231514163,
+   "handle": "maya-riviera-onyx-dwpr-426550",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Black, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, display_variant, Ebony, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Moody, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Onyx, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090081771571,
+   "sampleSku": "DWPR-426550",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231776307,
+   "handle": "maya-riviera-pewter-dwpr-426553",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Oatmeal, Office, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082033715,
+   "sampleSku": "DWPR-426553",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231350323,
+   "handle": "maya-riviera-sahara-dwpr-426549",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Maya Riviera, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sahara, Showroom Line, Solid, Tan, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090081607731,
+   "sampleSku": "DWPN-101079",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230662195,
+   "handle": "maya-riviera-sand-dwpr-426542",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Maya Riviera, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Showroom Line, Solid, Tan, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090080919603,
+   "sampleSku": "DWPN-101072",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792230596659,
+   "handle": "maya-riviera-slate-dwpr-426541",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090080854067,
+   "sampleSku": "DWPR-426541",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231022643,
+   "handle": "maya-riviera-smoke-dwpr-426547",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Bone, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090081280051,
+   "sampleSku": "DWPR-426547",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232038451,
+   "handle": "maya-riviera-stone-dwpr-426560",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hallway, Hospitality, IMO Marine Grade, Insects, Leather, Light Gray, Light Taupe, Living Room, Luxury, Maya Riviera, Minimalist, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Silver, Solid, Stone, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082394163,
+   "sampleSku": "DWPN-101090",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792231972915,
+   "handle": "maya-riviera-umber-dwpr-426558",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Lodge, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Texture, Textured, Timeless, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090082328627,
+   "sampleSku": "DWPR-426558",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230563891,
+   "handle": "maya-riviera-walnut-dwpr-426540",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fawn, Hospitality, IMO Marine Grade, Leather, Living Room, Lodge, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Red, Rustic, Showroom Line, Sienna, Solid, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut, Warm",
+   "sampleVariantId": 44090080821299,
+   "sampleSku": "DWPR-426540",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792231186483,
+   "handle": "maya-riviera-wheat-dwpr-426548",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Maya Riviera, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Paper, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44090081443891,
+   "sampleSku": "DWPR-426548",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501381525616,
+   "handle": "mayorca-magazine-weave-prt-16104",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Green, Mayorca Magazine Weave, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13975685660784,
+   "sampleSku": "PRT-16104-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496091426928,
+   "handle": "medici-real-cork-stripe-wallpaper-grs-92715",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bone, Brown, Commercial, Contemporary, Cork, display_variant, Geometric, Industrial, Living Room, Medici Real Cork Stripe, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Paper, Phillipe Romano, Phillipe Romano Naturals, Real Cork Prints, Restaurant, Retail, Showroom Line, Stripe, Striped, Tan, Wallcovering, White",
+   "sampleVariantId": 44170990452787,
+   "sampleSku": "GRS-92715-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496091492464,
+   "handle": "medici-real-cork-stripe-wallpaper-grs-92716",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Brown, Commercial, Cork, display_variant, Entryway, Farmhouse, Geometric, Living Room, Medici Real Cork Stripe, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Real Cork Prints, Showroom Line, Stripe, Striped, Tan, Textural, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 44170990583859,
+   "sampleSku": "GRS-92716-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496091656304,
+   "handle": "medici-real-cork-stripe-wallpaper-grs-92717",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Commercial, Cork, display_variant, Eggshell, Entryway, Geometric, Industrial, Living Room, Medici Real Cork Stripe, Modern, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Paper, Phillipe Romano, Phillipe Romano Naturals, Real Cork Prints, Showroom Line, Stripe, Striped, Tan, Taupe, Textural, Traditional, Wallcovering, White",
+   "sampleVariantId": 44170990616627,
+   "sampleSku": "GRS-92717-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496091754608,
+   "handle": "medici-real-cork-stripe-wallpaper-grs-92718",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Brown, Commercial, Cork, display_variant, Geometric, Gray, Light Gray, Living Room, Medici Real Cork Stripe, Minimalist, Modern, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Real Cork Prints, Showroom Line, Silver, Solid/Textural, Spa, Tan, Textured, Transitional, Wallcovering, White",
+   "sampleVariantId": 44170990649395,
+   "sampleSku": "GRS-92718-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496091918448,
+   "handle": "medici-real-cork-stripe-wallpaper-mic-92719",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, Commercial, Cork, display_variant, Entryway, Farmhouse, Geometric, Gray, Industrial, Light Gray, Living Room, Medici Real Cork Stripe, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Real Cork Prints, Showroom Line, Solid/Textural, Stripe, Striped, Tan, Tomato, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 44170990714931,
+   "sampleSku": "MIC-92719-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500418769008,
+   "handle": "memuro-durable-metal-vinyl-met-33710",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Metallic, Mushroom, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13964335677552,
+   "sampleSku": "MET-33710-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500419096688,
+   "handle": "memuro-durable-metal-vinyl-met-33711",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gray, Heather, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13964339347568,
+   "sampleSku": "MET-33711-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500419358832,
+   "handle": "memuro-durable-metal-vinyl-met-33712",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Metallic, Mocha, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13964343148656,
+   "sampleSku": "MET-33712-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500419719280,
+   "handle": "memuro-durable-metal-vinyl-met-33713",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering, Walnut",
+   "sampleVariantId": 13964346196080,
+   "sampleSku": "MET-33713-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500420145264,
+   "handle": "memuro-durable-metal-vinyl-met-33714",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13964352716912,
+   "sampleSku": "MET-33714-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500420538480,
+   "handle": "memuro-durable-metal-vinyl-met-33715",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gray, Metallic, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13964354453616,
+   "sampleSku": "MET-33715-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502346805360,
+   "handle": "merana-prt-74168",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13987130146928,
+   "sampleSku": "PRT-74168-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502346936432,
+   "handle": "merana-prt-74169",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13987130703984,
+   "sampleSku": "PRT-74169-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502347133040,
+   "handle": "merana-prt-74170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Taupe, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13987135193200,
+   "sampleSku": "PRT-74170-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502347362416,
+   "handle": "merana-prt-74171",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13987136995440,
+   "sampleSku": "PRT-74171-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502347690096,
+   "handle": "merana-prt-74172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987140010096,
+   "sampleSku": "PRT-74172-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502348312688,
+   "handle": "merana-prt-74174",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Darkblue, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987148267632,
+   "sampleSku": "PRT-74174-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502348574832,
+   "handle": "merana-prt-74175",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987148922992,
+   "sampleSku": "PRT-74175-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502345232496,
+   "handle": "merkato-prt-74160",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987105112176,
+   "sampleSku": "PRT-74160-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502345396336,
+   "handle": "merkato-prt-74161",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987107864688,
+   "sampleSku": "PRT-74161-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502345822320,
+   "handle": "merkato-prt-74163",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987114188912,
+   "sampleSku": "PRT-74163-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502346018928,
+   "handle": "merkato-prt-74164",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Bohemian, Bone, Class A Fire Rated, Commercial, Cream, display_variant, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987119497328,
+   "sampleSku": "PRT-74164-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502346215536,
+   "handle": "merkato-prt-74165",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bohemian, Class A Fire Rated, Commercial, display_variant, Eggshell, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987120709744,
+   "sampleSku": "PRT-74165-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502346412144,
+   "handle": "merkato-prt-74166",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Blue, Bone, Class A Fire Rated, Commercial, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987121397872,
+   "sampleSku": "PRT-74166-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7717101699123,
+   "handle": "metromod-denim-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Art Deco, Bedroom, blue, Bold, Class A Fire Rated, Commercial, Contemporary, Copper, Dark Blue, denim, display_variant, Fretwork, geometric, grasscloth, Hallway, Hotel, kravet-design, Light Gray, Living Room, Luxury, Metallic, metromod, modern, Navy, Needs-Image, Needs-Price, Needs-Width, pretrimmed, print, Residential, Rose Gold, Serene, Showroom Line, Sky Blue, Sophisticated, Statement, Vinyl, w3499-511, wallcovering, White",
+   "sampleVariantId": 43770675888179,
+   "sampleSku": "DWWC-508890-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502337794160,
+   "handle": "mineraba-prt-74125",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 13986985869424,
+   "sampleSku": "PRT-74125-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502337925232,
+   "handle": "mineraba-prt-74126",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 13986989539440,
+   "sampleSku": "PRT-74126-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502338252912,
+   "handle": "mineraba-prt-74127",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13986993406064,
+   "sampleSku": "PRT-74127-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502349197424,
+   "handle": "mistaba-prt-74178",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Grasscloth, Light Beige, Light Gray, Mistaba, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987159048304,
+   "sampleSku": "PRT-74178-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502349426800,
+   "handle": "mistaba-prt-74179",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, display_variant, Eggshell, Grasscloth, Lattice, Mistaba, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Pink, Showroom Line, Texture, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13987161702512,
+   "sampleSku": "PRT-74179-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502349557872,
+   "handle": "mistaba-prt-74180",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Gray, Light Gray, Mistaba, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987166748784,
+   "sampleSku": "PRT-74180-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502349820016,
+   "handle": "mistaba-prt-74181",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bohemian, Commercial, display_variant, Grasscloth, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Putty, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987168223344,
+   "sampleSku": "PRT-74181-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502350082160,
+   "handle": "mistaba-prt-74182",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display_variant, Eggshell, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987170910320,
+   "sampleSku": "PRT-74182-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502350311536,
+   "handle": "mistaba-prt-74183",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, display_variant, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987173138544,
+   "sampleSku": "PRT-74183-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502350442608,
+   "handle": "mistaba-prt-74184",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, display_variant, Eggshell, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987179495536,
+   "sampleSku": "PRT-74184-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502350737520,
+   "handle": "mistaba-prt-74185",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Contemporary, display_variant, Grasscloth, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13987180478576,
+   "sampleSku": "PRT-74185-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502351032432,
+   "handle": "mistaba-prt-74187",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987186376816,
+   "sampleSku": "PRT-74187-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502351261808,
+   "handle": "mistaba-prt-74188",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Contemporary, display_variant, Eggshell, Gold, Grasscloth, Gray, Green, Lattice, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987191849072,
+   "sampleSku": "PRT-74188-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502351360112,
+   "handle": "mistaba-prt-74189",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bohemian, Commercial, display_variant, Eggshell, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987192799344,
+   "sampleSku": "PRT-74189-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502352015472,
+   "handle": "mistaba-prt-74191",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, display_variant, Grasscloth, Mocha, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987202465904,
+   "sampleSku": "PRT-74191-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502352212080,
+   "handle": "mistaba-prt-74192",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, display_variant, Grasscloth, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Umber, Wallcovering, Woven",
+   "sampleVariantId": 13987202859120,
+   "sampleSku": "PRT-74192-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791168946227,
+   "handle": "montego-dusk",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, DMF-Free, Dusk, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Gold, Graffiti-Free, Green, Green Building, Hallway, Healthcare, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Minimalist, Mistral, Modern, Needs-Price, Neutral Palette, Neutral Tones, NFPA 260 Compliant, Office, Olive, Organic, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Ribbed, Sage, Showroom Line, Silicone Hybrid, Stripe, Stripes, Subtle Texture, Textured, Traditional, Transitional, Vinyl, Virtual, Wallcovering",
+   "sampleVariantId": 44086113140787,
+   "sampleSku": "DWPN-101093",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169208371,
+   "handle": "montego-lemongrass",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Gold, Graffiti-Free, Grasscloth, Green, Green Building, Healthcare, Horizontal, Horizontal Lines, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Lemongrass, Living Room, Mistral, Modern, Needs-Price, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Feel, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Ribbed, Ribs, Showroom Line, Silicone Hybrid, Stripe, Subtle Texture, Textured, Traditional, Virtual, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44086113566771,
+   "sampleSku": "DWPN-101097",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169241139,
+   "handle": "montego-shadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Dark Gray, Dark Tones, Deep, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Horizontal, Horizontal Lines, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, light gray, Light Grey, Linear Texture, Living Room, Minimalist, Mistral, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Ribbed, Shadow, Showroom Line, Silicone, Stripe, Stripes, Subtle Pattern, Textured, Vinyl, Virtual, Wallcovering",
+   "sampleVariantId": 44086113599539,
+   "sampleSku": "DWPN-101098",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497200001136,
+   "handle": "monaco-wallpaper-xr1-68186",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, recycled paper, Showroom Line, Textured, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44170992877619,
+   "sampleSku": "XR1-68186-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232366131,
+   "handle": "montego-espresso-dwpr-426579",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, Gold, Grasscloth, Hospitality, IMO Marine Grade, Insects, Leather, Light Beige, Living Room, Luxury, Medium Brown, Minimalist, Modern, Montego, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Stripe, Tan, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082918451,
+   "sampleSku": "DWPN-101096",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232398899,
+   "handle": "montego-fern-dwpr-426580",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Fern, Gold, Grasscloth, Green, Hospitality, IMO Marine Grade, Khaki, Leather, Living Room, Luxury, Minimalist, Modern, Montego, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Stripe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090082951219,
+   "sampleSku": "DWPR-426580",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232267827,
+   "handle": "montego-moss-dwpr-426577",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Khaki, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Gold, Grasscloth, Green, Hospitality, IMO Marine Grade, Khaki, Leather, Living Room, Luxury, Minimalist, Modern, Montego, Moss, Needs-Price, NFPA 260 Compliant, Office, Olive, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Stripe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082623539,
+   "sampleSku": "DWPN-101094",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232300595,
+   "handle": "montego-sand-dwpr-426578",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Ecru, Embossed, Fabric, Faux Leather, Grasscloth, Grasscloth Weave, Hospitality, IMO Marine Grade, Leather, Light Beige, Light Brown, Living Room, Luxury, Minimalist, Montego, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Stripe, Tan, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44090082852915,
+   "sampleSku": "DWPN-101095",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232431667,
+   "handle": "montego-sapphire-dwpr-426581",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Dark, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Light Grey, Living Room, Luxury, Midnight, Minimalist, Modern, Montego, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sapphire, Showroom Line, Stripe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090082983987,
+   "sampleSku": "DWPR-426581",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232464435,
+   "handle": "montego-slate-dwpr-426582",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Montego, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate, Stripe, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083016755,
+   "sampleSku": "DWPN-101099",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232497203,
+   "handle": "montego-terracotta-dwpr-426583",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Golden Brown, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Montego, Needs-Price, NFPA 260 Compliant, Office, Orange, Ostrich, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Pumpkin, Russet, Rust, Showroom Line, Stripe, Terracotta, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090083049523,
+   "sampleSku": "DWPN-101100",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1499564703856,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52700",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Gray, Leed Walls, Light Gray, Linen, Montgomery Stain Repellent Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13954411233392,
+   "sampleSku": "XWR-52700-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499565162608,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52702",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Leed Walls, Linen, Mushroom, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954417557616,
+   "sampleSku": "XWR-52702-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499565621360,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52704",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954428633200,
+   "sampleSku": "XWR-52704-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499565817968,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52705",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954429026416,
+   "sampleSku": "XWR-52705-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499566309488,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52707",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sepia, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954439118960,
+   "sampleSku": "XWR-52707-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499566538864,
+   "handle": "montgomery-stain-repellent-linen-walls-xwr-52708",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Leed Walls, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954441019504,
+   "sampleSku": "XWR-52708-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232595507,
+   "handle": "morant-charcoal-dwpr-426597",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Blue, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark, display_variant, Embossed, Faux Leather, Hospitality, IMO Marine Grade, Leather, Linen, Living Room, Luxury, Minimalist, Morant, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083147827,
+   "sampleSku": "DWPR-426597",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232661043,
+   "handle": "morant-dune-dwpr-426599",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Tan, display_variant, Dune, Embossed, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Linen, Linen Texture, Living Room, Luxury, Morant, Needs-Price, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat",
+   "sampleVariantId": 44090083213363,
+   "sampleSku": "DWPN-101105",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232726579,
+   "handle": "morant-ivory-dwpr-426601",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cream, display_variant, Embossed, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Ivory, Leather, Light Beige, Living Room, Luxury, Minimalist, Morant, Needs-Price, NFPA 260 Compliant, Off-white, Ostrich, Paper, Pearl, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090083278899,
+   "sampleSku": "DWPN-101107",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232628275,
+   "handle": "morant-linen-dwpr-426598",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Embossed, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Light Beige, Linen, Linen Texture, Living Room, Luxury, Morant, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Showroom Line, Solid, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090083180595,
+   "sampleSku": "DWPR-426598",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232529971,
+   "handle": "morant-sand-dwpr-426595",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Embossed, Farmhouse, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Brown, Linen, Linen Texture, Living Room, Luxury, Morant, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Rustic, Sand, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090083082291,
+   "sampleSku": "DWPN-101101",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792232562739,
+   "handle": "morant-silver-dwpr-426596",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, Embossed, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Grey, Linen, Linen Texture, Living Room, Luxury, Minimalist, Morant, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Silver, Silver Grey, Solid, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090083115059,
+   "sampleSku": "DWPR-426596",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232693811,
+   "handle": "morant-slate-dwpr-426600",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Leather, Light Gray, Linen, Linen Texture, Living Room, Luxury, Medium Gray, Minimalist, Morant, Needs-Price, NFPA 260 Compliant, Off White, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Scandinavian, Serene, Showroom Line, Slate, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090083246131,
+   "sampleSku": "DWPN-101106",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169372211,
+   "handle": "morant-helium",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, Architectural, Bedroom, Brushed, CAN/ULC Certified, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, Drapery, Dry Clean Only, Fabric, Gray, Grey, Hospitality, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 701 Drapery Rated, Non-woven, Office, Organic Modern, Pale Grey, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Scandinavian, Serene, Showroom Line, Silver, Soft, Soft Sheen, Solid, Spot Cleanable, Textured, Wallcovering, Weave, Wide Width, Woven",
+   "sampleVariantId": 44086113730611,
+   "sampleSku": "DWPN-101102",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169404979,
+   "handle": "morant-ink",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Blue, CAN/ULC Certified, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contexture, Contract Grade, Cool Blues, dark blue, Dark Gray, Deep, display_variant, Drapery, Dry Clean Only, Fabric, Fine, Fine Weave, Graphite, Healthcare, Hospitality, Ink, Light Gray, Linen, Living Room, Minimalist, Mozart, Navy, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Office, Performance Fabric, Phillipe Romano, Polyester Blend, Serene, Showroom Line, Slate Gray, Solid, Solid Color, Spot Cleanable, Subtle Texture, Texture, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Transitional, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44086113763379,
+   "sampleSku": "DWPN-101103",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169437747,
+   "handle": "morant-latte",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brushed, CAN/ULC Certified, Class A Fire Rated, Coastal, Commercial, Contemporary, Contexture, Contract Grade, display_variant, Drapery, Dry Clean Only, Fabric, Farmhouse, Hallway, Hospitality, Latte, Light Beige, Linen, Linen Texture, Living Room, Mozart, Natural, Needs-Price, NFPA 701 Drapery Rated, Non-woven, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Rustic, Showroom Line, Soft, Solid, Spot Cleanable, Tan, Taupe, Textured, Top: 100% Polyester | Backing: 4 Pass Acrylic, Traditional, Transitional, Wallcovering, Warm, Weave, Wide Width, Woven",
+   "sampleVariantId": 44086113796147,
+   "sampleSku": "DWPN-101104",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500210790512,
+   "handle": "mukawa-durable-vinyl-xoe-33414",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cotton, Cotton Fiber, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962026549360,
+   "sampleSku": "XOE-33414-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500211642480,
+   "handle": "mukawa-durable-vinyl-xoe-33415",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cotton, Cotton Fiber, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962038870128,
+   "sampleSku": "XOE-33415-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500212887664,
+   "handle": "mukawa-durable-vinyl-xoe-33416",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Contemporary, Cotton, Cotton Fiber, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962055155824,
+   "sampleSku": "XOE-33416-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500213837936,
+   "handle": "mukawa-durable-vinyl-xoe-33417",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cotton, Cotton Fiber, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962064429168,
+   "sampleSku": "XOE-33417-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500214722672,
+   "handle": "mukawa-durable-vinyl-xoe-33418",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Cotton, Cotton Fiber, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962079404144,
+   "sampleSku": "XOE-33418-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791169699891,
+   "handle": "maho-bay-enoki",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Finish, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Brown, Living Room, Matte, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Smooth, Soft, Solid, Solid Color, Suede, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086114058291,
+   "sampleSku": "DWPN-101112",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169765427,
+   "handle": "maho-bay-glacial",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Living Room, Minimalist, Modern, Needs-Price, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Organic Modern, Pale, Pale Brown, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Solid, Subtle, Subtle Texture, Tan, Taupe, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114123827,
+   "sampleSku": "DWPN-101114",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169798195,
+   "handle": "maho-bay-greige",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, DMF-Free, Eggshell, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Living Room, Matte, Matte Finish, Minimalist, Needs-Price, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Soft, Solid, Subtle Texture, Texture, Textured, Traditional, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114156595,
+   "sampleSku": "DWPN-101115",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169830963,
+   "handle": "maho-bay-harbor",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Charcoal Grey, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Blues, Dark Navy, Dark Teal, Deep, display_variant, DMF-Free, Fabric, Fine Texture, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114189363,
+   "sampleSku": "DWPN-101116",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169863731,
+   "handle": "maho-bay-mahogany",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Residential, Rich, Showroom Line, Silicone, Smooth, Solid, Solid Color, Suede, Taupe, Texture, Textured, Traditional, Transitional, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086114222131,
+   "sampleSku": "DWPN-101117",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169896499,
+   "handle": "maho-bay-mallard",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Denim Blue, display_variant, DMF-Free, Dusty, Fabric, FR Additives Free, Graffiti-Free, Grayish Blue, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Slate Blue, Smooth, Solid, Solid Color, Steel Blue, Subtle Texture, Teal, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114254899,
+   "sampleSku": "DWPN-101118",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169929267,
+   "handle": "maho-bay-marlin",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Blues, Dark Gray, Deep, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Graphite, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Medium Gray, Minimal Texture, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sophisticated, Suede, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114287667,
+   "sampleSku": "DWPN-101119",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791169962035,
+   "handle": "maho-bay-mineral",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, DMF-Free, Fabric, Faux, Faux Leather, FR Additives Free, Graffiti-Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Gray, Living Room, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone Hybrid, Smoke, Smooth, Soft, Solid, Solid Color, Taupe, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114320435,
+   "sampleSku": "DWPN-101120",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170093107,
+   "handle": "maho-bay-moonstone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Concrete, Concrete Effect, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Non-woven, Pale Gray, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone, Silver, Smooth, Soft, Solid, Subtle Texture, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114811955,
+   "sampleSku": "DWPN-101122",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170125875,
+   "handle": "maho-bay-mushroom",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Minimalist, Modern, Mushroom, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Pale Peach, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Serene, Showroom Line, Silicone Hybrid, Smooth, Soft Hand, Solid, Subtle Texture, Suede, Tan, Taupe, Texture, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114844723,
+   "sampleSku": "DWPN-101123",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170158643,
+   "handle": "maho-bay-pesto",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Dusty, Farmhouse, FR Additives Free, Graffiti-Free, Green, Green Building, Greige, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Light Olive Green, Living Room, Matte, Minimalist, Muse, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, Pesto, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Residential, Sage, Sage Green, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Subtle Texture, Texture, Textured, Traditional, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086114877491,
+   "sampleSku": "DWPN-101124",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170224179,
+   "handle": "maho-bay-ridge",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Chocolate, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Muse, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Ridge, Rustic, Saddlebrown, Showroom Line, Sienna, Silicone, Smooth, Solid, Solid Color, Suede, Tan, Texture, Textured, Timeless, Traditional, Transitional, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086114943027,
+   "sampleSku": "DWPN-101126",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170256947,
+   "handle": "maho-bay-ruby",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire SI, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Dark Brown, Deep, Dining Room, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Muse, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Showroom Line, Silicone, Smooth, Solid, Solid Color, Texture, Textured, Timeless, Traditional, Transitional, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086114975795,
+   "sampleSku": "DWPN-101127",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170289715,
+   "handle": "maho-bay-scuba",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Slate Gray, Denim Blue, display_variant, DMF-Free, Dusty, Estimated Type: Fabric-backed Vinyl, Fabric, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Scandinavian, Serene, Showroom Line, Silicone, Slate Blue, Slate Gray, Smooth, Solid, Solid Color, Steel Blue, Texture, Textured, Wallcovering",
+   "sampleVariantId": 44086115008563,
+   "sampleSku": "DWPN-101128",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1500609970288,
+   "handle": "naka-durable-vinyl-xrs-34200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966512849008,
+   "sampleSku": "XRS-34200-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500610232432,
+   "handle": "naka-durable-vinyl-xrs-34201",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966515699824,
+   "sampleSku": "XRS-34201-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500610953328,
+   "handle": "naka-durable-vinyl-xrs-34203",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966525792368,
+   "sampleSku": "XRS-34203-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500611346544,
+   "handle": "naka-durable-vinyl-xrs-34204",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966526513264,
+   "sampleSku": "XRS-34204-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500611543152,
+   "handle": "naka-durable-vinyl-xrs-34205",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Cocoa, Coffee, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Geometric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Walnut",
+   "sampleVariantId": 13966531690608,
+   "sampleSku": "XRS-34205-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500611936368,
+   "handle": "naka-durable-vinyl-xrs-34206",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966535262320,
+   "sampleSku": "XRS-34206-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500612264048,
+   "handle": "naka-durable-vinyl-xrs-34207",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966536900720,
+   "sampleSku": "XRS-34207-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500613148784,
+   "handle": "naka-durable-vinyl-xrs-34209",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Geometric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966544601200,
+   "sampleSku": "XRS-34209-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791170453555,
+   "handle": "nassau-azure",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Sea Green, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Graffiti-Free, Grain, Green, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, Insects, LEED Compatible, Light Teal, Living Room, Matte Finish, Minimalist, Multi-Purpose, MVSS-302 Automotive, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Pebble, PFAS-Free, Phillipe Romano, Sage, Sea Green, Seafoam Green, Serene, Showroom Line, Silicone, Solid, Steel, Subtle Grain, Teal, Textured, Tint, Vinyl, Wallcovering",
+   "sampleVariantId": 44086115205171,
+   "sampleSku": "DWPN-101132",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170551859,
+   "handle": "nassau-mango",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, BS 5852 Crib 5, Burlywood, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, Insects, LEED Compatible, Living Room, Modern, Multi-Purpose, MVSS-302 Automotive, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Pebble, PFAS-Free, Phillipe Romano, PVC-Free, Showroom Line, Silicone, Smooth Surface, Solid, Tawny, Textured, Timeless, Traditional, Transitional, Uniform Grain, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086115303475,
+   "sampleSku": "DWPN-101135",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170781235,
+   "handle": "nassau-gold-cadet",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, Cool Blues, Dark Gray, Denim, Denim Blue, display_variant, DMF-Free, Dusty, Fabric, Faux Leather, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, Insects, LEED Compatible, Living Room, Matte Finish, Metallic, Minimalist, Modern, Multi-Purpose, MVSS-302 Automotive, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, PFAS-Free, Phillipe Romano, Serene, Showroom Line, Silicone, Slate Blue, Slate Grey, Smooth, Smooth Surface, Solid, Steel Blue, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086115598387,
+   "sampleSku": "DWPN-101141",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170814003,
+   "handle": "nassau-gold-chablis",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, Insects, LEED Compatible, Light Beige, Living Room, Matte, Metallic, Minimalist, Multi-Purpose, MVSS-302 Automotive, Needs-Price, NFPA 260 Compliant, PFAS-Free, Phillipe Romano, Serene, Showroom Line, Silicone, Smooth, Soft, Solid, Solid Color, Tan, Texture, Textured, Traditional, Transitional, Uniform Texture, Vinyl, Wallcovering",
+   "sampleVariantId": 44086115631155,
+   "sampleSku": "DWPN-101142",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791170945075,
+   "handle": "nassau-gold-ermine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Gold, Graffiti-Free, Gray, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, LEED Compatible, Living Room, Matte, Metallic, Minimalist, Multi-Purpose, Mushroom, Muted, MVSS-302 Automotive, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, PFAS-Free, Phillipe Romano, Rustic, Serene, Showroom Line, Silicone, Solid, Solid Color, Stone, Subtle, Subtle Texture, Taupe, Textured, Traditional, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086116220979,
+   "sampleSku": "DWPR-426681",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791171371059,
+   "handle": "nassau-gold-penny",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bronze, Brown, BS 5852 Crib 5, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, Leather-like, LEED Compatible, Living Room, Metallic, Modern, Multi-Purpose, MVSS-302 Automotive, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, PFAS-Free, Phillipe Romano, Rustic, Showroom Line, Silicone, Solid, Tan, Textured, Traditional, Transitional, Uniform Texture, Wallcovering, Warm",
+   "sampleVariantId": 44086116941875,
+   "sampleSku": "DWPR-426684",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791171534899,
+   "handle": "nassau-gold-sea-mist",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Dusty, Fabric, Faux Leather, FR Additives Free, Graffiti-Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, LEED Compatible, Light Grey, Living Room, Metallic, Minimalist, Modern, Multi-Purpose, MVSS-302 Automotive, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Pebble, Pebble Texture, PFAS-Free, Phillipe Romano, Serene, Showroom Line, Silicone, Slate, Slate Blue, Smooth, Smooth Surface, Solid, Textured, Transitional, Wallcovering",
+   "sampleVariantId": 44086117236787,
+   "sampleSku": "DWPR-426685",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791171665971,
+   "handle": "nassau-gold-shell",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, LEED Compatible, Light Brown, Living Room, Matte Finish, Metallic, Minimalist, Multi-Purpose, MVSS-302 Automotive, Needs-Image, Needs-Price, Needs-Width, Neutral Texture, Neutral Tones, NFPA 260 Compliant, Paper, PFAS-Free, Phillipe Romano, Showroom Line, Silicone, Smooth, Solid, Solid Color, Subtle, Surface, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Wallcovering, Warm",
+   "sampleVariantId": 44086117498931,
+   "sampleSku": "DWPR-426686",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791172124723,
+   "handle": "nassau-gold-snow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, BS 5852 Crib 5, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Grain, Green Building, Grey, Healthcare, Hospitality, Icy, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Indoor/Outdoor, LEED Compatible, Light Grey, Living Room, Metallic, Minimalist, Modern, Monochromatic, Multi-Purpose, MVSS-302 Automotive, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Off White, Office, Pebble, Pebbled Texture, PFAS-Free, Phillipe Romano, Serene, Showroom Line, Silicone, Silver, Solid, Subtle, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086118416435,
+   "sampleSku": "DWPR-426689",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497201016944,
+   "handle": "narbonne-wallpaper-xr2-68194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "48% polyester, 52% rayon, Architectural, Bone, Charcoal, Commercial, Contemporary, Dark Gray, display_variant, Grasscloth, Gray, Light Gray, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Woven",
+   "sampleVariantId": 44170992910387,
+   "sampleSku": "XR2-68194-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7796246151219,
+   "handle": "calypso-sage-dwpr-425034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Chevron, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Fabric, Geometric, Gold, Green, Herringbone, Hospitality, IMO Marine Grade, Khaki, Living Room, Modern, Narragansett, Needs-Price, NFPA 260 Compliant, Office, Olive, Pattern, Performance Fabric, Performance Vinyl, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Sophisticated, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44107727208499,
+   "sampleSku": "DWPN-100034",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234397747,
+   "handle": "nassau-avocado-dwpr-426675",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Avocado, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Insects, Khaki, Leather, Living Room, Luxury, Minimalist, Nassau, Needs-Price, NFPA 260 Compliant, Office, Olive Drab, Olive Green, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085310515,
+   "sampleSku": "DWPN-101139",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234233907,
+   "handle": "nassau-driftwood-dwpr-426665",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, display_variant, Driftwood, Embossed, Fabric, Faux Leather, Gray-brown, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Nassau, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Sophisticated, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084982835,
+   "sampleSku": "DWPN-101136",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234135603,
+   "handle": "nassau-pewter-dwpr-426660",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Embossed, Fabric, Faux Leather, Gray, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Nassau, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Solid, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084884531,
+   "sampleSku": "DWPN-101134",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234070067,
+   "handle": "nassau-sage-dwpr-426653",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, CA TB 117 Compliant, Celadon, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Leather, Light Gray, Living Room, Luxury, Minimalist, Nassau, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Seafoam Green, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084818995,
+   "sampleSku": "DWPR-426653",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792234102835,
+   "handle": "nassau-sand-dwpr-426658",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Embossed, Fabric, Fabric-backed Vinyl, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Light Beige, Living Room, Luxury, Minimalist, Nassau, Needs-Price, NFPA 260 Compliant, Non-woven, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090084851763,
+   "sampleSku": "DWPN-101133",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234266675,
+   "handle": "nassau-slate-dwpr-426666",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Industrial, Insects, Leather, Living Room, Luxury, Minimalist, Modern, Nassau, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Slate, Smoke, Solid, Sophisticated, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085015603,
+   "sampleSku": "DWPN-101137",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234332211,
+   "handle": "nassau-smoke-dwpr-426670",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Bone, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Gray, Dark Grey, display_variant, Embossed, Fabric, Faux Leather, Gray, Grey, Hospitality, IMO Marine Grade, Insects, Leather, Living Room, Luxury, Medium Gray, Minimalist, Modern, Nassau, Needs-Price, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Smoke, Solid, Sophisticated, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085244979,
+   "sampleSku": "DWPN-101138",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234168371,
+   "handle": "nassau-tawny-dwpr-426663",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Nassau, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Showroom Line, Solid, Tawny, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090084917299,
+   "sampleSku": "DWPR-426663",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792234528819,
+   "handle": "nassau-gold-azure-dwpr-426678",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Azure, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Modern, Nassau Gold, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Serene, Showroom Line, Slate Gray, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085441587,
+   "sampleSku": "DWPR-426678",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792234430515,
+   "handle": "nassau-gold-sage-dwpr-426677",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Animal Skin, Bedroom, Biophilic, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive Green, display_variant, Embossed, Fabric, Faux Leather, Green, Hospitality, IMO Marine Grade, Insects, Juniper, Leather, Living Room, Luxury, Minimalist, Nassau Gold, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sage, Sage Green, Sea Green, Serene, Showroom Line, Solid, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085343283,
+   "sampleSku": "DWPN-101140",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792234594355,
+   "handle": "nassau-gold-sand-dwpr-426679",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Hallway, Hospitality, IMO Marine Grade, Leather, Living Room, Luxury, Minimalist, Nassau Gold, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ostrich, Performance Fabric, Performance Vinyl, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester, Sand, Serene, Showroom Line, Solid, Tan, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090085539891,
+   "sampleSku": "DWPR-426679",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791172223027,
+   "handle": "necker-island-acorn",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Bronze, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Smooth, Solid, Solid Color, Textured, Traditional, Transitional, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086118678579,
+   "sampleSku": "DWPR-426690",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791172386867,
+   "handle": "necker-island-aqua",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bathroom, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Clean Look, Commercial, Contemporary, Contract Grade, Cool Blues, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Seafoam Green, Serene, Showroom Line, Smooth, Solid, Solid Color, Teal, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086118907955,
+   "sampleSku": "DWPR-426691",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791172550707,
+   "handle": "necker-island-beryl",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Blue, Deep, display_variant, Eco-Friendly, Fabric, FR Additives Free, Graphite, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Navy, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Solid, Solid Color, Subtle, Subtle Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086119235635,
+   "sampleSku": "DWPR-426693",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791172714547,
+   "handle": "necker-island-biscuit",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Finish, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Smooth, Solid, Solid Color, Tan, Textured, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086119530547,
+   "sampleSku": "DWPR-426694",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791173337139,
+   "handle": "necker-island-chablis",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Sage, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage, Serene, Showroom Line, Soft, Solid, Solid Color, Subtle, Subtle Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086120710195,
+   "sampleSku": "DWPR-426698",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791173599283,
+   "handle": "necker-island-flannel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Eco-Friendly, Fabric, Fawn, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Light Taupe, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Soft, Solid, Solid Color, Taupe, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086121168947,
+   "sampleSku": "DWPR-426700",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791173763123,
+   "handle": "necker-island-forest",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Green, Deep, display_variant, Eco-Friendly, Fabric, Forest Green, forestgreen, FR Additives Free, Green, Green Building, Healthcare, Hospitality, Hunter Green, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Natural Greens, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Textured, Uniform Texture, Vinyl, Wallcovering",
+   "sampleVariantId": 44086121463859,
+   "sampleSku": "DWPR-426701",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791173894195,
+   "handle": "necker-island-frosty",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Ash, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Pale Taupe, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silver, Smooth, Soft, Solid, Solid Color, Surface, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086121726003,
+   "sampleSku": "DWPR-426702",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792235511859,
+   "handle": "necker-island-garnet-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brick, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Deep, display_variant, Fabric, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Mahogany, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Residential, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Uniform Texture, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090086490163,
+   "sampleSku": "DWPR-426703",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174189107,
+   "handle": "necker-island-geyser",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Living Room, Minimalist, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Slate, Smooth, Solid, Solid Color, Subtle, Subtle Texture, Taupe, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122315827,
+   "sampleSku": "DWPR-426704",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174320179,
+   "handle": "necker-island-golden",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Golden, Golden Brown, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Ochre, Office, Orange, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Residential, Showroom Line, Smooth, Solid, Solid Color, Texture, Textured, Vinyl, Wallcovering, Warm, wheat",
+   "sampleVariantId": 44086122512435,
+   "sampleSku": "DWPR-426705",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174352947,
+   "handle": "necker-island-gravel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Mushroom, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Tan, Taupe, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122545203,
+   "sampleSku": "DWPR-426706",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174385715,
+   "handle": "necker-island-grigio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Linen, Living Room, Matte, Minimalist, Misty, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Solid, Solid Color, Subtle, Subtle Texture, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122577971,
+   "sampleSku": "DWPR-426707",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174418483,
+   "handle": "necker-island-gust",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Misty, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Slate, Smooth, Solid, Solid Color, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122610739,
+   "sampleSku": "DWPR-426708",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174451251,
+   "handle": "necker-island-khaki",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Tan, Taupe, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122643507,
+   "sampleSku": "DWPR-426709",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174484019,
+   "handle": "necker-island-lilac",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Matte, Mauve, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Red, Serene, Showroom Line, Smooth, Solid, Solid Color, Subtle Texture, Taupe, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122676275,
+   "sampleSku": "DWPR-426710",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174516787,
+   "handle": "necker-island-midnight",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Clean Look, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Navy, Dark Tones, Deep, Deep Charcoal, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Midnight, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122709043,
+   "sampleSku": "DWPR-426711",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174549555,
+   "handle": "necker-island-ore",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Non-woven, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Taupe, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122741811,
+   "sampleSku": "DWPR-426712",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174582323,
+   "handle": "necker-island-pesto",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Natural Greens, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Olive, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage Green, Serene, Showroom Line, Solid, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122774579,
+   "sampleSku": "DWPR-426713",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174615091,
+   "handle": "necker-island-pond",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Blue, Blue-Gray, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Slate Gray, display_variant, Eco-Friendly, Eggshell, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Slate Blue, Smooth, Solid, Solid Color, Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122807347,
+   "sampleSku": "DWPR-426714",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174647859,
+   "handle": "necker-island-pumpkin",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, burnt orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Ember, Fabric, FR Additives Free, Glow, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Sienna, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Rust, Rustic, Showroom Line, Smooth, Solid, Solid Color, Texture, Textured, Uniform Texture, Vinyl, Wallcovering, Warm, Warm Hue",
+   "sampleVariantId": 44086122840115,
+   "sampleSku": "DWPR-426715",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174680627,
+   "handle": "necker-island-rain",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Slate Gray, Smoke, Smooth, Solid, Solid Color, Teal, Texture, Textured, Transitional, Uniform Texture, Vinyl, Wallcovering",
+   "sampleVariantId": 44086122872883,
+   "sampleSku": "DWPR-426716",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174713395,
+   "handle": "necker-island-rustic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Bronze, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Rich, Rustic, Showroom Line, Smooth, Solid, Solid Color, Textured, Traditional, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086122905651,
+   "sampleSku": "DWPR-426717",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174746163,
+   "handle": "necker-island-salsa",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Clay, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Farmhouse, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Red, Rustic, Showroom Line, Sienna, Smooth, Solid, Solid Color, Terracotta, Texture, Textured, Traditional, Uniform Texture, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44086122938419,
+   "sampleSku": "DWPR-426718",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792236167219,
+   "handle": "necker-island-shale-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Drab Olive, Fabric, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Muted, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Slate, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090088030259,
+   "sampleSku": "DWPN-101181",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791174811699,
+   "handle": "necker-island-slate",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Deep, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Grey, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Surface, Textured, Uniform Texture, Vinyl, Wallcovering",
+   "sampleVariantId": 44086123003955,
+   "sampleSku": "DWPR-426720",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174844467,
+   "handle": "necker-island-snow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Off White, Pale, Pale Olive, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Textured, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44086123036723,
+   "sampleSku": "DWPR-426721",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174910003,
+   "handle": "necker-island-stone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Eco-Friendly, Fabric, FR Additives Free, Green, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Texture, Textured, Timeless, Traditional, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086123102259,
+   "sampleSku": "DWPR-426722",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791174975539,
+   "handle": "necker-island-verde",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Earthy, Eco-Friendly, Fabric, Finish, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Juniper, LEED Compatible, Living Room, Matte, Minimalist, Natural Greens, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage Green, Serene, Showroom Line, Smooth, Solid, Solid Color, Sustainable, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44086124675123,
+   "sampleSku": "DWPR-426723",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175106611,
+   "handle": "necker-island-wave",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Blue, Blue-Gray, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Blues, Deep, display_variant, Eco-Friendly, Fabric, FR Additives Free, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Slate Blue, Solid, Solid Color, Subtle, Subtle Texture, Textured, Transitional, Vinyl, Wallcovering",
+   "sampleVariantId": 44086130540595,
+   "sampleSku": "DWPR-426724",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501381754992,
+   "handle": "nayo-vinyl-magazine-weave-prt-16105",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gray, Gunmetal, Light Blue, Natural, Naturals, Nayo Vinyl Magazine Weave, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Teal, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13975689330800,
+   "sampleSku": "PRT-16105-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499612381296,
+   "handle": "niagara-stain-repellent-real-suede-walls-xws-52840",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Geometric, Gold, LEED, Leed Walls, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Niagara Stain Repellent Real Suede, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Suede, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13954981494896,
+   "sampleSku": "XWS-52840-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499613986928,
+   "handle": "niagara-stain-repellent-real-suede-walls-xws-52844",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Suede, Textured, Wallcovering, WALLCOVERING : Wallcovering",
+   "sampleVariantId": 13954992832624,
+   "sampleSku": "XWS-52844-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175204915,
+   "handle": "norman-island-breeze",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Luxe, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Scale, Scale, Showroom Line, Silver, Soft, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134669363,
+   "sampleSku": "DWPR-426733",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792236462131,
+   "handle": "norman-island-caramel-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Scale, Rustic, Scale, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090088489011,
+   "sampleSku": "DWPR-426734",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175270451,
+   "handle": "norman-island-earth",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, display_variant, Embossed, Embossed Detail, Fabric, Faux Leather, FR Additives Free, Glamorous, Global Inspired, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Mocha, Modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Texture, Scale, Scale Pattern, Showroom Line, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134734899,
+   "sampleSku": "DWPR-426735",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175303219,
+   "handle": "norman-island-fudge",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark, Dark Brown, display_variant, Ecru, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Texture, Rustic, Showroom Line, Skin, Sophisticated, Sustainable, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134767667,
+   "sampleSku": "DWPR-426736",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175335987,
+   "handle": "norman-island-greige",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Crocodile, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Glamorous, Global Inspired, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Oatmeal, Off White, Office, Pale, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Scale, Scale, Showroom Line, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134800435,
+   "sampleSku": "DWPR-426737",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175368755,
+   "handle": "norman-island-java",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark Brown, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Mocha, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Scale, Rustic, Scale, Showroom Line, Sustainable, Tan, Textured, Toffee, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134833203,
+   "sampleSku": "DWPR-426738",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175401523,
+   "handle": "norman-island-nocturne",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, dark blue, Dark Tones, Deep, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric Emboss, Global Inspired, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Texture, Scale, Scale Pattern, Showroom Line, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086134865971,
+   "sampleSku": "DWPR-426739",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175467059,
+   "handle": "norman-island-pebble",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Alligator Scale, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Crocodile, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Living Room, Luxe, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile Texture, Showroom Line, Skin, Sophisticated, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086135095347,
+   "sampleSku": "DWPR-426740",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175499827,
+   "handle": "norman-island-pitch",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, dark gray, Dark Grey, Dark Tones, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Glamorous, Global Inspired, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Scale, Scale, Showroom Line, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086135128115,
+   "sampleSku": "DWPR-426741",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175532595,
+   "handle": "norman-island-pond",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator, Alligator Scale, Animal Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, Blue-Gray, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Denim Blue, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Green Building, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile Texture, Showroom Line, Skin, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086135160883,
+   "sampleSku": "DWPR-426742",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175598131,
+   "handle": "norman-island-rosso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alligator Print, Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, Dark Brown, Dark Burgundy, Deep, Dining Room, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Garnet, Global Inspired, Green Building, Healthcare, Hollywood Regency, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Living Room, Luxe, Luxurious, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Reptile Texture, Showroom Line, Skin, Sustainable, Texture, Textured, Traditional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering",
+   "sampleVariantId": 44086135226419,
+   "sampleSku": "DWPR-426744",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791175630899,
+   "handle": "norman-island-spruce",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal Skin, Animal/Insects, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crocodile, dark green, Deep, display_variant, Embossed, Fabric, Faux Leather, FR Additives Free, Global Inspired, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Moody, Natural Greens, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Reptile, Reptile Texture, Scale, Scale Pattern, Showroom Line, Sophisticated, Sustainable, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44086135291955,
+   "sampleSku": "DWPR-426745",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502352670832,
+   "handle": "nisce-prt-74194",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Contemporary, display_variant, Gunmetal, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13987208593520,
+   "sampleSku": "PRT-74194-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502352965744,
+   "handle": "nisce-prt-74195",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Solid, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987214262384,
+   "sampleSku": "PRT-74195-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502353129584,
+   "handle": "nisce-prt-74196",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987216719984,
+   "sampleSku": "PRT-74196-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502353293424,
+   "handle": "nisce-prt-74197",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13987219046512,
+   "sampleSku": "PRT-74197-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502353752176,
+   "handle": "nisce-prt-74199",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Taupe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987224911984,
+   "sampleSku": "PRT-74199-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502353981552,
+   "handle": "nisce-prt-74200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Solid, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987225862256,
+   "sampleSku": "PRT-74200-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502354178160,
+   "handle": "nisce-prt-74201",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Textured, Wallcovering",
+   "sampleVariantId": 13987230580848,
+   "sampleSku": "PRT-74201-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502354538608,
+   "handle": "nisce-prt-74203",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987236380784,
+   "sampleSku": "PRT-74203-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502354669680,
+   "handle": "nisce-prt-74204",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987236872304,
+   "sampleSku": "PRT-74204-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502354866288,
+   "handle": "nisce-prt-74205",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Contemporary, Cream, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13987240640624,
+   "sampleSku": "PRT-74205-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500416376944,
+   "handle": "nori-moto-durable-vinyl-xpv-33704",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964302385264,
+   "sampleSku": "XPV-33704-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500416704624,
+   "handle": "nori-moto-durable-vinyl-xpv-33705",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gray, Light Brown, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964310282352,
+   "sampleSku": "XPV-33705-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500417065072,
+   "handle": "nori-moto-durable-vinyl-xpv-33706",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Mushroom, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964313526384,
+   "sampleSku": "XPV-33706-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500417261680,
+   "handle": "nori-moto-durable-vinyl-xpv-33707",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Smoke, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964314378352,
+   "sampleSku": "XPV-33707-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500417622128,
+   "handle": "nori-moto-durable-vinyl-xpv-33708",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Mocha, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964321652848,
+   "sampleSku": "XPV-33708-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500418506864,
+   "handle": "nori-moto-durable-vinyl-xpv-33709",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Moss, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13964329189488,
+   "sampleSku": "XPV-33709-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500150988912,
+   "handle": "obira-durable-vinyl-xob-33403",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Cotton, Cotton Fiber, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13961234481264,
+   "sampleSku": "XOB-33403-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500158591088,
+   "handle": "obira-durable-vinyl-xob-33404",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Contemporary, Cotton, Cotton Fiber, display_variant, Embossed, Geometric, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13961367978096,
+   "sampleSku": "XOB-33404-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500335800432,
+   "handle": "oketo-durable-vinyl-xpa-33543",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963540070512,
+   "sampleSku": "XPA-33543-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500336357488,
+   "handle": "oketo-durable-vinyl-xpa-33544",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963543347312,
+   "sampleSku": "XPA-33544-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500336881776,
+   "handle": "oketo-durable-vinyl-xpa-33545",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963546132592,
+   "sampleSku": "XPA-33545-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500337340528,
+   "handle": "oketo-durable-vinyl-xpa-33546",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13963550752880,
+   "sampleSku": "XPA-33546-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500338094192,
+   "handle": "oketo-durable-vinyl-xpa-33547",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963557863536,
+   "sampleSku": "XPA-33547-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500338782320,
+   "handle": "oketo-durable-vinyl-xpa-33548",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963562451056,
+   "sampleSku": "XPA-33548-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500339372144,
+   "handle": "oketo-durable-vinyl-xpa-33549",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963569922160,
+   "sampleSku": "XPA-33549-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500340060272,
+   "handle": "oketo-durable-vinyl-xpa-33550",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Grey, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963574706288,
+   "sampleSku": "XPA-33550-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500373254256,
+   "handle": "omu-durable-vinyl-xph-33603",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963867258992,
+   "sampleSku": "XPH-33603-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500373713008,
+   "handle": "omu-durable-vinyl-xph-33604",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963874402416,
+   "sampleSku": "XPH-33604-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500374270064,
+   "handle": "omu-durable-vinyl-xph-33605",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963875745904,
+   "sampleSku": "XPH-33605-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500374728816,
+   "handle": "omu-durable-vinyl-xph-33606",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963881250928,
+   "sampleSku": "XPH-33606-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500375056496,
+   "handle": "omu-durable-vinyl-xph-33607",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963881873520,
+   "sampleSku": "XPH-33607-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500375646320,
+   "handle": "omu-durable-vinyl-xph-33608",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963887968368,
+   "sampleSku": "XPH-33608-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500376629360,
+   "handle": "omu-durable-vinyl-xph-33610",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963895373936,
+   "sampleSku": "XPH-33610-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500377088112,
+   "handle": "omu-durable-vinyl-xph-33611",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963898814576,
+   "sampleSku": "XPH-33611-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500308471920,
+   "handle": "ozora-metallic-vinyl-xos-33503",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Brown, Commercial, display_variant, Eggshell, Gray, Metallic, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Texture, Textured, Vinyl and Metal film, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13963207966832,
+   "sampleSku": "XOS-33503-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500310470768,
+   "handle": "ozora-metallic-vinyl-xos-33505",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Tan, Texture, Textured, Vinyl, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13963234902128,
+   "sampleSku": "XOS-33505-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500311552112,
+   "handle": "ozora-metallic-vinyl-xos-33506",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Lemon, Metallic, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Texture, Textured, Vinyl and Metal film, Vinyls, Wallcovering",
+   "sampleVariantId": 13963245486192,
+   "sampleSku": "XOS-33506-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791176417331,
+   "handle": "palm-island-martini",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Basketweave Texture, Bedroom, Beige, CA TB 117 Compliant, Cellulose Based, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Fabric, Global Inspired, Grasscloth, Hallway, Hospitality, Light Brown, Linen, Living Room, Multi-Purpose, Natural, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Oatmeal, Organic Look, Panels, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Sand, Showroom Line, Texture, Textured, Traditional, Transitional, Upholstery, Wall Upholstery, Wallcovering, Warm, Wheat, Wide Width, Woven",
+   "sampleVariantId": 44086142664755,
+   "sampleSku": "DWPR-426809",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791176646707,
+   "handle": "palm-island-oat",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Beige, Brass, Brown, CA TB 117 Compliant, Camel, Cellulose Based, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Global Inspired, Grasscloth, Hallway, Hospitality, Living Room, Multi-Purpose, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Organic Modern, Organic Texture, Panels, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Upholstery, Wall Upholstery, Wallcovering, Warm, Wheat, Wide Width, Woven",
+   "sampleVariantId": 44086143418419,
+   "sampleSku": "DWPR-426810",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792236953651,
+   "handle": "palm-island-timber-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Basketweave, Bedroom, Brown, CA TB 117 Compliant, Coastal, Coastal Farmhouse, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Earthy, Fabric, Farmhouse, Grasscloth, Hallway, Hospitality, Living Room, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic, Organic Modern, Organic Texture, Panel, Phillipe Romano, Polyester Blend, Residential, Rustic, Showroom Line, Taupe, Texture, Textured, Traditional, Upholstery, Wallcovering, Woven, Woven Pattern",
+   "sampleVariantId": 44090088980531,
+   "sampleSku": "DWPR-426811",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500005597296,
+   "handle": "palm-city-stain-repellent-real-silk-walls-xwo-53676",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Coastal, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, LEED, Leed Walls, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silk, Stripe, Textured, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13958877675632,
+   "sampleSku": "XWO-53676-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502336942192,
+   "handle": "palmerina-prt-74121",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gray, Green, Light, Multi, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, No - Per Settlement, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Pink, Showroom Line, Silver, Textured, Tropical, Wallcovering",
+   "sampleVariantId": 13986971058288,
+   "sampleSku": "PRT-74121-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502337368176,
+   "handle": "palmerina-prt-74123",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Botanical, Commercial, Commercial Wallcovering, display_variant, Eggshell, Leaf, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, No - Per Settlement, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Single Dominant Background Color Word, Teal, Tropical, Wallcovering, White",
+   "sampleVariantId": 13986976465008,
+   "sampleSku": "PRT-74123-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500617080944,
+   "handle": "palo-metallic-suede-vinyl-xrt-34221",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Contemporary, display_variant, Light Blue, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sand, Showroom Line, Suede, Teal, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966598176880,
+   "sampleSku": "XRT-34221-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500618063984,
+   "handle": "palo-metallic-suede-vinyl-xrt-34225",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Gold, Gray, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Suede, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13966614659184,
+   "sampleSku": "XRT-34225-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791176974387,
+   "handle": "parrot-cay-aqua",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Blues, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Sage, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage, Scandinavian, Seafoam Green, Serene, Showroom Line, Smoke, Solid, Solid Color, Subtle Texture, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 44086144729139,
+   "sampleSku": "DWPR-426812",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237019187,
+   "handle": "parrot-cay-beach-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Creamy, display_variant, Fabric, Fabric-backed Vinyl, Fine, Fine Weave, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Scandinavian, Serene, Showroom Line, Silicone, Solid, Subtle Texture, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090089046067,
+   "sampleSku": "DWPR-426813",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791177334835,
+   "handle": "parrot-cay-cloud",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Eggshell, Fabric, Fine, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, light gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Off White, Office, Organic Modern, Pale Grey, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Refined Weave, Scandinavian, Serene, Showroom Line, Silver, Soft, Subtle Texture, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 44086146138163,
+   "sampleSku": "DWPR-426814",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791177465907,
+   "handle": "parrot-cay-coral",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bio-Based, Bleach Cleanable, Brown, Burnt, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Paprika, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Red, Residential, Rustic, Showroom Line, Solid, Subtle Texture, Texture, Textured, Traditional, Vinyl, Wallcovering, Warm, Warm Tone, Woven",
+   "sampleVariantId": 44086146367539,
+   "sampleSku": "DWPR-426815",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791177629747,
+   "handle": "parrot-cay-field",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Living Room, Minimalist, Mushroom, Natural Greens, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Soft, Solid, Subtle Texture, Taupe, Texture, Textured, Transitional, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086146662451,
+   "sampleSku": "DWPR-426816",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237150259,
+   "handle": "parrot-cay-harbor-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Navy, Deep, display_variant, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Indigo, LEED Compatible, Living Room, Minimalist, Navy, Navy Blue, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Scandinavian, Serene, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Texture, Textured, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090089177139,
+   "sampleSku": "DWPR-426817",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237183027,
+   "handle": "parrot-cay-harvest-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Texture, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Showroom Line, Silicone, Solid, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090089209907,
+   "sampleSku": "DWPR-426818",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178055731,
+   "handle": "parrot-cay-lagoon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Blues, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Gray, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Sage Green, Seafoam Green, Serene, Showroom Line, Solid, Subtle Texture, Texture, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086147481651,
+   "sampleSku": "DWPR-426819",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178186803,
+   "handle": "parrot-cay-mouse",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Taupe, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Fine, Fine Weave, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Mocha, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Subtle Texture, Taupe, Texture, Textured, Traditional, Transitional, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44086147711027,
+   "sampleSku": "DWPR-426820",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237281331,
+   "handle": "parrot-cay-night-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Grey, display_variant, Fabric, Fine, Fine Weave, FR Additives Free, Graphite, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Solid, Sophisticated, Subtle Texture, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089308211,
+   "sampleSku": "DWPR-426821",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178514483,
+   "handle": "parrot-cay-sage",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Fine, Fine Weave, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Sage, Linen, Linen Texture, Living Room, Minimalist, Natural Greens, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage, Scandinavian, Serene, Showroom Line, Soft, Solid, Subtle Texture, Taupe, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 44086148268083,
+   "sampleSku": "DWPR-426822",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178711091,
+   "handle": "parrot-cay-seascape",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, Blue, CA TB 117 Compliant, Canvas, Canvas Texture, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Blues, Denim, Denim Blue, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Scandinavian, Serene, Showroom Line, Slate Blue, Solid, Solid Color, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 44086148628531,
+   "sampleSku": "DWPR-426824",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178842163,
+   "handle": "parrot-cay-smoke",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Eco-Friendly, Fabric, Fine, Fine Weave, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Smoke, Smoked, Solid, Sophisticated, Subtle Texture, Texture, Textured, Transitional, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086148890675,
+   "sampleSku": "DWPR-426825",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791178973235,
+   "handle": "parrot-cay-snow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Eco-Friendly, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Refined, Scandinavian, Serene, Showroom Line, Soft, Solid, Subtle Texture, Texture, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086149120051,
+   "sampleSku": "DWPR-426826",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791179137075,
+   "handle": "parrot-cay-spring",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bio-Based, Bleach Cleanable, CA TB 117 Compliant, Chartreuse, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eco-Friendly, Fabric, Fabric-backed Vinyl, Fine, Fine Weave, FR Additives Free, Gold, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Color, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage Green, Serene, Showroom Line, Solid, Subtle Texture, Texture, Textured, Wallcovering, Wheat, Woven",
+   "sampleVariantId": 44086150856755,
+   "sampleSku": "DWPR-426827",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237510707,
+   "handle": "parrot-cay-sterling-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Ash, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Needs-Price, Neutral Color, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Refined Weave, Serene, Showroom Line, Silicone, Silver, Soft, Solid, Subtle Texture, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089537587,
+   "sampleSku": "DWPN-101218",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7791179431987,
+   "handle": "pelican-cay-chocolate",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bean, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Cocoa, Coffee, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Geometric Design, Graffiti-Free, Green Building, Healthcare, Honeycomb, Honeycomb Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Layered Effect, LEED Compatible, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Office, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Tan, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086151315507,
+   "sampleSku": "DWPR-426829",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237576243,
+   "handle": "pelican-cay-fresco-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract Design, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Green Building, Healthcare, Hexagon, Honeycomb, Honeycomb Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Oatmeal, Off White, Office, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090089603123,
+   "sampleSku": "DWPR-426830",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791179726899,
+   "handle": "pelican-cay-lapis",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "3D effect, Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Cool Blues, Denim, Denim Blue, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Geometric design, Graffiti-Free, Green Building, Healthcare, Honeycomb, Honeycomb pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Office, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Slate Blue, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086151839795,
+   "sampleSku": "DWPR-426831",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7791179857971,
+   "handle": "pelican-cay-mineral",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Cool Grays, Dimensional, display_variant, DMF-Free, Emboss, Embossed, Fabric, FR Additives Free, Geometric, Geometric Emboss, Graffiti-Free, Green Building, Grey, Healthcare, Hexagon, Hexagon Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Grey, Living Room, Modern, Navy Blue, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Office, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, PVC-Free, Showroom Line, Silver, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44086152069171,
+   "sampleSku": "DWPR-426832",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237674547,
+   "handle": "pelican-cay-ravine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Deep, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Green Building, Hallway, Healthcare, Hexagon, Hexagon Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light blue, Light Green, Living Room, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Outline, Outline Design, Pale Green, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Steel Blue, Sustainable, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089701427,
+   "sampleSku": "DWPN-101223",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237707315,
+   "handle": "pelican-cay-rhine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "3D Effect, Abstract, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Green, display_variant, DMF-Free, Fabric, Forest Green, FR Additives Free, Geometric, Geometric Texture, Green, Green Building, Healthcare, Hexagon, Hexagon Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Juniper, LEED Compatible, Living Room, Modern, Navy Blue, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089734195,
+   "sampleSku": "DWPN-101224",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237740083,
+   "handle": "pelican-cay-scarlet",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Accent, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Energetic, Fabric, FR Additives Free, Garnet, Geometric, Green Building, Healthcare, Hexagon, Hexagon Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Off-white, Office, Outline, Outline Design, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Residential, Showroom Line, Sustainable, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089766963,
+   "sampleSku": "DWPN-101225",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237772851,
+   "handle": "pigeon-island-autumn",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Autumn, Bedroom, Beige, Bleach Cleanable, Brown, Burlywood, Burnt Sienna, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Distressed Look, DMF-Free, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Harvest, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Organic Modern, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Rustic, Showroom Line, Sienna, Striated, Stripe, Sustainable, Tan, Taupe, Texture, Textured, Upholstery, Vinyl, Wallcovering, Warm, Woven, Yellow",
+   "sampleVariantId": 44090089799731,
+   "sampleSku": "DWPN-101226",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237805619,
+   "handle": "pigeon-island-comet",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Distressed, DMF-Free, Fabric, FR Additives Free, Gray, Green Building, Grey, Hallway, Healthcare, Horizontal, Horizontal Lines, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Light Grey, Living Room, Minimalist, Mist, Modern, Needs-Price, NFPA 260 Compliant, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silver, Striated, Striated Texture, Stripe, Subtle Pattern, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44090089832499,
+   "sampleSku": "DWPN-101227",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237838387,
+   "handle": "pigeon-island-cornsilk",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Ecru, Fabric, FR Additives Free, Gold, Green Building, Hallway, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, Neutral Palette, NFPA 260 Compliant, Off-white, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Showroom Line, Stripe, Stripes, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering, Warm, Woven, Yellow",
+   "sampleVariantId": 44090089865267,
+   "sampleSku": "DWPN-101228",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237871155,
+   "handle": "pigeon-island-dune",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Hallway, Healthcare, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Gray, Living Room, Needs-Price, Neutral Palette, NFPA 260 Compliant, Off White, Organic Modern, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sandy, Serene, Showroom Line, Striations, Stripe, Sustainable, Tan, Taupe, Textured, Upholstery, Vinyl, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090089898035,
+   "sampleSku": "DWPN-101229",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237903923,
+   "handle": "pigeon-island-lake",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Color variation, Commercial, Contemporary, Contract Grade, Dark Gray, Dimensional texture, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Hallway, Horizontal, Horizontal stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Serene, Showroom Line, Stripe, Sustainable, Teal, Texture, Textured, Turquoise, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090089930803,
+   "sampleSku": "DWPN-101230",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792237936691,
+   "handle": "pigeon-island-nautical",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Abstract Pattern, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Cerulean, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Layered Texture, LEED Compatible, Light Gray, Living Room, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pastoral, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Serene, Showroom Line, Steel Blue, Striations, Sustainable, Texture, Textured, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090089963571,
+   "sampleSku": "DWPR-426841",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792237969459,
+   "handle": "pigeon-island-sage",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Green, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gold, Graphite, Green, Green Building, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Mossy, Needs-Price, NFPA 260 Compliant, Non-woven, Off White, Office, Olive Green, Organic, Organic Modern, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Sage, Showroom Line, Striations, Stripe, Subtle Pattern, Sustainable, Textured, Upholstery, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090089996339,
+   "sampleSku": "DWPN-101232",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238002227,
+   "handle": "pigeon-island-seastone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Horizontal, Horizontal Stripes, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Layered Effect, LEED Compatible, Light Blue, Living Room, Mist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off-white, Organic Texture, Pastoral, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Powder Blue, PVC-Free, Sage Green, Serene, Showroom Line, Silver, Strata, Sustainable, Teal, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090029107,
+   "sampleSku": "DWPR-426843",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238034995,
+   "handle": "pigeon-island-thunder",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Linear, Linear pattern, Living Room, Medium Gray, Misty, Modern, Needs-Price, Neutral texture, NFPA 260 Compliant, Organic Modern, Pastoral, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silver, Sophisticated, Stripe, Subtle contrast, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090061875,
+   "sampleSku": "DWPN-101234",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1496798560368,
+   "handle": "philipana-grasscloth-prg-47802",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Commercial, Dark Brown, Deep Brown Gold, display_variant, Ecru, Entryway, Farmhouse, Geometric, Grasscloth, Grasscloth Texture, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Textural, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920794443888,
+   "sampleSku": "PRG-47802-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496799019120,
+   "handle": "philipana-grasscloth-prg-47804",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Geometric, Gold, Gold Metallic, Grasscloth, Grasscloth Texture, Hand Crafted, Hotel Lobby, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering, Yellow",
+   "sampleVariantId": 13920803520624,
+   "sampleSku": "PRG-47804-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496799379568,
+   "handle": "philipana-grasscloth-prg-47806",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, Corn Yellow Gold, display_variant, Ecru, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Hotel Lobby, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920809222256,
+   "sampleSku": "PRG-47806-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496799543408,
+   "handle": "philipana-grasscloth-prg-47807",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, Deeper Brown Gold, display_variant, Fabric, Grasscloth, Grasscloth Texture, Hand Crafted, Hotel Lobby, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920812138608,
+   "sampleSku": "PRG-47807-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496800067696,
+   "handle": "philipana-grasscloth-prg-47810",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Avocado, Basketweave, Bedroom, Beige, Chartreuse, Coastal, Commercial, display_variant, Ecru, Fabric, Gold, Grasscloth, Grasscloth Texture, Green, Hand Crafted, Khaki, Lime Green, Linen, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Olive, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Spa, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920823869552,
+   "sampleSku": "PRG-47810-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496800788592,
+   "handle": "philipana-grasscloth-prg-47813",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Commercial, Contemporary, Dining Room, display_variant, Ecru, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Khaki, Light Yellow Gold, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Olive Green, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Textured, Traditional, Transitional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13920836452464,
+   "sampleSku": "PRG-47813-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496801116272,
+   "handle": "philipana-grasscloth-prg-47815",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, Deep Green Gold, display_variant, Eggshell, Entryway, Fabric, Gold, Grasscloth, Grasscloth Texture, Green, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Olive, Olive Green, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920842350704,
+   "sampleSku": "PRG-47815-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496801280112,
+   "handle": "philipana-grasscloth-prg-47816",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, Deep Spice Red Gold, Dining Room, display_variant, Ecru, Entryway, Farmhouse, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Solid/Textural, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13920842645616,
+   "sampleSku": "PRG-47816-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496801443952,
+   "handle": "philipana-grasscloth-prg-47817",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Coastal, Commercial, display_variant, Entryway, Gold, Grasscloth, Grasscloth Texture, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange Red Gold, Philipana Grasscloth, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Red, Rustic, Sand, Showroom Line, Solid/Textural, Tan, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13920848216176,
+   "sampleSku": "PRG-47817-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876227635,
+   "handle": "dwjj-40550-pietro",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bella Italiano, Coastal, Commercial, Cream, display_variant, Ecru, Grasscloth, Light Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper Weave, Phillipe Romano, Phillipe Romano Naturals, Pietro, Pietro Paper Weave Naturals, Showroom Line, Textured, Traditional, Wallcovering, White",
+   "sampleVariantId": 41180288548915,
+   "sampleSku": "DWJJ-40550-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238133299,
+   "handle": "pinnacle-rock-almond",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine, Fine Detail, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Solid, Sustainable, Tan, Texture, Textured, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090291251,
+   "sampleSku": "DWPR-426872",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238166067,
+   "handle": "pinnacle-rock-camel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Showroom Line, Solid, Subtle Texture, Sustainable, Tan, Texture, Textured, Traditional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090324019,
+   "sampleSku": "DWPR-426873",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238198835,
+   "handle": "pinnacle-rock-clay",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, Earthy, Fabric, Fabric-backed Vinyl, Farmhouse, Fine, Fine Detail, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Linen, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Rustic, Showroom Line, Solid, Sustainable, Tan, Texture, Textured, Traditional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090356787,
+   "sampleSku": "DWPR-426874",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238231603,
+   "handle": "pinnacle-rock-cream",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Fabric, Fine, Fine Detail, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Sandstone, Showroom Line, Solid, Sustainable, Tan, Texture, Textured, Traditional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090389555,
+   "sampleSku": "DWPR-426875",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238264371,
+   "handle": "pinnacle-rock-daffodil",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contract Grade, display_variant, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Showroom Line, Solid, Subtle Pattern, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090422323,
+   "sampleSku": "DWPR-426876",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238297139,
+   "handle": "pinnacle-rock-dusty-rose",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Fine, Floral, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Brown, Light Peach, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Orange, Peach, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Rosewood, Showroom Line, Solid, Sustainable, Tan, Textured, Traditional, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090090455091,
+   "sampleSku": "DWPN-101240",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238329907,
+   "handle": "pinnacle-rock-frost",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Fabric, Fine, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Modern, Needs-Price, Neutral Color, NFPA 260 Compliant, Off-white, Office, Pale, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Scandinavian, Serene, Showroom Line, Solid, Subtle Texture, Sustainable, Texture, Textured, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090487859,
+   "sampleSku": "DWPN-101241",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238362675,
+   "handle": "pinnacle-rock-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, Deep, display_variant, Fabric, Fabric-backed Vinyl, Fine, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Showroom Line, Solid, Sophisticated, Subtle Texture, Sustainable, Texture, Textured, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090520627,
+   "sampleSku": "DWPN-101242",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238395443,
+   "handle": "pinnacle-rock-harbor",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Slate Gray, display_variant, Fabric, Fine, Fine Texture, FR Additives Free, Gray, Green Building, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Slate Blue, Solid, Solid Color, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090553395,
+   "sampleSku": "DWPN-101243",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238428211,
+   "handle": "pinnacle-rock-laurel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, LEED Compatible, Living Room, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Sage, Serene, Showroom Line, Solid, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090586163,
+   "sampleSku": "DWPR-426881",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238460979,
+   "handle": "pinnacle-rock-merlot",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dining Room, display_variant, Dusty, Dusty Rose, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Mocha, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Red, Showroom Line, Solid, Sustainable, Taupe, Texture, Textured, Timeless, Traditional, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090618931,
+   "sampleSku": "DWPN-101245",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238493747,
+   "handle": "pinnacle-rock-muslin",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Ecru, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Solid, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090651699,
+   "sampleSku": "DWPN-101246",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238526515,
+   "handle": "pinnacle-rock-night",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, dark gray, Deep, display_variant, Fabric, Fine, Fine Texture, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Slate, Solid, Sustainable, Texture, Textured, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090684467,
+   "sampleSku": "DWPN-101247",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238559283,
+   "handle": "pinnacle-rock-parsley",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Ash, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Light Taupe, Living Room, Minimalist, Muted, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Solid, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Uniform, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090717235,
+   "sampleSku": "DWPR-426885",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238592051,
+   "handle": "pinnacle-rock-perth",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Slate Gray, display_variant, Fabric, Fine, Fine Texture, FR Additives Free, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Slate Blue, Smoke, Solid, Solid Color, Steel Blue, Sustainable, Texture, Textured, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090750003,
+   "sampleSku": "DWPN-101249",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238624819,
+   "handle": "pinnacle-rock-pond",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Slate Gray, display_variant, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Gray, Green Building, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Slate Blue, Solid, Steel Blue, Sustainable, Texture, Textured, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090782771,
+   "sampleSku": "DWPN-101250",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238657587,
+   "handle": "pinnacle-rock-sea-green",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Fabric, Fine, Fine Texture, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Scandinavian, Serene, Showroom Line, Solid, Solid Color, Sustainable, Teal, Texture, Textured, Turquoise, Uniform, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090815539,
+   "sampleSku": "DWPN-101251",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238690355,
+   "handle": "pinnacle-rock-shadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Fine, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Solid, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090848307,
+   "sampleSku": "DWPR-426889",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238723123,
+   "handle": "pinnacle-rock-sky",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine, FR Additives Free, Gray, Green, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Monochromatic, Needs-Price, NFPA 260 Compliant, Office, Pale Green, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Sage, Serene, Showroom Line, Silver, Soft, Solid, Subtle Texture, Sustainable, Texture, Textured, Uniform, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090881075,
+   "sampleSku": "DWPN-101253",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238755891,
+   "handle": "pinnacle-rock-stone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Taupe, Living Room, Minimalist, Mushroom, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Serene, Showroom Line, Solid, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090090913843,
+   "sampleSku": "DWPN-101254",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238788659,
+   "handle": "pinnacle-rock-sunset",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Clay, Commercial, Contemporary, Contract Grade, Dark Terracotta, display_variant, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pinpoint, Polyester Blend, Red, Showroom Line, Solid, Solid Color, Sustainable, Terracotta, Texture, Textured, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090090946611,
+   "sampleSku": "DWPR-426892",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496465309808,
+   "handle": "pleated-piazza-by-philipe-romano-prp-85603",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, Dining Room, display_variant, Eggshell, Entryway, Floral, Living Room, material-group-textured, Minimalist, Needs-Image, Needs-Price, Needs-Width, Off-White, Paper, Philipe Romano 3D Pleats, Phillipe Romano, Pleated Piazza by Philipe Romano, Polyester, Showroom Line, Spongeable : Paste to the Wall : Some Light Resistence, Textural, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 13915624800368,
+   "sampleSku": "PRP-85603-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496473665648,
+   "handle": "pleated-scrolio-by-philipe-romano-prp-85623",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Purple, display_variant, Eggshell, Geometric, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, Nursery, Philipe Romano 3D Pleats, Phillipe Romano, Pleated Scrolio by Philipe Romano, Plum, Polyester, Purple, Showroom Line, Spa, Spongeable : Paste to the Wall : Some Light Resistence, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13915749089392,
+   "sampleSku": "PRP-85623-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496474845296,
+   "handle": "pleated-spring-by-philip-romano-prp-85626",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Azure Blue Green, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Teal, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Philipe Romano 3D Pleats, Phillipe Romano, Pleated Spring by Philip Romano, Polyester, Showroom Line, Spa, Spongeable : Paste to the Wall : Some Light Resistence, Teal, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13915774419056,
+   "sampleSku": "PRP-85626-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238821427,
+   "handle": "point-udall-pepper",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Crosshatch, display_variant, Fabric, FR Additives Free, Gray, Green Building, Grid Pattern, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linear Texture, Living Room, Minimalist, Modern, Monochrome, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Organic, Performance Fabric, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Plexus, Polyester Blend, Showroom Line, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44090090979379,
+   "sampleSku": "DWPR-426912",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238854195,
+   "handle": "port-royal-brook",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Deep, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Gray, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Slate, Slate Gray, Smooth, Solid, Solid Color, Subtle, Surface, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091012147,
+   "sampleSku": "DWPN-101257",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238886963,
+   "handle": "port-royal-cedar",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Chocolate, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Saddlebrown, Showroom Line, Sienna, Smooth, Solid, Solid Color, Suede, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090091044915,
+   "sampleSku": "DWPN-101258",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792238952499,
+   "handle": "port-royal-grigio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Light Taupe, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Smooth, Solid, Subtle, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091241523,
+   "sampleSku": "DWPR-426923",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792238985267,
+   "handle": "port-royal-hunter",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, dark green, Dark Olive, Dark Olive Green, Deep, display_variant, Fabric, FR Additives Free, Gold, Grain, Grayish Green, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Office, Olive, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Solid, Solid Color, Subtle, Subtle Texture, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091274291,
+   "sampleSku": "DWPR-426924",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239050803,
+   "handle": "port-royal-maple",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Finish, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Saddlebrown, Showroom Line, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Toffee, Traditional, Transitional, Umber, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090091339827,
+   "sampleSku": "DWPR-426925",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239083571,
+   "handle": "port-royal-neptune",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, Deep, Dim Gray, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Graphite, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Slate Gray, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091372595,
+   "sampleSku": "DWPN-101262",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239149107,
+   "handle": "port-royal-nordic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Beige, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Pale Yellow, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Scandinavian, Serene, Showroom Line, Smooth, Soft, Solid, Solid Color, Sustainable, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091438131,
+   "sampleSku": "DWPN-101263",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239181875,
+   "handle": "port-royal-serrano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Deep, Dining Room, display_variant, Eggshell, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Mahogany, Maroon, Matte, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Red, Showroom Line, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Timeless, Traditional, Umber, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090091470899,
+   "sampleSku": "DWPR-426928",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239214643,
+   "handle": "port-royal-smoke",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather Effect, LEED Compatible, Living Room, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091503667,
+   "sampleSku": "DWPR-426929",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239247411,
+   "handle": "port-royal-thunder",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Smooth, Solid, Solid Color, Subtle Texture, Suede, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091536435,
+   "sampleSku": "DWPR-426930",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239280179,
+   "handle": "port-royal-trail",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Finish, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Matte, Minimalist, Muted, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Smooth, Solid, Solid Color, Subtle Texture, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091601971,
+   "sampleSku": "DWPN-101267",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239345715,
+   "handle": "port-royal-truffle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Rustic, Showroom Line, Smooth, Solid, Solid Color, Suede, Sustainable, Taupe, Texture, Textured, Traditional, Transitional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090091634739,
+   "sampleSku": "DWPN-101268",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239378483,
+   "handle": "port-royal-vesper",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Gold, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Taupe, Living Room, Matte, Minimalist, Modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polido, Polyester Blend, Serene, Showroom Line, Smooth, Solid, Solid Color, Subtle Texture, Suede, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090091700275,
+   "sampleSku": "DWPR-426933",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500481880176,
+   "handle": "polywally-polyester-textile-walls-txt-33865",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Light Beige, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964975702128,
+   "sampleSku": "TXT-33865-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500482338928,
+   "handle": "polywally-polyester-textile-walls-txt-33866",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964978520176,
+   "sampleSku": "TXT-33866-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500483485808,
+   "handle": "polywally-polyester-textile-walls-txt-33869",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13964987826288,
+   "sampleSku": "TXT-33869-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500484698224,
+   "handle": "polywally-polyester-textile-walls-txt-33872",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Bone, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13965000704112,
+   "sampleSku": "TXT-33872-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500485451888,
+   "handle": "polywally-polyester-textile-walls-txt-33874",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Bone, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965006143600,
+   "sampleSku": "TXT-33874-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500485943408,
+   "handle": "polywally-polyester-textile-walls-txt-33875",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965011714160,
+   "sampleSku": "TXT-33875-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500486729840,
+   "handle": "polywally-polyester-textile-walls-txt-33877",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Brown, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Solid, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13965020233840,
+   "sampleSku": "TXT-33877-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500487647344,
+   "handle": "polywally-polyester-textile-walls-txt-33879",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "20 oz/lineal yard, Architectural, Beige, Brown, Cellulose/Polyester Non-woven, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Taupe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13965028687984,
+   "sampleSku": "TXT-33879-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239509555,
+   "handle": "puerto-plata-bark",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Rustic, Sand, Serene, Showroom Line, Smooth, Solid, Square, Stitch, Stitched Detail, Sustainable, Taupe, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092126259,
+   "sampleSku": "DWPR-426970",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239542323,
+   "handle": "puerto-plata-black",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Gray, Deep, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Luxe, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Showroom Line, Smooth, Solid, Sophisticated, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092159027,
+   "sampleSku": "DWPR-426971",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239607859,
+   "handle": "puerto-plata-forest",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Gray, Deep, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Gray, Green, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Showroom Line, Solid, Sophisticated, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092355635,
+   "sampleSku": "DWPR-426972",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239640627,
+   "handle": "puerto-plata-husk",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Tan, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Brown, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Showroom Line, Smooth, Solid, Square, Stitch, Stitched Detail, Sustainable, Tan, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090092388403,
+   "sampleSku": "DWPN-101273",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239673395,
+   "handle": "puerto-plata-limestone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, display_variant, Eggshell, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pattern, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Serene, Showroom Line, Soft, Solid, Square, Stitch, Stitched Detail, Sustainable, Taupe, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092421171,
+   "sampleSku": "DWPR-426974",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792239706163,
+   "handle": "puerto-plata-mahogany",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark, dark brown, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Stitch, Green Building, Grid, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Red, Showroom Line, Sophisticated, Square, Square Pattern, Stitch, Sustainable, Taupe, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092453939,
+   "sampleSku": "DWPN-101275",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239738931,
+   "handle": "puerto-plata-neptune",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Showroom Line, Smoke, Solid, Sophisticated, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092486707,
+   "sampleSku": "DWPN-101276",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239771699,
+   "handle": "puerto-plata-nocturne",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Charcoal Gray, Check, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Gray, Deep, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Luxe, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Design, Showroom Line, Solid, Sophisticated, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092519475,
+   "sampleSku": "DWPN-101277",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239804467,
+   "handle": "puerto-plata-oxblood",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Brown, Deep, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Luxe, Mahogany, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Rectangles, Red, Showroom Line, Solid, Sophisticated, Stitched, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Walnut",
+   "sampleVariantId": 44090092552243,
+   "sampleSku": "DWPN-101278",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239837235,
+   "handle": "puerto-plata-pavlova",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Lattice, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Serene, Showroom Line, Soft, Solid, Square, Stitch, Stitched, Sustainable, Tan, Taupe, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092585011,
+   "sampleSku": "DWPN-101279",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239870003,
+   "handle": "puerto-plata-shadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Dark Charcoal, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Texture, Showroom Line, Smooth, Solid, Sophisticated, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092617779,
+   "sampleSku": "DWPN-101280",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239902771,
+   "handle": "puerto-plata-snow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, Cream, display_variant, Fabric, FR Additives Free, Geometric, Geometric Pattern, Green Building, Grid, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off White, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Quilted Design, Serene, Showroom Line, Silver, Soft, Square, Stitch, Stitched Detail, Sustainable, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090092650547,
+   "sampleSku": "DWPN-101281",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792239968307,
+   "handle": "puerto-plata-walnut",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cotton Blend, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Minimalist, Mocha, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, Phillipe Romano, Phthalate-Free, Polyester Blend, Prado, Quilted, Showroom Line, Solid, Square, Stitch, Stitched, Sustainable, Tan, Taupe, Textured, Tile, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090092879923,
+   "sampleSku": "DWPN-101282",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240001075,
+   "handle": "punch-bowl-aluminum",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Bone, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Serene, Showroom Line, Solid, Subtle Grain, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092912691,
+   "sampleSku": "DWPR-426983",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240033843,
+   "handle": "punch-bowl-cinder",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, dark grey, display_variant, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Slate, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092945459,
+   "sampleSku": "DWPN-101284",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240066611,
+   "handle": "punch-bowl-harbor",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Grey, Deep, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Residential, Showroom Line, Solid, Sophisticated, Subtle Grain, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090092978227,
+   "sampleSku": "DWPN-101285",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240132147,
+   "handle": "punch-bowl-hydro",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Serene, Showroom Line, Solid, Solid Color, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093174835,
+   "sampleSku": "DWPN-101286",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240164915,
+   "handle": "punch-bowl-linen",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Gray, Linen, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Rustic, Serene, Showroom Line, Silver, Soft, Solid, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093207603,
+   "sampleSku": "DWPN-101287",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240230451,
+   "handle": "punch-bowl-madder",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, Burgundy, CA TB 117 Compliant, Chestnut, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Burgundy, display_variant, Dusty, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Matte Finish, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Red, Residential, Rustic, Showroom Line, Solid, Sustainable, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090093273139,
+   "sampleSku": "DWPN-101288",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240263219,
+   "handle": "punch-bowl-marine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Marine, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Slate, Slate Grey, Solid, Sophisticated, Sustainable, Teal, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093305907,
+   "sampleSku": "DWPN-101289",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240295987,
+   "handle": "punch-bowl-owl",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Bone, Breathable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Taupe, Living Room, Minimalist, Mushroom, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Solid, Sophisticated, Subtle Grain, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093338675,
+   "sampleSku": "DWPR-426990",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240328755,
+   "handle": "punch-bowl-pavlova",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Creamy, display_variant, Ecru, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Off White, Office, Organic Modern, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Serene, Showroom Line, Solid, Subtle Grain, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093371443,
+   "sampleSku": "DWPN-101291",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240361523,
+   "handle": "punch-bowl-rustic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, Brown, CA TB 117 Compliant, Chestnut, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Residential, Rustic, Showroom Line, Solid, Sustainable, Tan, Textured, Timeless, Toffee, Traditional, Umber, Uniform Grain, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090093404211,
+   "sampleSku": "DWPN-101292",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240394291,
+   "handle": "punch-bowl-smoke",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Breathable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Insects, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Slate, Smoked, Solid, Sophisticated, Subtle Grain, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093436979,
+   "sampleSku": "DWPN-101293",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240427059,
+   "handle": "punch-bowl-spruce",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Green, Deep, display_variant, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Graphite, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Solid, Sophisticated, Spruce, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093469747,
+   "sampleSku": "DWPR-426994",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240459827,
+   "handle": "punch-bowl-terra",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Light Taupe, Living Room, Minimalist, Mocha, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Prairie, PVC-Free, Showroom Line, Solid, Sophisticated, Sustainable, Taupe, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093502515,
+   "sampleSku": "DWPN-101295",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240492595,
+   "handle": "peter-island-aqua",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Cadetblue, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Powder Blue, Prime, PVC-Free, Seafoam Green, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Teal, Texture, Textured, Tint, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093535283,
+   "sampleSku": "DWPR-426996",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240525363,
+   "handle": "peter-island-aubergiine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, Dining Room, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Red, Rustic, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Transitional, Uniform Texture, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090093568051,
+   "sampleSku": "DWPR-426997",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240558131,
+   "handle": "peter-island-barista",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Tan, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte, Matte Finish, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Rich, Rustic, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090093600819,
+   "sampleSku": "DWPN-101298",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240623667,
+   "handle": "peter-island-bark",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Brown, Light Taupe, Living Room, Matte, Minimalist, Mushroom, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Rustic, Serene, Showroom Line, Silicone, Silicone Hybrid, Solid, Solid Color, Subtle, Surface, Sustainable, Tan, Taupe, Textured, Transitional, Uniform Texture, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093666355,
+   "sampleSku": "DWPN-101299",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240656435,
+   "handle": "peter-island-cinder",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, dark gray, Dark Grey, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Showroom Line, Silicone, Solid, Solid Color, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093731891,
+   "sampleSku": "DWPR-427000",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240721971,
+   "handle": "peter-island-crow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, dark gray, Dark Grey, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Showroom Line, Silicone, Solid, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090093830195,
+   "sampleSku": "DWPR-427001",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240754739,
+   "handle": "peter-island-dove",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Ivory, LEED Compatible, Light Beige, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Off White, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Scandinavian, Serene, Showroom Line, Silicone, Silicone Hybrid, Soft, Solid, Subtle, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44090093862963,
+   "sampleSku": "DWPN-101302",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240820275,
+   "handle": "peter-island-elm",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte, Matte Finish, Modern, Needs-Price, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Rustic, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Uniform Texture, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090094092339,
+   "sampleSku": "DWPN-101303",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240853043,
+   "handle": "peter-island-emberglow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burnt, Burnt Orange, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Orange, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Uniform Texture, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090096255027,
+   "sampleSku": "DWPN-101304",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240885811,
+   "handle": "peter-island-goldenrod",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Golden Yellow, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Saffron, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Texture, Textured, Transitional, Uniform, Upholstery, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090096287795,
+   "sampleSku": "DWPR-427005",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792240918579,
+   "handle": "peter-island-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Gold, Gray, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Taupe, Living Room, Minimalist, Muted, Needs-Price, Neutral Tone, NFPA 260 Compliant, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Silicone Hybrid, Solid, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096320563,
+   "sampleSku": "DWPN-101306",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240951347,
+   "handle": "peter-island-grass",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Avocado, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Chartreuse, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Khaki, Light Olive Green, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Sage, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Subtle, Subtle Texture, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096353331,
+   "sampleSku": "DWPN-101307",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792240984115,
+   "handle": "peter-island-gull",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Green, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Sage, Serene, Showroom Line, Silicone, Silver, Soft, Solid, Stone, Subtle Texture, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096386099,
+   "sampleSku": "DWPN-101308",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241016883,
+   "handle": "peter-island-gust",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Grain, Gray, Gray-beige, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Taupe, Living Room, Minimalist, Muted, Needs-Price, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Solid, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096418867,
+   "sampleSku": "DWPN-101309",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241049651,
+   "handle": "peter-island-holly",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Green, Deep, Deep Olive Green, display_variant, DMF-Free, Fabric, Forest Green, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096451635,
+   "sampleSku": "DWPN-101310",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241082419,
+   "handle": "peter-island-metal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Slate Gray, Smoke, Solid, Solid Color, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096484403,
+   "sampleSku": "DWPN-101311",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241115187,
+   "handle": "peter-island-moonstone",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Linen, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Pale, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Silver, Smooth, Solid, Subtle Texture, Surface, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096517171,
+   "sampleSku": "DWPR-427012",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241147955,
+   "handle": "peter-island-navy",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Deep, Deep Indigo, display_variant, DMF-Free, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Midnight, Midnight Blue, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096549939,
+   "sampleSku": "DWPR-427013",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241180723,
+   "handle": "peter-island-oat",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Creamy, display_variant, DMF-Free, Eggshell, Fabric, Fine, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Silicone Hybrid, Solid, Solid Color, Subtle Texture, Sustainable, Tan, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096582707,
+   "sampleSku": "DWPR-427014",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241213491,
+   "handle": "peter-island-pitch",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Deep, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Moody, Needs-Price, NFPA 260 Compliant, Onyx, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Uniform Texture, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096615475,
+   "sampleSku": "DWPN-101315",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241246259,
+   "handle": "peter-island-river",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, dark blue, Dark Teal, Deep, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Teal, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096648243,
+   "sampleSku": "DWPR-427016",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241279027,
+   "handle": "peter-island-royal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Deep, display_variant, DMF-Free, Eggshell, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Uniform Texture, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096681011,
+   "sampleSku": "DWPR-427017",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241311795,
+   "handle": "peter-island-saddle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, Farmhouse, Fine, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Paper, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rich, Rustic, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Tan, Texture, Textured, Traditional, Upholstery, Wallcovering, Warm",
+   "sampleVariantId": 44090096713779,
+   "sampleSku": "DWPR-427018",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241344563,
+   "handle": "peter-island-sand",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Smooth, Solid, Solid Color, Subtle, Subtle Texture, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Upholstery, Wallcovering, Warm",
+   "sampleVariantId": 44090096746547,
+   "sampleSku": "DWPR-427019",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241377331,
+   "handle": "peter-island-sky",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Dusty, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Light Steel Blue, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Slate, Solid, Solid Color, Steel Blue, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096779315,
+   "sampleSku": "DWPN-101320",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241410099,
+   "handle": "peter-island-tapas",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Burnt, Burnt Orange, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Sienna, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Red, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090096812083,
+   "sampleSku": "DWPN-101321",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241442867,
+   "handle": "peter-island-tempest",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Navy, Deep, Deep Teal, Denim Blue, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Modern, Navy, Navy Blue, Needs-Price, NFPA 260 Compliant, Office, Peacock, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Solid, Solid Color, Sustainable, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096844851,
+   "sampleSku": "DWPN-101322",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241475635,
+   "handle": "peter-island-tinsel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Off White, Office, Organic Modern, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Soft, Solid, Solid Color, Subtle, Subtle Texture, Sustainable, Texture, Textured, Upholstery, Wallcovering",
+   "sampleVariantId": 44090096877619,
+   "sampleSku": "DWPR-427023",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241508403,
+   "handle": "peter-island-tranquil",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Eggshell, Fabric, Fine, FR Additives Free, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Minimalist, Monochromatic, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Silver, Smooth, Soft, Solid, Subtle Texture, Surface, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090096910387,
+   "sampleSku": "DWPR-427024",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241573939,
+   "handle": "peter-island-tropic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Green, Deep, display_variant, DMF-Free, Fabric, Forest Green, FR Additives Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Prime, PVC-Free, Serene, Showroom Line, Silicone, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097139763,
+   "sampleSku": "DWPN-101325",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1501381296240,
+   "handle": "puerto-magazine-weave-prt-16103",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Puerto Magazine Weave, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13975678779504,
+   "sampleSku": "PRT-16103-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241639475,
+   "handle": "quintana-bay-ash",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Gold, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Misty, Modern, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Solid, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097401907,
+   "sampleSku": "DWPN-101326",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241672243,
+   "handle": "quintana-bay-barista",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Taupe, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Showroom Line, Silicone, Solid, Sophisticated, Subtle Texture, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097434675,
+   "sampleSku": "DWPN-101327",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241705011,
+   "handle": "quintana-bay-canal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Blue, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dusty, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Gray-blue, Light Grey, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Slate Blue, Smoke, Solid, Sustainable, Texture, Textured, Uniform, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097467443,
+   "sampleSku": "DWPR-427052",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241737779,
+   "handle": "quintana-bay-field",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Beige, Breathable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Solid, Sustainable, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097500211,
+   "sampleSku": "DWPR-427053",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241770547,
+   "handle": "quintana-bay-fiesta",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Garnet, Grain, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Mahogany, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Red, Residential, Rustic, Showroom Line, Silicone, Solid, Sustainable, Textured, Traditional, Transitional, Uniform, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090097532979,
+   "sampleSku": "DWPN-101330",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241803315,
+   "handle": "quintana-bay-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Grey, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Residential, Showroom Line, Silicone, Solid, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097565747,
+   "sampleSku": "DWPR-427055",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241836083,
+   "handle": "quintana-bay-grove",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Olive, Deep, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Graphite, Gray, Green, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Showroom Line, Silicone, Slate Gray, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097598515,
+   "sampleSku": "DWPN-101332",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241868851,
+   "handle": "quintana-bay-indigo",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Grey, Deep, display_variant, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Indigo, Leather, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Showroom Line, Silicone, Solid, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097631283,
+   "sampleSku": "DWPR-427057",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241901619,
+   "handle": "quintana-bay-mason",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Light Beige, Light Gray, Living Room, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Soft, Solid, Subtle Texture, Sustainable, Taupe, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097664051,
+   "sampleSku": "DWPN-101334",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792241934387,
+   "handle": "quintana-bay-saddle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Breathable, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Brown, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebbled, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Showroom Line, Silicone, Solid, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Uniform, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090097696819,
+   "sampleSku": "DWPR-427059",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792241967155,
+   "handle": "quintana-bay-sea-mist",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, Icy, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Gray, Light Grey, lightBlue, Living Room, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Silver, Solid, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097729587,
+   "sampleSku": "DWPN-101336",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242032691,
+   "handle": "quintana-bay-shell",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Antimicrobial-Free, Architectural, Bedroom, Beige, Breathable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Greige, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Gray, Light Taupe, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Serene, Showroom Line, Silicone, Soft, Solid, Subtle Texture, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090097795123,
+   "sampleSku": "DWPN-101337",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242065459,
+   "handle": "quintana-bay-terrain",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Aire, Animal, Antimicrobial-Free, Architectural, Bedroom, Breathable, Bronze, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Questa, Rich, Rustic, Showroom Line, Silicone, Solid, Sustainable, Taupe, Textured, Traditional, Transitional, Uniform, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090097827891,
+   "sampleSku": "DWPN-101338",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 6882876489779,
+   "handle": "dwjj-40620-raffaele",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Bone, Commercial, Contemporary, Cream, display_variant, Grasscloth, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Raffaele, Raffaele Paper Naturals, Showroom Line, Stripe, Textured, Wallcovering, White",
+   "sampleVariantId": 41180288942131,
+   "sampleSku": "DWJJ-40620-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242098227,
+   "handle": "rainbow-reef-bark",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Chevron, Chevron Pattern, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Needs-Price, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Rustic, Showroom Line, Subtle Texture, Sustainable, Tan, Texture, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090097860659,
+   "sampleSku": "DWPN-101339",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242130995,
+   "handle": "rainbow-reef-cashew",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Fine, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Rustic, Showroom Line, Subtle Texture, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Wheat, Woven",
+   "sampleVariantId": 44090097893427,
+   "sampleSku": "DWPR-427064",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242163763,
+   "handle": "rainbow-reef-flannel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Palette, NFPA 260 Compliant, Paper, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Showroom Line, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090097926195,
+   "sampleSku": "DWPR-427065",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242196531,
+   "handle": "rainbow-reef-harbor",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, Deep, display_variant, Fabric, FR Additives Free, Geometric Texture, Graphite, Gray, Green Building, Grey, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Serene, Showroom Line, Slate Gray, Subtle Weave, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090097958963,
+   "sampleSku": "DWPN-101342",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242229299,
+   "handle": "rainbow-reef-natural",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Healthcare, Herringbone, Herringbone Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Living Room, Needs-Price, Neutral Texture, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Showroom Line, Subtle Weave, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090097991731,
+   "sampleSku": "DWPN-101343",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242262067,
+   "handle": "rainbow-reef-pebble",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Herringbone, Herringbone Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, light beige, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Serene, Showroom Line, Subtle Texture, Sustainable, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090098024499,
+   "sampleSku": "DWPN-101344",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242294835,
+   "handle": "rainbow-reef-rust",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fabric-backed Vinyl, Fine, Fine Texture, FR Additives Free, Green Building, Hallway, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Rich, Rustic, Showroom Line, Sustainable, Tan, Taupe, Texture, Textured, Traditional, Transitional, Uniform Pattern, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090098057267,
+   "sampleSku": "DWPN-101345",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242327603,
+   "handle": "rainbow-reef-storm",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, dark gray, display_variant, Fabric, FR Additives Free, Geometric Weave, Gray, Green Building, Grey, Healthcare, Herringbone, Herringbone Pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Medium Gray, Minimalist, Misty, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Showroom Line, Sophisticated, Subtle Texture, Sustainable, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090098090035,
+   "sampleSku": "DWPN-101346",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242360371,
+   "handle": "rainbow-reef-timber",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric Texture, Green Building, Hallway, Healthcare, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Living Room, Needs-Price, Neutral Tone, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rafter, Showroom Line, Sustainable, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090098122803,
+   "sampleSku": "DWPN-101347",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242393139,
+   "handle": "red-hook-ermine",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather Effect, LEED Compatible, Living Room, Minimalist, Modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098155571,
+   "sampleSku": "DWPR-427074",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242425907,
+   "handle": "red-hook-flax",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Brown, Light Taupe, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Non-woven, Organic Modern, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Tan, Taupe, Tawny, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090098188339,
+   "sampleSku": "DWPR-427075",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242556979,
+   "handle": "red-hook-fog",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Linen, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Silver, Smooth, Soft, Solid, Solid Color, Subtle, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098483251,
+   "sampleSku": "DWPR-427076",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242589747,
+   "handle": "red-hook-honeycomb",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Geometric, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Brown, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Rustic, Showroom Line, Smooth, Solid, Sustainable, Tan, Texture, Textured, Timeless, Traditional, Transitional, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Warm Tone",
+   "sampleVariantId": 44090098516019,
+   "sampleSku": "DWPR-427078",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242622515,
+   "handle": "red-hook-jungle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Biophilic, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Green, Dark Teal, Deep, Deep Olive Green, display_variant, Fabric, FR Additives Free, Green, Green Building, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Non-woven, Office, Olive Green, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Slate Gray, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Traditional, Transitional, Tropical, Uniform Texture, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098548787,
+   "sampleSku": "DWPN-101352",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242655283,
+   "handle": "red-hook-neptune",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Distressed, Fabric, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, Leather Effect, LEED Compatible, Light Gray, Living Room, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Slate, Slate Gray, Solid, Subtle Texture, Sustainable, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098581555,
+   "sampleSku": "DWPR-427081",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242688051,
+   "handle": "red-hook-oceania",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Blue, Dark Navy, Deep, Deep Teal, display_variant, Fabric, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Living Room, Matte Finish, Midnight, Midnight Blue, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098614323,
+   "sampleSku": "DWPN-101354",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242720819,
+   "handle": "red-hook-pewter",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, LEED Compatible, Living Room, Matte, Matte Finish, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Slate Grey, Smoked, Smooth, Solid, Solid Color, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098647091,
+   "sampleSku": "DWPR-427085",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242786355,
+   "handle": "red-hook-pond",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Slate Gray, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Slate Blue, Slate Gray, Smooth, Solid, Solid Color, Steel Blue, Subtle, Subtle Texture, Sustainable, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098745395,
+   "sampleSku": "DWPN-101356",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242819123,
+   "handle": "red-hook-salt",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux, Faux Leather, FR Additives Free, Grain, Green Building, Greige, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Gray, Light Taupe, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Silver, Smooth, Soft, Solid, Solid Color, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098778163,
+   "sampleSku": "DWPR-427089",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242884659,
+   "handle": "red-hook-shadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather Effect, LEED Compatible, Light Gray, Living Room, Minimalist, Misty, Modern, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Solid, Subtle, Subtle Texture, Sustainable, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098843699,
+   "sampleSku": "DWPN-101358",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792242917427,
+   "handle": "red-hook-stargaze",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Denim, Denim Blue, display_variant, Distressed, Distressed Texture, Fabric, Faux Leather, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather, Leather Effect, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ranger, Serene, Showroom Line, Slate Blue, Solid, Sustainable, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090098909235,
+   "sampleSku": "DWPR-427092",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500731572336,
+   "handle": "rankoshi-metallic-xla-34504",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "14% Polyester, 86% Rayon, Architectural, Blue, Camel, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Lattice, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Polyester, Showroom Line, Silver, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13967766487152,
+   "sampleSku": "XLA-34504-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1496802263152,
+   "handle": "ratana-grasscloth-prg-47821",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, Commercial, Dining Room, display_variant, Eggshell, Farmhouse, Grasscloth, Grasscloth Texture, Hand Crafted, Living Room, Mica, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Orange, Orange Red With Slubs, Phillipe Romano, Phillipe Romano Luxe Textures, Phillipe Romano Naturals, Ratana Grasscloth, Red, Rustic, Showroom Line, Tan, Terracotta, Textural, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13920857456752,
+   "sampleSku": "PRG-47821-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792242982963,
+   "handle": "rattan-bay-asteroid",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Cerulean, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Blue, Light Gray, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Serene, Showroom Line, Slate Blue, Steel Blue, Subtle Texture, Sustainable, Textile, Textile Weave, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090098974771,
+   "sampleSku": "DWPN-101360",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243015731,
+   "handle": "rattan-bay-autumn",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Coral, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Tan, Living Room, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Rustic, Showroom Line, Sustainable, Terra Cotta, Texture, Textured, Traditional, Upholstery, Wallcovering, Warm, Warm Tone, Woven",
+   "sampleVariantId": 44090099040307,
+   "sampleSku": "DWPR-427094",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243081267,
+   "handle": "rattan-bay-coffee",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Coastal Farmhouse, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, Farmhouse, Fiber, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Natural Fiber, Needs-Price, NFPA 260 Compliant, Organic, Organic Modern, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Rustic, Showroom Line, Sustainable, Tan, Taupe, Tawny, Texture, Textured, Traditional, Upholstery, Wallcovering, Woven, Woven Pattern",
+   "sampleVariantId": 44090099073075,
+   "sampleSku": "DWPN-101362",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243146803,
+   "handle": "rattan-bay-denim",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Gray, Deep, Denim, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Gunmetal, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Price, Neutral color, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Serene, Showroom Line, Slate Gray, Steel Blue, Subtle texture, Sustainable, Textile, Textile weave, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090099138611,
+   "sampleSku": "DWPN-101363",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243245107,
+   "handle": "rattan-bay-desert",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, DMF-Free, Ecru, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Living Room, Needs-Price, Neutral Color, NFPA 260 Compliant, Non-woven, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Rustic, Scandinavian, Showroom Line, Sustainable, Taupe, Texture, Textured, Textured Surface, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090099236915,
+   "sampleSku": "DWPN-101364",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243277875,
+   "handle": "rattan-bay-fawn",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Natural Fiber, Needs-Price, NFPA 260 Compliant, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Rustic, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090099302451,
+   "sampleSku": "DWPN-101365",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243310643,
+   "handle": "rattan-bay-feather",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Dark Tan, display_variant, DMF-Free, Ecru, Fabric, FR Additives Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light brown, Linen, Linen Texture, Living Room, Minimalist, Natural, Natural Fiber, Needs-Price, NFPA 260 Compliant, Non-woven, Oatmeal, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Sand, Scandinavian, Serene, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090099335219,
+   "sampleSku": "DWPN-101366",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243376179,
+   "handle": "rattan-bay-grass",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Chartreuse, Class A Fire Rated, Coastal, Coastal Farmhouse, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, FR Additives Free, Grasscloth, Grasscloth Weave, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Light Beige, Light Gray, Light Khaki, Living Room, Needs-Price, Neutral tone, NFPA 260 Compliant, Olive Green, Organic, Organic Modern, Organic texture, Pale, Pale Yellow, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Sage, Showroom Line, Sustainable, Textile, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090099531827,
+   "sampleSku": "DWPN-101367",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243408947,
+   "handle": "rattan-bay-hemp",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Eggshell, Fabric, FR Additives Free, Grasscloth, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Natural, Needs-Price, NFPA 260 Compliant, Organic Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Rustic, Serene, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, White, Woven",
+   "sampleVariantId": 44090099564595,
+   "sampleSku": "DWPN-101368",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243474483,
+   "handle": "rattan-bay-metal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Dark Gray, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Gray, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Gray, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Scandinavian, Serene, Showroom Line, Silver, Soft, Subtle Texture, Sustainable, Taupe, Textile, Textile Weave, Texture, Textured, Transitional, Upholstery, Wallcovering, White, Woven",
+   "sampleVariantId": 44090099630131,
+   "sampleSku": "DWPN-101369",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243507251,
+   "handle": "rattan-bay-natural",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Light Tan, Linen, Living Room, Natural Fiber, Needs-Price, NFPA 260 Compliant, Organic Texture, Pale Yellow, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Serene, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Transitional, Upholstery, Vanilla, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090099662899,
+   "sampleSku": "DWPN-101370",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243572787,
+   "handle": "rattan-bay-oat",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Butter, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Natural look, Needs-Price, Neutral tone, NFPA 260 Compliant, Off-white, Organic Modern, Pale Goldenrod, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Showroom Line, Sustainable, Tan, Textile, Textile texture, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, wheat, White, Woven",
+   "sampleVariantId": 44090099728435,
+   "sampleSku": "DWPN-101371",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243605555,
+   "handle": "rattan-bay-resort",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Crosshatch, Dark Green, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Moss, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Olive, Olive Green, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Sage, Serene, Showroom Line, Subtle pattern, Sustainable, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven, Woven texture",
+   "sampleVariantId": 44090099761203,
+   "sampleSku": "DWPR-427105",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243638323,
+   "handle": "rattan-bay-river",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light blue, Light Gray, Living Room, Mist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pale Blue, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Powder Blue, PVC-Free, Rattan, Residential, Serene, Showroom Line, Subtle Texture, Sustainable, Teal, Textile, Textile Weave, Texture, Textured, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090099793971,
+   "sampleSku": "DWPR-427106",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243671091,
+   "handle": "rattan-bay-sage",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, Blue, Blue-gray, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Denim, display_variant, DMF-Free, Fabric, Fabric texture, Fabric-backed Vinyl, FR Additives Free, Green Building, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rattan, Residential, Serene, Showroom Line, Slate Gray, Solid, Steel Blue, Sustainable, Textile, Textile weave, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090099826739,
+   "sampleSku": "DWPN-101374",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243736627,
+   "handle": "rattan-bay-wolf",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Basketweave, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crosshatch, dark grey, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Medium Grey, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Sophisticated, Subtle Pattern, Sustainable, Texture, Textured, Upholstery, Wallcovering, Woven, Woven Texture",
+   "sampleVariantId": 44090100056115,
+   "sampleSku": "DWPR-427108",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500564717680,
+   "handle": "rausu-durable-vinyl-xrh-34073",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965989412976,
+   "sampleSku": "XRH-34073-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500565143664,
+   "handle": "rausu-durable-vinyl-xrh-34074",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965994066032,
+   "sampleSku": "XRH-34074-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500565438576,
+   "handle": "rausu-durable-vinyl-xrh-34075",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965997408368,
+   "sampleSku": "XRH-34075-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500566323312,
+   "handle": "rausu-durable-vinyl-xrh-34077",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966007894128,
+   "sampleSku": "XRH-34077-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500567142512,
+   "handle": "rausu-durable-vinyl-xrh-34078",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966011531376,
+   "sampleSku": "XRH-34078-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498202505328,
+   "handle": "phillipe-romano-real-cork-collection-book-hlc-book-100",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Commercial, Contemporary, Cork, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 44170994483251,
+   "sampleSku": "HLC-Book-100-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500282978416,
+   "handle": "rebun-metallic-linen-xom-33479",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Metallic, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Silver, Solid, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13962912563312,
+   "sampleSku": "XOM-33479-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500283994224,
+   "handle": "rebun-metallic-linen-xom-33480",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Ecru, Fabric, Gold, Linen, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13962920788080,
+   "sampleSku": "XOM-33480-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500285796464,
+   "handle": "rebun-metallic-linen-xom-33482",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Auburn, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13962951196784,
+   "sampleSku": "XOM-33482-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243769395,
+   "handle": "rincon-feather",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, Farmhouse, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen look, Linen Texture, Living Room, Natural, Needs-Image, Needs-Price, Needs-Width, Neutral texture, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Solid, Sustainable, Tan, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090100088883,
+   "sampleSku": "DWPR-427109",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243802163,
+   "handle": "rincon-fiesta",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, Fabric-backed Vinyl, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Lattice, LEED Compatible, Linear Pattern, Linen Texture, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Rustic, Showroom Line, Sustainable, Tan, Texture, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm, Woven, Woven Texture",
+   "sampleVariantId": 44090100121651,
+   "sampleSku": "DWPR-427110",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243834931,
+   "handle": "rincon-frost",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green, Green Building, Greige, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Linen Texture, Living Room, Minimalist, Mist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Sage, Serene, Showroom Line, Silver, Subtle Pattern, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven, Woven Texture",
+   "sampleVariantId": 44090100154419,
+   "sampleSku": "DWPR-427111",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243867699,
+   "handle": "rincon-gust",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, FR Additives Free, Gray, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Brown, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Palette, NFPA 260 Compliant, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Serene, Showroom Line, Subtle Pattern, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090100187187,
+   "sampleSku": "DWPN-101379",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243933235,
+   "handle": "rincon-herb",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Branch, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, FR Additives Free, Gold, Grasscloth, Grasscloth Weave, Green, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linen look, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Olive, Organic, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Showroom Line, Subtle texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090100285491,
+   "sampleSku": "DWPR-427113",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792243966003,
+   "handle": "rincon-iris",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crosshatch, Dark Gray, display_variant, Fabric, FR Additives Free, Graphite, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Medium Gray, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Off White, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Serene, Showroom Line, Subtle Pattern, Sustainable, Textured, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090100351027,
+   "sampleSku": "DWPN-101381",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792243998771,
+   "handle": "rincon-malt",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Crosshatch, display_variant, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Linen, Linen Texture, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Scandinavian, Serene, Showroom Line, Subtle Pattern, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090100383795,
+   "sampleSku": "DWPR-427115",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244031539,
+   "handle": "rincon-meadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Botanical, Branch, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, FR Additives Free, Gold, Grasscloth Weave, Green, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Linen, Linen Texture, Living Room, Modern, Moss, Needs-Image, Needs-Price, Needs-Width, Neutral Color, NFPA 260 Compliant, Off-white, Office, Olive, Olive Green, Organic, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Rustic, Showroom Line, Subtle Pattern, Sustainable, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 44090100416563,
+   "sampleSku": "DWPR-427116",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244097075,
+   "handle": "rincon-moonlit",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, Fabric, FR Additives Free, Grasscloth, Grasscloth Weave, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Linen, Linen Texture, Linen Weave, Living Room, Needs-Price, Neutral Texture, NFPA 260 Compliant, Off-white, Organic Modern, Pale Goldenrod, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Showroom Line, Subtle Pattern, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090100482099,
+   "sampleSku": "DWPN-101384",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244129843,
+   "handle": "rincon-pepper",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Coffee, Commercial, Contemporary, Contract Grade, Crosshatch, Dark, Dark Brown, display_variant, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Linen Texture, Living Room, Minimalist, Modern, Needs-Price, Neutral color, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Regent, Serene, Showroom Line, Subtle pattern, Sustainable, Taupe, Texture, Textured, Upholstery, Vinyl, Wallcovering, Woven, Woven texture",
+   "sampleVariantId": 44090100514867,
+   "sampleSku": "DWPN-101385",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244293683,
+   "handle": "rum-punch-balsamic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brass, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Gold, Green, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light blue, Living Room, Mist, Needs-Price, NFPA 260 Compliant, Olive, olive green, Organic, Organic Modern, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Showroom Line, Sustainable, Tan, Textile Weave, Textured, Transitional, Upholstery, Vinyl, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 44090100744243,
+   "sampleSku": "DWPN-101386",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244326451,
+   "handle": "rum-punch-field",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric Weave, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light blue, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Revelry, Sandy, Showroom Line, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090100777011,
+   "sampleSku": "DWPR-427144",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244359219,
+   "handle": "rum-punch-fog",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Ash, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Gray, Green Building, Grey, Hallway, Healthcare, Herringbone, Herringbone pattern, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral texture, NFPA 260 Compliant, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Revelry, Serene, Showroom Line, Silver, Soft, Subtle design, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090100809779,
+   "sampleSku": "DWPR-427145",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244391987,
+   "handle": "rum-punch-fossil",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric Weave, Farmhouse, FR Additives Free, Grasscloth, Gray, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Brown, Light Gray, Light Grey, Living Room, Needs-Price, Neutral Texture, NFPA 260 Compliant, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Revelry, Rustic, Showroom Line, Silver, Sustainable, Tan, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090100842547,
+   "sampleSku": "DWPN-101389",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244424755,
+   "handle": "rum-punch-marsala",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric Weave, Gold, Golden Yellow, Grasscloth, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Gray, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Revelry, Saffron, Showroom Line, Sustainable, Tan, Textured, Textured Surface, Transitional, Upholstery, Wallcovering, Warm, Wheat, Woven, Yellow",
+   "sampleVariantId": 44090101039155,
+   "sampleSku": "DWPN-101390",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244457523,
+   "handle": "rum-punch-persimmon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Basketweave, Bedroom, Beige, Bleach Cleanable, Burnt Orange, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Clay, Coastal, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Geometric Weave, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Revelry, Rustic, Showroom Line, Sustainable, Terracotta, Textured, Textured Surface, Transitional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090101071923,
+   "sampleSku": "DWPR-427148",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244490291,
+   "handle": "rum-punch-phantom",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Chevron, Chevron Pattern, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, DMF-Free, Executive Office, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Geometric Weave, Gray, Green Building, Grey, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Gray, Living Room, Medium Gray, Modern, Needs-Price, Neutral Palette, NFPA 260 Compliant, Non-woven, Office, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Revelry, Shadow, Showroom Line, Sophisticated, Sustainable, Taupe, Textured, Traditional, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090101104691,
+   "sampleSku": "DWPN-101392",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244555827,
+   "handle": "rum-punch-pier",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Chevron, Chevron Pattern, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Denim Blue, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric Weave, Green Building, Hallway, Herringbone, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Linen, Living Room, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Pattern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Revelry, Serene, Showroom Line, Silver, Sustainable, Textured, Textured Surface, Traditional, Transitional, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090101334067,
+   "sampleSku": "DWPR-427150",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233807923,
+   "handle": "cosmopolitan-weave-citrine-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Browns A, Champagne, Coastal, Commercial, Contemporary, Cosmopolitan Weave, display_variant, Gold, Grasscloth, Grasscloth Weave, Hallway, Khaki, Light Beige, Light Brown, Living Room, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Organic, Organic Modern, Phillipe Romano, Rustic, Scandinavian, Showroom Line, Tan, Textured, Wallcovering, Winfield Thybony Natural Resources Vol. I, Woven, Woven Natural Fiber Wallcovering, Yellow",
+   "sampleVariantId": 44171421122611,
+   "sampleSku": "DWPW-430143-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230170675,
+   "handle": "ema-weave-cream-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Champagne, Coastal, Commercial, Contemporary, Cream, display_variant, Ema Weave, Grasscloth, Grasscloth Weave, Hallway, Light Beige, Light Brown, Linen, Living Room, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic Modern, Phillipe Romano, Scandinavian, Serene, Showroom Line, Stripe, Textured, Transitional, Wallcovering, Whites, Winfield Thybony Natural Resources Vol. II, Woven, Woven Natural Fiber Wallcovering, Yellow",
+   "sampleVariantId": 44171420631091,
+   "sampleSku": "DWPW-430019-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792229908531,
+   "handle": "cosmopolitan-weave-glimmer-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alabaster, Architectural, Bedroom, Beige, Champagne, Coastal, Commercial, Contemporary, Cosmopolitan Weave, Cream, display_variant, Farmhouse, Grasscloth, Grasscloth Weave, Hallway, handwoven, Jute, Jute and Paper, Light Gray, Living Room, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic, paper-backed, Paperweave, Phillipe Romano, Rustic, Scandinavian, Showroom Line, Stripe, Textured, Wallcovering, White, Whites, Winfield Thybony Natural Resources Vol. I, Woven, Yellow",
+   "sampleVariantId": 44171420532787,
+   "sampleSku": "DWPW-430016-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230531123,
+   "handle": "woven-natural-wallcovering-greens-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Biophilic, Coastal, Commercial, Contemporary, display_variant, Ecru, Grasscloth, Grasscloth Weave, Green, Greens, Hallway, Light Brown, Living Room, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Olive Green, Organic Modern, Phillipe Romano, Sage, Sage Green, Scandinavian, Serene, Showroom Line, Textured, Traditional, Transitional, Wallcovering, Winfield Thybony Natural Resources, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171420729395,
+   "sampleSku": "DWPW-430058-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233119795,
+   "handle": "ema-weave-maritime-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Blue, Blues, Coastal, Commercial, Contemporary, display_variant, Ema Weave, Grasscloth, Grasscloth Weave, Hallway, Light Gray, Living Room, Natural Wallcovering, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic Modern, Phillipe Romano, Scandinavian, Serene, Showroom Line, Silver, Steel, Stripe, Textured, Wallcovering, Winfield Thybony Natural Resources Vol. II, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171420991539,
+   "sampleSku": "DWPW-430099-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233906227,
+   "handle": "minori-sisal-sandlewood-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Beige, Browns B, Coastal, Commercial, Contemporary, display_variant, Ecru, Grasscloth, Grasscloth Weave, Gray, Hallway, Living Room, Minori Sisal, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Organic, Organic Modern, Phillipe Romano, Rustic, Scandinavian, Showroom Line, Stripe, Tan, Taupe, Textured, Wallcovering, Winfield Thybony Natural Resources Vol. II, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171421188147,
+   "sampleSku": "DWPW-430161-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792233185331,
+   "handle": "amira-weave-sea-mist-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amira Weave, Architectural, Bedroom, Beige, Blue, Blues, Coastal, Commercial, Contemporary, Dark Gray, display_variant, Grasscloth, Grasscloth Weave, Hallway, Light Blue, Light Gray, Lightblue, Living Room, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic Modern, Phillipe Romano, Scandinavian, Serene, Showroom Line, Sky Blue, Solid, Textured, Transitional, Wallcovering, White, Winfield Thybony Natural Resources Vol. II, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171421024307,
+   "sampleSku": "DWPW-430100-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792232955955,
+   "handle": "julius-turk-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Ash, Bedroom, Beige, Blue, Blues, Coastal, Commercial, Contemporary, display_variant, Grasscloth, Grasscloth Weave, Hallway, Julius, Light Blue, Light Gray, Living Room, Minimalist, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Off-white, Organic Modern, Phillipe Romano, Scandinavian, Serene, Showroom Line, Silver, Stripe, Textured, Wallcovering, White, Winfield Thybony Natural Resources Vol. I, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171420926003,
+   "sampleSku": "DWPW-430097-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792230072371,
+   "handle": "gilded-weave-white-ice-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bedroom, Chalk, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Fabric, Gilded Weave, Gray, Grey, Hallway, Light Gray, Light Grey, Living Room, Minimalist, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, Paper, Phillipe Romano, Scandinavian, Serene, Showroom Line, Stripe, Textured, Wallcovering, Whites, Winfield Thybony Natural Resources Vol. II, Woven, Woven Natural Fiber Wallcovering",
+   "sampleVariantId": 44171420598323,
+   "sampleSku": "DWPW-430018-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500289728624,
+   "handle": "rishiri-textile-wallpaper-xop-33486",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13962996646000,
+   "sampleSku": "XOP-33486-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500290941040,
+   "handle": "rishiri-textile-wallpaper-xop-33487",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Beige, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Linen, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering",
+   "sampleVariantId": 13963011457136,
+   "sampleSku": "XOP-33487-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500293464176,
+   "handle": "rishiri-textile-wallpaper-xop-33489",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, White, Woven",
+   "sampleVariantId": 13963032789104,
+   "sampleSku": "XOP-33489-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500294545520,
+   "handle": "rishiri-textile-wallpaper-xop-33490",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "97% linen/3% polyester, Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Showroom Line, Silver, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Woven",
+   "sampleVariantId": 13963048386672,
+   "sampleSku": "XOP-33490-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245506099,
+   "handle": "runaway-bay-herbal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather Texture, LEED Compatible, Light Taupe, Living Room, Minimalist, Modern, Mushroom, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Smooth, Solid, Subtle Grain, Sustainable, Tan, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102415411,
+   "sampleSku": "DWPN-101402",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792244883507,
+   "handle": "runaway-bay-blueberry",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Blue, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Blue, Deep, Deep Blue, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Showroom Line, Smooth, Smooth texture, Solid, Solid color, Sophisticated, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090101694515,
+   "sampleSku": "DWPR-427173",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792244949043,
+   "handle": "runaway-bay-canyon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Brass, Brown, Burlywood, CA TB 117 Compliant, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Brown, Living Room, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Ryder, Showroom Line, Sienna, Smooth, Solid, Subtle Texture, Sustainable, Tan, Textured, Traditional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Warm Tone",
+   "sampleVariantId": 44090101760051,
+   "sampleSku": "DWPN-101395",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245047347,
+   "handle": "runaway-bay-evening",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather Effect, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Showroom Line, Slate Grey, Smooth, Solid, Solid Color, Sophisticated, Sustainable, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090101825587,
+   "sampleSku": "DWPN-101396",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245112883,
+   "handle": "runaway-bay-field",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Light Brown, Living Room, Minimalist, Muted, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Sand, Serene, Showroom Line, Smooth, Solid, Subtle Texture, Sustainable, Tan, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090101891123,
+   "sampleSku": "DWPR-427176",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245178419,
+   "handle": "runaway-bay-forest",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Ebony, Fabric, Faux Leather, FR Additives Free, Gold, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Muted, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Showroom Line, Slate Gray, Smooth, Solid, Sophisticated, Subtle Texture, Sustainable, Texture, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090101956659,
+   "sampleSku": "DWPR-427177",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245243955,
+   "handle": "runaway-bay-fudge",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Minimalist, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Showroom Line, Solid, Sophisticated, Subtle, Subtle Texture, Sustainable, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102022195,
+   "sampleSku": "DWPR-427178",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245309491,
+   "handle": "runaway-bay-greige",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Champagne, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather Effect, LEED Compatible, Light Beige, Light Brown, Linen, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Oatmeal, Off White, Pale Beige, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Ryder, Showroom Line, Soft, Solid, Subtle, Subtle Texture, Sustainable, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 44090102087731,
+   "sampleSku": "DWPN-101400",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245407795,
+   "handle": "runaway-bay-harvest",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Farmhouse, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather-like, LEED Compatible, light brown, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Office, Orange, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Residential, Rustic, Ryder, Showroom Line, Smooth, Solid, Subtle Texture, Sustainable, Tan, Textured, Traditional, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering, Warm, Warm Tone",
+   "sampleVariantId": 44090102317107,
+   "sampleSku": "DWPN-101401",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245538867,
+   "handle": "runaway-bay-oxblood",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Burgundy, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Deep, display_variant, Fabric, Faux Leather, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, Leather-like, LEED Compatible, Living Room, Luxe, Maroon, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Ryder, Showroom Line, Smooth, Solid, Solid Color, Sophisticated, Sustainable, Texture, Textured, Timeless, Traditional, Umber, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102448179,
+   "sampleSku": "DWPR-427182",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245571635,
+   "handle": "runaway-bay-pebble",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Green Building, Greige, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather, LEED Compatible, Light Gray, Light Taupe, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Serene, Showroom Line, Soft, Solid, Subtle, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102480947,
+   "sampleSku": "DWPR-427183",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245604403,
+   "handle": "runaway-bay-raven",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, Leather Effect, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Showroom Line, Slate, Smoke, Smoked, Smooth, Solid, Sophisticated, Subtle Texture, Sustainable, Taupe, Textured, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102513715,
+   "sampleSku": "DWPN-101405",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245637171,
+   "handle": "runaway-bay-slate",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Gray-taupe, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather, LEED Compatible, Light Gray, Living Room, Minimalist, Misty, Modern, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Ryder, Serene, Showroom Line, Smoke, Smooth, Smooth Surface, Solid, Sustainable, Taupe, Textured, Transitional, Upholstery, Upholstery Vinyl, Vegan Leather, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102546483,
+   "sampleSku": "DWPN-101406",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1502362271856,
+   "handle": "saint-gorga-prt-74240",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, display_variant, Fabric, Greige, Light Brown, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13987369615472,
+   "sampleSku": "PRT-74240-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502362435696,
+   "handle": "saint-gorga-prt-74241",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987371974768,
+   "sampleSku": "PRT-74241-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502362534000,
+   "handle": "saint-gorga-prt-74242",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987375022192,
+   "sampleSku": "PRT-74242-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502362796144,
+   "handle": "saint-gorga-prt-74243",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Stripe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987378856048,
+   "sampleSku": "PRT-74243-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502363025520,
+   "handle": "saint-gorga-prt-74244",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, Dark Teal, display_variant, Fabric, Ink, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Teal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13987382591600,
+   "sampleSku": "PRT-74244-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498766606448,
+   "handle": "salvatore-sueded-walls-prx-79020",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Gold, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Showroom Line, Suede, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13940476543088,
+   "sampleSku": "PRX-79020-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498766770288,
+   "handle": "salvatore-sueded-walls-prx-79021",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Geometric, Gold, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Suede, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13940487422064,
+   "sampleSku": "PRX-79021-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498767097968,
+   "handle": "salvatore-sueded-walls-prx-79022",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Suede, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13940490305648,
+   "sampleSku": "PRX-79022-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498767294576,
+   "handle": "salvatore-sueded-walls-prx-79023",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Suede, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 13940494958704,
+   "sampleSku": "PRX-79023-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498767556720,
+   "handle": "salvatore-sueded-walls-prx-79024",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13940498006128,
+   "sampleSku": "PRX-79024-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500369092720,
+   "handle": "samani-durable-vinyl-xpg-33594",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963832819824,
+   "sampleSku": "XPG-33594-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500369518704,
+   "handle": "samani-durable-vinyl-xpg-33595",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963836063856,
+   "sampleSku": "XPG-33595-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500370567280,
+   "handle": "samani-durable-vinyl-xpg-33597",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963845795952,
+   "sampleSku": "XPG-33597-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500370960496,
+   "handle": "samani-durable-vinyl-xpg-33598",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963848089712,
+   "sampleSku": "XPG-33598-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500371484784,
+   "handle": "samani-durable-vinyl-xpg-33599",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963850776688,
+   "sampleSku": "XPG-33599-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500371878000,
+   "handle": "samani-durable-vinyl-xpg-33600",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963857625200,
+   "sampleSku": "XPG-33600-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500372795504,
+   "handle": "samani-durable-vinyl-xpg-33602",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963864211568,
+   "sampleSku": "XPG-33602-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245669939,
+   "handle": "salt-island-birch",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Brown, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Tan, display_variant, Fabric, Farmhouse, Grasscloth, Hallway, Herringbone, Hospitality, light brown, Living Room, Natural, Natural Fiber, Needs-Price, NFPA 260 Compliant, Organic, Organic Texture, Panel, Phillipe Romano, Polyester Blend, Residential, Rustic, Samoa, Showroom Line, Straw, Tan, Texture, Textured, Traditional, Upholstery, Wallcovering, Warm, Woven",
+   "sampleVariantId": 44090102579251,
+   "sampleSku": "DWPN-101407",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245735475,
+   "handle": "salt-island-oyster",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basketweave, Bedroom, Beige, Bone, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Fabric, Farmhouse, Grasscloth, Grasscloth Weave, Hallway, Herringbone, Herringbone Weave, Hospitality, Light Beige, Living Room, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Oatmeal, Organic, Organic Texture, Panel, Phillipe Romano, Polyester Blend, Residential, Rustic, Samoa, Showroom Line, Taupe, Texture, Textured, Traditional, Transitional, Upholstery, Wallcovering, White, Woven",
+   "sampleVariantId": 44090102644787,
+   "sampleSku": "DWPR-427187",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245768243,
+   "handle": "salt-island-vanilla",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Basket, Basket Weave, Basketweave, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Fabric, Farmhouse, Grasscloth, Hallway, Herringbone, Hospitality, Light Brown, Linen, Living Room, Natural, Natural Fiber, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic, Organic Texture, Panel, Phillipe Romano, Polyester Blend, Residential, Rustic, Samoa, Sand, Showroom Line, Tan, Texture, Textured, Traditional, Upholstery, Wallcovering, Weave, Wheat, Woven, Yellow",
+   "sampleVariantId": 44090102677555,
+   "sampleSku": "DWPR-427188",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498797932656,
+   "handle": "samuel-sueded-walls-prx-79155",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, display_variant, Geometric, Gold, Lattice, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13941081768048,
+   "sampleSku": "PRX-79155-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498798227568,
+   "handle": "samuel-sueded-walls-prx-79156",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Geometric, Gray, Lattice, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Samuel Sueded, Showroom Line, Silver, Suede, Wallcovering",
+   "sampleVariantId": 13941086847088,
+   "sampleSku": "PRX-79156-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498798719088,
+   "handle": "samuel-sueded-walls-prx-79158",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Bone, Burgundy, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Geometric, Gold, Lattice, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Samuel Sueded, Showroom Line, Suede, Wallcovering, Yellow",
+   "sampleVariantId": 13941096087664,
+   "sampleSku": "PRX-79158-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500639527024,
+   "handle": "sannohe-budget-vinyl-xcf-34326",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966896496752,
+   "sampleSku": "XCF-34326-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500640018544,
+   "handle": "sannohe-budget-vinyl-xcf-34327",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966899576944,
+   "sampleSku": "XCF-34327-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500640575600,
+   "handle": "sannohe-budget-vinyl-xcf-34328",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966901411952,
+   "sampleSku": "XCF-34328-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500640903280,
+   "handle": "sannohe-budget-vinyl-xcf-34329",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966907474032,
+   "sampleSku": "XCF-34329-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500642181232,
+   "handle": "sannohe-budget-vinyl-xcf-34332",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Gunmetal, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13966918975600,
+   "sampleSku": "XCF-34332-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500642639984,
+   "handle": "sannohe-budget-vinyl-xcf-34333",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable - Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966922711152,
+   "sampleSku": "XCF-34333-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499614675056,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52846",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Geometric, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Wallcovering, WALLCOVERING : Wallcovering, White, Woven",
+   "sampleVariantId": 13954996994160,
+   "sampleSku": "XWS-52846-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499615625328,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52848",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Geometric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955007217776,
+   "sampleSku": "XWS-52848-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499616018544,
+   "handle": "saratago-stain-repellent-rea-textile-walls-xws-52849",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, LEED, Leed Walls, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13955010003056,
+   "sampleSku": "XWS-52849-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500340584560,
+   "handle": "saroma-durable-vinyl-xpb-33551",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Denim, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Turquoise, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963578605680,
+   "sampleSku": "XPB-33551-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500342517872,
+   "handle": "saroma-durable-vinyl-xpb-33554",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13963593121904,
+   "sampleSku": "XPB-33554-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500342976624,
+   "handle": "saroma-durable-vinyl-xpb-33555",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963595677808,
+   "sampleSku": "XPB-33555-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500343926896,
+   "handle": "saroma-durable-vinyl-xpb-33557",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963607310448,
+   "sampleSku": "XPB-33557-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500344877168,
+   "handle": "saroma-durable-vinyl-xpb-33559",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Saroma Durable Vinyl, Showroom Line, Textured, Traditional, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963614388336,
+   "sampleSku": "XPB-33559-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792245801011,
+   "handle": "savannah-bay-ash",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Misty, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Savanna, Showroom Line, Smooth, Solid, Sophisticated, Subtle Grain, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102710323,
+   "sampleSku": "DWPN-101410",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245833779,
+   "handle": "savannah-bay-blueberry",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Savanna, Showroom Line, Slate Grey, Smooth, Solid, Sophisticated, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102743091,
+   "sampleSku": "DWPN-101411",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245866547,
+   "handle": "savannah-bay-chocolate",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather-like, LEED Compatible, Living Room, Mocha, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rich, Rustic, Savanna, Showroom Line, Smooth, Solid, Solid Color, Sustainable, Textured, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090102775859,
+   "sampleSku": "DWPN-101412",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245899315,
+   "handle": "savannah-bay-clay",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Dusty, Executive Office, Fabric, Faux Leather, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Savanna, Showroom Line, Smooth, Solid, Sustainable, Tan, Taupe, Textured, Timeless, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090102808627,
+   "sampleSku": "DWPN-101413",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792245932083,
+   "handle": "savannah-bay-creek",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Faux Leather, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Misty, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Savanna, Serene, Showroom Line, Smooth, Solid, Subtle Grain, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090102841395,
+   "sampleSku": "DWPR-427193",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792246030387,
+   "handle": "savannah-bay-crimson",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Rose, Dark Rose Brown, display_variant, Dusty Rose, Fabric, Faux Leather, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Rose Brown, Rustic, Savanna, Showroom Line, Sienna, Smooth, Solid, Solid Color, Sustainable, Textured, Timeless, Traditional, Transitional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090103103539,
+   "sampleSku": "DWPN-101415",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792246063155,
+   "handle": "savannah-bay-desert",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Fabric, Fine Grain, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sandy, Savanna, Serene, Showroom Line, Smooth, Solid, Subtle Texture, Sustainable, Tan, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103136307,
+   "sampleSku": "DWPN-101416",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792246095923,
+   "handle": "savannah-bay-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Taupe, display_variant, Fabric, Faux Leather, Fine Grain, FR Additives Free, Grain, Gray, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Mushroom, Needs-Price, Neutral Tone, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Savanna, Showroom Line, Smooth, Solid, Sophisticated, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103201843,
+   "sampleSku": "DWPN-101417",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792246128691,
+   "handle": "savannah-bay-holly",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Teal, display_variant, Dusty, Fabric, FR Additives Free, Grain, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Smooth, Solid, Solid Color, Sustainable, Teal, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103234611,
+   "sampleSku": "DWPR-427197",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792246161459,
+   "handle": "savannah-bay-linen",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Ecru, Fabric, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Beige, Linen, Living Room, Matte Finish, Minimalist, Needs-Price, Neutral Tone, NFPA 260 Compliant, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Serene, Showroom Line, Smooth, Soft, Solid, Sustainable, Taupe, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103267379,
+   "sampleSku": "DWPN-101419",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792246194227,
+   "handle": "savannah-bay-midnight",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Animal, Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Gray, display_variant, Fabric, Fine, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Modern, Monochromatic, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Sophisticated, Subtle Texture, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103300147,
+   "sampleSku": "DWPN-101420",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792246259763,
+   "handle": "savannah-bay-noir",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, Dark Grey, display_variant, Executive Office, Fabric, Fine, Fine Texture, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Monochromatic, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Slate, Solid, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103529523,
+   "sampleSku": "DWPR-427200",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792246292531,
+   "handle": "savannah-bay-oyster",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Eggshell, Fabric, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Matte, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silver, Smooth, Soft, Solid, Solid Color, Subtle Texture, Sustainable, Taupe, Texture, Textured, Transitional, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090103562291,
+   "sampleSku": "DWPR-427201",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792246325299,
+   "handle": "savannah-bay-parchment",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, Eggshell, Fabric, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Living Room, Matte, Matte Finish, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, NFPA 260 Compliant, Office, Organic Modern, Paper, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Scandinavian, Serene, Showroom Line, Smooth, Solid, Sustainable, Texture, Textured, Upholstery, Wallcovering, Woven",
+   "sampleVariantId": 44090103595059,
+   "sampleSku": "DWPR-427202",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498792001648,
+   "handle": "seniorita-silk-walls-prx-79127",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Charcoal, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Textured, Wallcovering",
+   "sampleVariantId": 13940958101616,
+   "sampleSku": "PRX-79127-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498792231024,
+   "handle": "seniorita-silk-walls-prx-79128",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Fabric, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silk, Stripe, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13940964425840,
+   "sampleSku": "PRX-79128-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498792427632,
+   "handle": "seniorita-silk-walls-prx-79129",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, display_variant, Eggshell, Grasscloth, Khaki, Light Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13940966359152,
+   "sampleSku": "PRX-79129-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498792657008,
+   "handle": "seniorita-silk-walls-prx-79130",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, display_variant, Ecru, Grasscloth, Gray, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Silver, Textured, Traditional, Transitional, Wallcovering",
+   "sampleVariantId": 13940975501424,
+   "sampleSku": "PRX-79130-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498792886384,
+   "handle": "seniorita-silk-walls-prx-79131",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Light Gray, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Silver, Textured, Wallcovering",
+   "sampleVariantId": 13940978876528,
+   "sampleSku": "PRX-79131-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498793312368,
+   "handle": "seniorita-silk-walls-prx-79133",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, display_variant, Eggshell, Grasscloth, Light Brown, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Seniorita Faux Silk Upholstery, Showroom Line, Silk, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13940987166832,
+   "sampleSku": "PRX-79133-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498793640048,
+   "handle": "seniorita-silk-walls-prx-79134",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Light Brown, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silk, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940992835696,
+   "sampleSku": "PRX-79134-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498793836656,
+   "handle": "seniorita-silk-walls-prx-79135",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silk, Tan, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13940997718128,
+   "sampleSku": "PRX-79135-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498794033264,
+   "handle": "seniorita-silk-walls-prx-79136",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silk, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13941003386992,
+   "sampleSku": "PRX-79136-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1501381066864,
+   "handle": "sensua-silk-multi-color-weave-prt-16101",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Commercial, Contemporary, Dark Gray, display_variant, Ecru, Fabric, Natural, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Sensua Silk Multi Color Weave, Showroom Line, Silk, Stripe, Texture, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13975676387440,
+   "sampleSku": "PRT-16101-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498801176688,
+   "handle": "sensual-sueded-walls-prx-79169",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Red, display_variant, Ecru, Fabric, Maroon, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Sensual Sueded, Showroom Line, Solid, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941139964016,
+   "sampleSku": "PRX-79169-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498801373296,
+   "handle": "sensual-sueded-walls-prx-79170",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Ecru, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Sensual Sueded, Showroom Line, Solid, Suede, Textured, Wallcovering, White",
+   "sampleVariantId": 13941140324464,
+   "sampleSku": "PRX-79170-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498801799280,
+   "handle": "sensual-sueded-walls-prx-79172",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gold, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941154021488,
+   "sampleSku": "PRX-79172-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498801963120,
+   "handle": "sensual-sueded-walls-prx-79173",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941156413552,
+   "sampleSku": "PRX-79173-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498802094192,
+   "handle": "sensual-sueded-walls-prx-79174",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941159559280,
+   "sampleSku": "PRX-79174-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498802356336,
+   "handle": "sensual-sueded-walls-prx-79175",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Fabric, Gray, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941163163760,
+   "sampleSku": "PRX-79175-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498802552944,
+   "handle": "sensual-sueded-walls-prx-79176",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Ecru, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Textured, Wallcovering, White",
+   "sampleVariantId": 13941167095920,
+   "sampleSku": "PRX-79176-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498802716784,
+   "handle": "sensual-sueded-walls-prx-79177",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Taupe, Textured, Wallcovering",
+   "sampleVariantId": 13941172863088,
+   "sampleSku": "PRX-79177-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498802913392,
+   "handle": "sensual-sueded-walls-prx-79178",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Ecru, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13941176860784,
+   "sampleSku": "PRX-79178-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500517990512,
+   "handle": "shibecha-poly-linen-walls-lin-33940",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Ecru, Fabric, Gray, Linen, Linen w/ Polyester Blend, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Rustic, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965399130224,
+   "sampleSku": "LIN-33940-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500518219888,
+   "handle": "shibecha-poly-linen-walls-lin-33941",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Ecru, Fabric, Gray, Linen, Linen w/ Polyester Blend, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Rustic, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965399785584,
+   "sampleSku": "LIN-33941-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500518842480,
+   "handle": "shibecha-poly-linen-walls-lin-33943",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, display_variant, Ecru, Fabric, Linen, Linen w/ Polyester Blend, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Red, Rustic, Showroom Line, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965409714288,
+   "sampleSku": "LIN-33943-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500519071856,
+   "handle": "shibecha-poly-linen-walls-lin-33944",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display_variant, Ecru, Fabric, Linen, Linen w/ Polyester Blend, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, Rustic, Showroom Line, Tan, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965413646448,
+   "sampleSku": "LIN-33944-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500393406576,
+   "handle": "shihoro-durable-vinyl-xpp-33649",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Ecru, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13964065144944,
+   "sampleSku": "XPP-33649-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500393767024,
+   "handle": "shihoro-durable-vinyl-xpp-33650",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964072157296,
+   "sampleSku": "XPP-33650-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500394193008,
+   "handle": "shihoro-durable-vinyl-xpp-33651",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Steel, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964078710896,
+   "sampleSku": "XPP-33651-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500395143280,
+   "handle": "shihoro-durable-vinyl-xpp-33654",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964084707440,
+   "sampleSku": "XPP-33654-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500395667568,
+   "handle": "shihoro-durable-vinyl-xpp-33655",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13964091981936,
+   "sampleSku": "XPP-33655-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500396126320,
+   "handle": "shihoro-durable-vinyl-xpp-33656",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Caramel, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964097454192,
+   "sampleSku": "XPP-33656-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500396552304,
+   "handle": "shihoro-durable-vinyl-xpp-33657",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964099780720,
+   "sampleSku": "XPP-33657-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500396912752,
+   "handle": "shihoro-durable-vinyl-xpp-33658",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964102238320,
+   "sampleSku": "XPP-33658-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500397338736,
+   "handle": "shika-durable-vinyl-xpq-33659",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964105187440,
+   "sampleSku": "XPQ-33659-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500398125168,
+   "handle": "shika-durable-vinyl-xpq-33661",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964117278832,
+   "sampleSku": "XPQ-33661-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500398583920,
+   "handle": "shika-durable-vinyl-xpq-33662",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Taupe, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964118720624,
+   "sampleSku": "XPQ-33662-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500400615536,
+   "handle": "shika-durable-vinyl-xpq-33666",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964137267312,
+   "sampleSku": "XPQ-33666-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500401107056,
+   "handle": "shika-durable-vinyl-xpq-33667",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964140478576,
+   "sampleSku": "XPQ-33667-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500401565808,
+   "handle": "shika-durable-vinyl-xpq-33668",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13964141690992,
+   "sampleSku": "XPQ-33668-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500403171440,
+   "handle": "shinto-ito-durable-vinyl-xpr-33672",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering",
+   "sampleVariantId": 13964161908848,
+   "sampleSku": "XPR-33672-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500403728496,
+   "handle": "shinto-ito-durable-vinyl-xpr-33673",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyl - Maintanable, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 13964163973232,
+   "sampleSku": "XPR-33673-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876620851,
+   "handle": "dwjj-40660-silvio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bella Italiano, Bohemian, Bone, Brown, Commercial, display_variant, Fabric, Geometric, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Printed Paperweave, Showroom Line, Silver, Silvio, Silvio Printed Paperweave Naturals, Stripe, Texture, Wallcovering, White",
+   "sampleVariantId": 41180289073203,
+   "sampleSku": "DWJJ-40660-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500737437808,
+   "handle": "siple-island-xlm-34515",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Red, Showroom Line, Siple Island, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13967821701232,
+   "sampleSku": "XLM-34515-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502308565104,
+   "handle": "sonata-stone-prt-74001",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brass, Class A Fire Rated, Commercial, Contemporary, display_variant, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986524168304,
+   "sampleSku": "PRT-74001-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502308761712,
+   "handle": "sonata-stone-prt-74002",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Aubergine, Beige, Class A Fire Rated, Commercial, display_variant, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986525020272,
+   "sampleSku": "PRT-74002-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502308991088,
+   "handle": "sonata-stone-prt-74003",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off White, Pattern, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13986528493680,
+   "sampleSku": "PRT-74003-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502358929520,
+   "handle": "spitacato-prt-74225",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Contemporary, display_variant, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987311386736,
+   "sampleSku": "PRT-74225-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502359093360,
+   "handle": "spitacato-prt-74226",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Cream, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13987317055600,
+   "sampleSku": "PRT-74226-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502359355504,
+   "handle": "spitacato-prt-74227",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987321249904,
+   "sampleSku": "PRT-74227-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502359584880,
+   "handle": "spitacato-prt-74228",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Taupe, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987321970800,
+   "sampleSku": "PRT-74228-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502359781488,
+   "handle": "spitacato-prt-74229",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Commercial, display_variant, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987327082608,
+   "sampleSku": "PRT-74229-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502360010864,
+   "handle": "spitacato-prt-74230",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Copper, display_variant, Eggshell, Fabric, Gold, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Yellow",
+   "sampleVariantId": 13987329474672,
+   "sampleSku": "PRT-74230-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502360240240,
+   "handle": "spitacato-prt-74231",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Brown, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Stripe, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987334586480,
+   "sampleSku": "PRT-74231-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500060254320,
+   "handle": "st-barton-paper-weave-prp-56509",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Green, Lattice, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Sage, Showroom Line, Single Dominant Background Color Word, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959676330096,
+   "sampleSku": "PRP-56509-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500060582000,
+   "handle": "st-barton-paper-weave-prp-56510",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Gold, Gray, Lattice, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959681441904,
+   "sampleSku": "PRP-56510-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500062023792,
+   "handle": "st-barton-paper-weave-prp-56514",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Greige, Lattice, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Red, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959694975088,
+   "sampleSku": "PRP-56514-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500062646384,
+   "handle": "st-barton-paper-weave-prp-56516",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display_variant, Green, Lattice, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Naturals, Sage, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959703560304,
+   "sampleSku": "PRP-56516-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780827760,
+   "handle": "stephana-sueded-walls-prx-79073",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Geometric, Gray, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering, White",
+   "sampleVariantId": 13940745142384,
+   "sampleSku": "PRX-79073-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780958832,
+   "handle": "stephana-sueded-walls-prx-79074",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, display_variant, Geometric, Mid-Century Modern, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering",
+   "sampleVariantId": 13940747174000,
+   "sampleSku": "PRX-79074-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498781417584,
+   "handle": "stephana-sueded-walls-prx-79076",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Art Deco, Bone, Commercial, Commercial Wallcovering, display_variant, Geometric, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Tan, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13940759691376,
+   "sampleSku": "PRX-79076-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498781581424,
+   "handle": "stephana-sueded-walls-prx-79077",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Suede, Textured, Wallcovering, White",
+   "sampleVariantId": 13940760019056,
+   "sampleSku": "PRX-79077-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700943700019,
+   "handle": "stratus-sage-green-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, Biophilic, Botanical, Celadon, Class A Fire Rated, cloud, Coastal, Commercial, contemporary, decorative-papers-iii, display_variant, Green, Light Beige, Living Room, nature, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off-white, Organic Modern, Paper, relaxed, sage, Sage Green, Scandinavian, screen-printed, Serene, Showroom Line, Silver, stratus, Tan, traditional, V&A Decorative Papers Iii, wallcovering",
+   "sampleVariantId": 43722276864051,
+   "sampleSku": "DWWC-507130-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700943536179,
+   "handle": "stratus-sky-blue-wallcovering-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, blue, Botanical, Class A Fire Rated, cloud, Coastal, Commercial, Contemporary, Cottagecore, decorative-papers-iii, display_variant, Floral, Light Blue, Light Gray, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Nursery, Off-white, Paper, paste-the-wall, Powder Blue, Scandinavian, screen-printed, Serene, Showroom Line, Silver, sky-blue, stratus, strippable, traditional, V&A Decorative Papers Iii, victoria-albert-museum, wallcovering, washable",
+   "sampleVariantId": 43722276765747,
+   "sampleSku": "DWWC-507120-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700942848051,
+   "handle": "stratus-alabaster-pink-wallcovering-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, alabaster, Architectural, Bedroom, Beige, Biophilic, Class A Fire Rated, Classic, cloud, Commercial, Contemporary, decorative-papers-iii, display_variant, Elegant, Greige, Hallway, Leaf, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral, Off-white, Organic Modern, Pale Turquoise, Paper, paste-the-wall, Residential, screen-printed, Serene, Showroom Line, stratus, strippable, Subtle, traditional, V&a, Vintage, wallcovering, washable",
+   "sampleVariantId": 43722276438067,
+   "sampleSku": "DWWC-507100-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7700942979123,
+   "handle": "stratus-natural-wallcovering-phillipe-romano-3",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bathroom, Bedroom, beige, Biophilic, Class A Fire Rated, cloud, Commercial, Contemporary, cream, decorative-papers-iii, display_variant, Dove Gray, Grey, Hallway, Light Beige, Light Grey, natural, Needs-Image, Needs-Price, Needs-Width, neutral, Non-Woven, Off-white, Organic Modern, Pale Grey, Paper, paste-the-wall, Scandinavian, screen-printed, Serene, Showroom Line, Silver, stratus, strippable, Tan, Texture, traditional, V&A Decorative Papers Iii, wallcovering, washable",
+   "sampleVariantId": 43722276569139,
+   "sampleSku": "DWWC-507110-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500054290544,
+   "handle": "surfside-stain-repellent-real-linen-walls-xje-53800",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Herringbone, LEED, Leed Walls, Light Blue, Light Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Surfside Stain Repellent Real Linen, Textured, Wallcovering, White",
+   "sampleVariantId": 13959603847280,
+   "sampleSku": "XJE-53800-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500054716528,
+   "handle": "surfside-stain-repellent-real-linen-walls-xwa-53801",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, Commercial Wallcovering, Cream, display_variant, Eggshell, Fabric, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Surfside Stain Repellent Real Linen, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13959611154544,
+   "sampleSku": "XWA-53801-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500055142512,
+   "handle": "surfside-stain-repellent-real-linen-walls-xwa-53802",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Gray, LEED, Leed Walls, Light Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Surfside Stain Repellent Real Linen, Textured, Traditional, Transitional, Wallcovering, White",
+   "sampleVariantId": 13959614595184,
+   "sampleSku": "XWA-53802-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500055896176,
+   "handle": "surfside-stain-repellent-real-linen-walls-xwa-53804",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Herringbone, LEED, Leed Walls, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Textured, Wallcovering, WALLCOVERING : Wallcovering, Woven",
+   "sampleVariantId": 13959625474160,
+   "sampleSku": "XWA-53804-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502340808816,
+   "handle": "sympatico-prt-74140",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Mauve, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Purple, Showroom Line, Silver, Smoke, Taupe, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987035709552,
+   "sampleSku": "PRT-74140-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502341103728,
+   "handle": "sympatico-prt-74141",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987037642864,
+   "sampleSku": "PRT-74141-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502341300336,
+   "handle": "sympatico-prt-74142",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13987041345648,
+   "sampleSku": "PRT-74142-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502341529712,
+   "handle": "sympatico-prt-74143",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Fabric, Mocha, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Red, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987044425840,
+   "sampleSku": "PRT-74143-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502341922928,
+   "handle": "sympatico-prt-74145",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987049504880,
+   "sampleSku": "PRT-74145-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502342709360,
+   "handle": "sympatico-prt-74148",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Type 2, Type 2 Durable Vinyl, Vinyl, Wallcovering",
+   "sampleVariantId": 13987058778224,
+   "sampleSku": "PRT-74148-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502343233648,
+   "handle": "sympatico-prt-74150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Green, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Wallcovering",
+   "sampleVariantId": 13987066413168,
+   "sampleSku": "PRT-74150-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502343528560,
+   "handle": "sympatico-prt-74151",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987074080880,
+   "sampleSku": "PRT-74151-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500420997232,
+   "handle": "taiki-paper-weave-raffia-xqa-33716",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Cream, display_variant, Ecru, Grasscloth, Lattice, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Raffia, Rustic, Showroom Line, Textured, Traditional, Wallcovering, White, Woven",
+   "sampleVariantId": 13964355272816,
+   "sampleSku": "XQA-33716-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500421849200,
+   "handle": "taiki-paper-weave-raffia-xqa-33718",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Coastal, Commercial, display_variant, Grasscloth, Lattice, Light Gray, Natural, Natural Textile Wallcovering, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Raffia, Rustic, Sage, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13964364120176,
+   "sampleSku": "XQA-33718-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500422144112,
+   "handle": "taiki-paper-weave-raffia-xqa-33719",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Lattice, Light Brown, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper-weave, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Raffia, Rustic, Showroom Line, Taupe, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13964370706544,
+   "sampleSku": "XQA-33719-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500423061616,
+   "handle": "taiki-paper-weave-raffia-xqa-33722",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Grasscloth, Lattice, Mocha, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Raffia, Rustic, Showroom Line, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13964379291760,
+   "sampleSku": "XQA-33722-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500423323760,
+   "handle": "taiki-paper-weave-raffia-xqa-33723",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Gray, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Paper-weave, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Raffia, Rustic, Showroom Line, Silver, Smoke, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13964380766320,
+   "sampleSku": "XQA-33723-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497408929904,
+   "handle": "telluride-tufted-faux-leather-coco-brown-ttf-41200",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "000 Double Rubs - Cleanable, 100% FR PVC Vinyl, 70, Architectural, Beige, Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, display_variant, Drapery & Upholstery Fabrics: Telluride Tufted Upholstery Vinyl, Faux, Geometric, Leather, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Tan, Telluride Faux Leather, Textured, Traditional, Vinyl, Wallcovering",
+   "sampleVariantId": 44170992943155,
+   "sampleSku": "TTF-41200-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500063039600,
+   "handle": "topanga-canyon-metallic-natural-prp-56517",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, Cream, display_variant, Ecru, Grasscloth, Lattice, Metallic, Natural, Natural Wallcovering, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13959705002096,
+   "sampleSku": "PRP-56517-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500064809072,
+   "handle": "topanga-canyon-metallic-natural-prp-56521",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Lattice, Metallic, Natural, Natural Wallcovering, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13959726891120,
+   "sampleSku": "PRP-56521-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500065169520,
+   "handle": "topanga-canyon-metallic-natural-prp-56522",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Commercial, Contemporary, display_variant, Grasscloth, Lattice, Light Gray, Metallic, Natural, Natural Wallcovering, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13959734788208,
+   "sampleSku": "PRP-56522-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500067594352,
+   "handle": "topanga-canyon-metallic-natural-prp-56528",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Lattice, Metallic, Natural, Natural Wonders, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Texture, Textured, Vinyl, Wallcovering, Woven",
+   "sampleVariantId": 13959765885040,
+   "sampleSku": "PRP-56528-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500266299504,
+   "handle": "toyotomi-durable-vinyl-xol-33461",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Grasscloth, Light Beige, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Toyotomi Durable Vinyl, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 13962686824560,
+   "sampleSku": "XOL-33461-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500267053168,
+   "handle": "toyotomi-durable-vinyl-xol-33462",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962696917104,
+   "sampleSku": "XOL-33462-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500269150320,
+   "handle": "toyotomi-durable-vinyl-xol-33464",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962724278384,
+   "sampleSku": "XOL-33464-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500270133360,
+   "handle": "toyotomi-durable-vinyl-xol-33465",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962737713264,
+   "sampleSku": "XOL-33465-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500271968368,
+   "handle": "toyotomi-durable-vinyl-xol-33467",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962759307376,
+   "sampleSku": "XOL-33467-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500272820336,
+   "handle": "toyotomi-durable-vinyl-xol-33468",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Grasscloth, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Toyotomi Durable Vinyl, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962771693680,
+   "sampleSku": "XOL-33468-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500273672304,
+   "handle": "toyotomi-durable-vinyl-xol-33469",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Gray, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962784505968,
+   "sampleSku": "XOL-33469-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500274589808,
+   "handle": "toyotomi-durable-vinyl-xol-33470",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962796367984,
+   "sampleSku": "XOL-33470-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500276260976,
+   "handle": "toyotomi-durable-vinyl-xol-33472",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Gray, display_variant, Eggshell, Grasscloth, Gray, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Steel, Textured, Toyotomi Durable Vinyl, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962822353008,
+   "sampleSku": "XOL-33472-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500277178480,
+   "handle": "toyotomi-durable-vinyl-xol-33473",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Eggshell, Fabric, Geometric, Gray, Green, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Toyotomi Durable Vinyl, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962839326832,
+   "sampleSku": "XOL-33473-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500278915184,
+   "handle": "toyotomi-durable-vinyl-xol-33475",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13962860920944,
+   "sampleSku": "XOL-33475-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500279668848,
+   "handle": "toyotomi-durable-vinyl-xol-33476",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13962875207792,
+   "sampleSku": "XOL-33476-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502322229360,
+   "handle": "trentinato-prt-74066",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Metallic, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Tan, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13986739126384,
+   "sampleSku": "PRT-74066-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502322425968,
+   "handle": "trentinato-prt-74067",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, display_variant, Eggshell, Fabric, Gold, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering, Walnut, Woven, Yellow",
+   "sampleVariantId": 13986740109424,
+   "sampleSku": "PRT-74067-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502322688112,
+   "handle": "trentinato-prt-74068",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13986743484528,
+   "sampleSku": "PRT-74068-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502322884720,
+   "handle": "trentinato-prt-74069",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Bone, Brown, Class A Fire Rated, Commercial, display_variant, Fabric, Gold, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Solid, Texture, Textured, Traditional, Wallcovering, Woven, Yellow",
+   "sampleVariantId": 13986750824560,
+   "sampleSku": "PRT-74069-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882876063795,
+   "handle": "dwjj-40510-umberto",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bella Italiano, Black, Commercial, display_variant, Fabric, Gray, Light Gray, Mylar, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Silver, Texture, Textured, Traditional, Umberto, Umberto Paper on Silver Mylar Naturals, Wallcovering, White",
+   "sampleVariantId": 41180288254003,
+   "sampleSku": "DWJJ-40510-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500410216560,
+   "handle": "urakawa-real-capiz-shell-shell-33689",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Capiz, Capiz Flakes/Recycled paperboard w/ polyester yarn, Class A Fire Rated, Commercial, Contemporary, display_variant, Gold, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Off White, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, SHELL, Showroom Line, Stripe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, Yellow",
+   "sampleVariantId": 13964237340784,
+   "sampleSku": "SHELL-33689-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500412182640,
+   "handle": "urakawa-real-capiz-shell-shell-33694",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Capiz, Capiz Flakes/Recycled paperboard w/ polyester yarn, Commercial, Contemporary, display_variant, Eggshell, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Polyester, SHELL, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Wallcovering, White",
+   "sampleVariantId": 13964260606064,
+   "sampleSku": "SHELL-33694-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500634218608,
+   "handle": "urauso-durable-vinyl-xce-34310",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966834925680,
+   "sampleSku": "XCE-34310-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500634644592,
+   "handle": "urauso-durable-vinyl-xce-34311",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sepia, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Walnut, Woven",
+   "sampleVariantId": 13966835613808,
+   "sampleSku": "XCE-34311-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500635005040,
+   "handle": "urauso-durable-vinyl-xce-34312",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Gold, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13966844166256,
+   "sampleSku": "XCE-34312-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499203797104,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48546",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Almond, Architectural, Beige, Class A Fire Rated, Commercial, contemporary, Cream, display_variant, Eggshell, Greige, material-group-natural-fiber, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Texture, textured, Wallcovering, White",
+   "sampleVariantId": 13948734832752,
+   "sampleSku": "XQP-48546-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499204059248,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48547",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Eggshell, Gray, material-group-cork, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13948740403312,
+   "sampleSku": "XQP-48547-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499204845680,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48550",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Brown, Class A Fire Rated, Commercial, display_variant, Gray, material-group-cork, Metals, Needs-Image, Needs-Price, Needs-Width, Off White, Orange, Pattern, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Textured, Wallcovering",
+   "sampleVariantId": 13948749742192,
+   "sampleSku": "XQP-48550-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499205337200,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48552",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, display_variant, Eggshell, Gray, material-group-natural-fiber, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Pink, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Tan, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13948757901424,
+   "sampleSku": "XQP-48552-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499205795952,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48553",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Gold, Gray, material-group-metallic-foil, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Pattern, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Textured, Wallcovering, Yellow",
+   "sampleVariantId": 13948761047152,
+   "sampleSku": "XQP-48553-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499206156400,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48554",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Blue, Class A Fire Rated, Commercial, display_variant, Eggshell, Fog, Gray, material-group-grasscloth, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Powder, Showroom Line, Smoke, Steel, Storm, Texture, Textured, Wallcovering, White",
+   "sampleVariantId": 13948762292336,
+   "sampleSku": "XQP-48554-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499206844528,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48556",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, material-group-metallic-foil, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Silver, Texture, Textured, Tomato, Wallcovering, White",
+   "sampleVariantId": 13948774809712,
+   "sampleSku": "XQP-48556-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1499207041136,
+   "handle": "uxbridge-specialty-wallcovering-xqp-48557",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Bone, Class A Fire Rated, Commercial, Contemporary, display_variant, Gray, Metallic, Metals, Mfr-Image-Refreshed, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Metals, Polyester, Polyester/Metal film (with a water based plaster surface effect), Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13948778381424,
+   "sampleSku": "XQP-48557-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500688515184,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34421",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967388672112,
+   "sampleSku": "XCQ-34421-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500689498224,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34423",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967394799728,
+   "sampleSku": "XCQ-34423-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500689956976,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34424",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967398436976,
+   "sampleSku": "XCQ-34424-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500690382960,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34425",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967404073072,
+   "sampleSku": "XCQ-34425-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500691791984,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34428",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967418523760,
+   "sampleSku": "XCQ-34428-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500692217968,
+   "handle": "vancouver-island-fauc-silk-vinyl-xcq-34429",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Natural, Natural Textile Wallcovering, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13967421538416,
+   "sampleSku": "XCQ-34429-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265396275,
+   "handle": "virgin-gorda-aqua",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Circle, Circular Pattern, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, Cool Blues, Deep, display_variant, Dot, Fabric, FR Additives Free, Geometric, Geometric Texture, Global Inspired, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Midnight, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Sophisticated, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090160414771,
+   "sampleSku": "DWPR-427740",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265429043,
+   "handle": "virgin-gorda-bamboo",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bohemian, CA TB 117 Compliant, Circle, Circular Pattern, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, display_variant, Dot, Fabric, FR Additives Free, Geometric, Geometric Texture, Global, Global Inspired, Gold, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Greens, Needs-Price, NFPA 260 Compliant, Organic Feel, Organic Modern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Sustainable, Tan, Texture, Textured, Upholstery, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090160447539,
+   "sampleSku": "DWPN-101829",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792265461811,
+   "handle": "virgin-gorda-camel",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Camel, Circle, Circles, Circular Pattern, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, Dining Room, display_variant, Dot, Embossed, Fabric, FR Additives Free, Geometric, Geometric Emboss, Global Inspired, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic Texture, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Sustainable, Tan, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090160480307,
+   "sampleSku": "DWPR-427742",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265527347,
+   "handle": "virgin-gorda-canyon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bohemian, Brown, CA TB 117 Compliant, Chocolate Brown, Circle, Circular Pattern, Class A Fire Rated, Coffee, Commercial, Concentric, Contemporary, Contract Grade, display_variant, Dot, Embossed, Fabric, FR Additives Free, Geometric, Geometric Texture, Global, Global Inspired, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Organic Feel, Patina, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Sustainable, Tan, Taupe, Texture, Textured, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090160578611,
+   "sampleSku": "DWPN-101831",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792265560115,
+   "handle": "virgin-gorda-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bohemian, Brown, CA TB 117 Compliant, Chocolate Brown, Circle, Circular Design, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, Dark, dark brown, display_variant, Dot, Dot Pattern, Embossed, Espresso, Fabric, FR Additives Free, Geometric, Global, Global Inspired, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Organic Modern, Organic Texture, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Sustainable, Textured, Upholstery, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090160611379,
+   "sampleSku": "DWPR-427744",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265592883,
+   "handle": "virgin-gorda-garden",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Biophilic, Bleach Cleanable, CA TB 117 Compliant, Circle, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, display_variant, Dot, Dot Matrix, Drab, Fabric, FR Additives Free, Geometric, Geometric Pattern, Global Inspired, Gold, Green, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Natural Greens, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Olive, Olive Green, Organic, Organic Modern, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090160644147,
+   "sampleSku": "DWPR-427745",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265625651,
+   "handle": "virgin-gorda-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Charcoal Gray, Circle, Circular, Circular Pattern, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grey, dark gray, Dark Tones, display_variant, Dot, Dot Texture, Embossed, Fabric, FR Additives Free, Geometric, Geometric Emboss, Global Inspired, Gray, Green Building, Grey, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Organic Modern, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Serene, Showroom Line, Sustainable, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090160676915,
+   "sampleSku": "DWPN-101834",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792265658419,
+   "handle": "virgin-gorda-onyx",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Antimicrobial-Free, Architectural, Bedroom, Biophilic, Bleach Cleanable, Brown, CA TB 117 Compliant, Circle, Circular Pattern, Class A Fire Rated, Commercial, Concentric, Contemporary, Contract Grade, Dark, dark brown, Dark Taupe, Dark Tones, display_variant, Dot, Ebony, Fabric, FR Additives Free, Geometric, Geometric Texture, Global Inspired, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Non-woven, Organic, Organic Modern, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Showroom Line, Sustainable, Texture, Textured, Upholstery, Vinyl, Wallcovering",
+   "sampleVariantId": 44090160709683,
+   "sampleSku": "DWPR-427747",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792265691187,
+   "handle": "virgin-gorda-pumpkin",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#CD853F, #E0AC69, Abstract, Amber, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Circle, Circles, Circular Design, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Goldenrod, Dining Room, display_variant, Dot, Dot Pattern, Embossed, Fabric, FR Additives Free, Geometric, Geometric Emboss, Global Inspired, Gold, Golden Brown, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Tan, Living Room, Needs-Price, NFPA 260 Compliant, Orange, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Showroom Line, Sustainable, Tan, Textured, Traditional, Transitional, Upholstery, Vinyl, Vinyl Upholstery, Wallcovering, Warm",
+   "sampleVariantId": 44090160742451,
+   "sampleSku": "DWPN-101836",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1497187385456,
+   "handle": "versailles-wallpaper-xq1-68104",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170991992883,
+   "sampleSku": "XQ1-68104-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497187483760,
+   "handle": "versailles-wallpaper-xq1-68105",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Light Beige, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992025651,
+   "sampleSku": "XQ1-68105-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497187582064,
+   "handle": "versailles-wallpaper-xq1-68106",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bronze, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gold, Gray, Needs-Image, Needs-Price, Needs-Width, Olive Green, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Stripe, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992058419,
+   "sampleSku": "XQ1-68106-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497187745904,
+   "handle": "versailles-wallpaper-xq1-68107",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Teal, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992091187,
+   "sampleSku": "XQ1-68107-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497187876976,
+   "handle": "versailles-wallpaper-xq1-68108",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Stripe, Tan, Teal, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992123955,
+   "sampleSku": "XQ1-68108-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497188008048,
+   "handle": "versailles-wallpaper-xq1-68109",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, non-woven, Oatmeal, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Pink, Plum, Purple, Showroom Line, stripe, Taupe, Traditional, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992156723,
+   "sampleSku": "XQ1-68109-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497191350384,
+   "handle": "versailles-wallpaper-xq1-68110",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Black, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Gunmetal, Light Gray, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992189491,
+   "sampleSku": "XQ1-68110-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497191481456,
+   "handle": "versailles-wallpaper-xq1-68111",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Gray, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 44170992222259,
+   "sampleSku": "XQ1-68111-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497191612528,
+   "handle": "versailles-wallpaper-xq1-68112",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Black, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Mocha, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992287795,
+   "sampleSku": "XQ1-68112-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497191743600,
+   "handle": "versailles-wallpaper-xq1-68113",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, contemporary, Dark Gray, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, non-woven, Pewter, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, stripe, textured, Traditional, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992320563,
+   "sampleSku": "XQ1-68113-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497191874672,
+   "handle": "versailles-wallpaper-xq1-68114",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Red, Showroom Line, Stripe, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992353331,
+   "sampleSku": "XQ1-68114-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497192038512,
+   "handle": "versailles-wallpaper-xq1-68115",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Ash, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gold, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering, Yellow",
+   "sampleVariantId": 44170992386099,
+   "sampleSku": "XQ1-68115-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497192202352,
+   "handle": "versailles-wallpaper-xq1-68116",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Gray, Light Beige, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992418867,
+   "sampleSku": "XQ1-68116-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497192333424,
+   "handle": "versailles-wallpaper-xq1-68117",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Gray, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering, White",
+   "sampleVariantId": 44170992451635,
+   "sampleSku": "XQ1-68117-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1497192464496,
+   "handle": "versailles-wallpaper-xq1-68118",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Showroom Line, Silver, Stripe, Tan, Versailles Vinyl Wallcovering, vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 44170992484403,
+   "sampleSku": "XQ1-68118-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266215475,
+   "handle": "vista-point-aspen",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Modern Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Off White, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Silver, Stripe, Striped, Taupe, Texture, Textured, Textured Surface, Transitional, Vertical, Vertical Stripes, Vinyl, Wallcovering, White",
+   "sampleVariantId": 44090162774067,
+   "sampleSku": "DWPR-427757",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266281011,
+   "handle": "vista-point-canary",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Gold, Graffiti-Free, Green Building, Hallway, Harvest, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern Minimalist, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Olive Green, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Ribbed, Saffron, Scandinavian, Showroom Line, Silicone, Stripe, Striped, Tan, Texture, Textured, Transitional, Vertical, Vinyl, Wallcovering, Warm, White, Yellow",
+   "sampleVariantId": 44090162839603,
+   "sampleSku": "DWPR-427758",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266313779,
+   "handle": "vista-point-fierce",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Copper, display_variant, DMF-Free, Earthy, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Orange, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Residential, Rust, Rustic, Showroom Line, Silicone, Silicone Hybrid, Southwestern, Stripe, Striped, Texture, Textured, Traditional, Vertical, Vertical Stripes, Wallcovering, Warm, Warm Tones",
+   "sampleVariantId": 44090162905139,
+   "sampleSku": "DWPR-427759",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266444851,
+   "handle": "vista-point-flax",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Grasscloth, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, light blue, Living Room, Modern Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Off White, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Ribbed, Serene, Showroom Line, Silicone, Stripe, Striped Pattern, Taupe, Textured, Traditional, Transitional, Vertical, Vertical Lines, Wallcovering",
+   "sampleVariantId": 44090163462195,
+   "sampleSku": "DWPR-427760",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266510387,
+   "handle": "vista-point-laguna",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#283F31, #5A7A8C, #99A66B, #A67A44, #A6A9B0, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue Gray, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cool Blues, Dark, Dark Green, display_variant, DMF-Free, Earthy, Earthy tones, Fabric, FR Additives Free, Gold, Graffiti-Free, Grasscloth, Green, Green Building, Hallway, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Grey, Living Room, Modern Minimalist, Navy Blue, Needs-Price, NFPA 260 Compliant, Olive Green, Organic, Organic Modern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Sage Green, Showroom Line, Silicone, Silicone Hybrid, Stripe, Striped, Striped pattern, Taupe, Teal, Texture, Textured, Traditional, Transitional, Vinyl, Wallcovering, Woven, Woven texture, Yellow",
+   "sampleVariantId": 44090163888179,
+   "sampleSku": "DWPN-101849",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792266543155,
+   "handle": "vista-point-ridge",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cream, Dark Brown, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Graffiti-Free, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Modern, Modern Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Olive Green, Organic, Organic Modern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Ribbed, Showroom Line, Silicone, Stripe, Striped, Tan, Taupe, Textured, Transitional, Vertical, Wallcovering",
+   "sampleVariantId": 44090163920947,
+   "sampleSku": "DWPR-427762",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792266575923,
+   "handle": "vista-point-twilight",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal Grey, Class A Fire Rated, Color Variation, Commercial, Contemporary, Contract Grade, Cool, Denim, display_variant, DMF-Free, Fabric, FR Additives Free, Graffiti-Free, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Modern Minimalist, Navy Blue, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Slate Grey, Stripe, Striped, Taupe, Texture, Textured, Textured Stripe, Twilight, Vertical Pattern, Vinyl, Wallcovering, White, Woven",
+   "sampleVariantId": 44090163953715,
+   "sampleSku": "DWPR-427763",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792267984947,
+   "handle": "vintage-harbor-clipper",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#0D1421, #192333, #2C3441, #3E4551, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Gray, Darkblue, Deep, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Leather-like, LEED Compatible, Living Room, Midnight, Minimalist, Modern, Navy, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Solid Color, Sophisticated, Textured, Vinyl, Wallcovering",
+   "sampleVariantId": 44090169032755,
+   "sampleSku": "DWPN-101880",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268017715,
+   "handle": "vintage-harbor-cocoa",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bleach Cleanable, Brown, CA TB 117 Compliant, chocolate brown, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark, dark brown, display_variant, DMF-Free, Espresso, Executive Office, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Luxe, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, Rustic, Showroom Line, Solid, Sophisticated, Texture, Textured, Traditional, Uniform Grain, Wallcovering",
+   "sampleVariantId": 44090169065523,
+   "sampleSku": "DWPR-427793",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268050483,
+   "handle": "vintage-harbor-eggshell",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, DMF-Free, Eggshell, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Subtle Grain, Texture, Textured, Timeless, Traditional, Transitional, Wallcovering, Warm, White",
+   "sampleVariantId": 44090169098291,
+   "sampleSku": "DWPR-427794",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268116019,
+   "handle": "vintage-harbor-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#4A372A, #604A3A, #775D4A, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark, Dark Brown, display_variant, DMF-Free, Executive Office, Fabric, Faux Leather, Fine, Fine Texture, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, Leather-like, LEED Compatible, Light Brown, Living Room, Lodge, Medium Brown, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Rustic, Showroom Line, Solid, Textured, Timeless, Traditional, Uniform, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090169524275,
+   "sampleSku": "DWPN-101883",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268181555,
+   "handle": "vintage-harbor-freshcut",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Gold, Golden Brown, Goldenrod, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Minimalist, Modern, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Organic Modern, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Texture, Textured, Traditional, Uniform Grain, Vintage, Vinyl, Wallcovering, Warm, Yellow",
+   "sampleVariantId": 44090169753651,
+   "sampleSku": "DWPR-427796",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268214323,
+   "handle": "vintage-harbor-garnet",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Oxblood, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Red, reddish-brown, Russet, Rustic, Showroom Line, Sienna, Solid, Texture, Textured, Traditional, Transitional, Umber, Uniform Grain, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090169786419,
+   "sampleSku": "DWPR-427797",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268247091,
+   "handle": "vintage-harbor-haze",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Taupe, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Minimalist, Modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic Modern, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Solid, Subtle Texture, Taupe, Texture, Textured, Vintage, Vinyl, Wallcovering",
+   "sampleVariantId": 44090169819187,
+   "sampleSku": "DWPR-427798",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268279859,
+   "handle": "vintage-harbor-lipstick",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brick Red, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Red, Dining Room, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, Fine Texture, FR Additives Free, Garnet, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Mahogany, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Red, Rustic, Showroom Line, Solid, Solid Color, Texture, Textured, Traditional, Transitional, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090169851955,
+   "sampleSku": "DWPR-427799",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268312627,
+   "handle": "vintage-harbor-meadow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#45412D, #59543B, #736D53, AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Botanical, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Coffee, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, DMF-Free, Drab, Fabric, Faux Leather, Fine, FR Additives Free, Gold, Grain, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, Khaki, LEED Compatible, Living Room, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Olive, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Subtle Grain, Textured, Traditional, Transitional, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090169884723,
+   "sampleSku": "DWPN-101888",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268345395,
+   "handle": "vintage-harbor-merino",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather Look, LEED Compatible, light brown, Living Room, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Office, Orange, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Uniform Grain, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090169917491,
+   "sampleSku": "DWPR-427801",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268476467,
+   "handle": "vintage-harbor-onyx",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#000000, #333333, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Black, Bleach Cleanable, CA TB 117 Compliant, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Gray, Dark Tones, Deep, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Sophisticated, Textured, Vintage, Vinyl, Wallcovering",
+   "sampleVariantId": 44090170376243,
+   "sampleSku": "DWPN-101890",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268509235,
+   "handle": "vintage-harbor-pebble",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#C4B095, #E0CDB1, AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Office, Organic Modern, Pale, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Residential, Serene, Showroom Line, Smooth, Solid, Subtle Grain, Tan, Textured, Traditional, Vintage, Vinyl, Wallcovering",
+   "sampleVariantId": 44090170802227,
+   "sampleSku": "DWPN-101891",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268574771,
+   "handle": "vintage-harbor-pumpkin",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Honey, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Light Brown, Living Room, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Uniform Texture, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171228211,
+   "sampleSku": "DWPR-427805",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268607539,
+   "handle": "vintage-harbor-rustic",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#A36B33, #C48747, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Tan, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Tan, Textured, Timeless, Traditional, Transitional, Uniform, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171260979,
+   "sampleSku": "DWPN-101893",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268640307,
+   "handle": "vintage-harbor-saddle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Light Brown, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Uniform Grain, Vintage, Wallcovering, Warm",
+   "sampleVariantId": 44090171293747,
+   "sampleSku": "DWPR-427807",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268673075,
+   "handle": "vintage-harbor-seal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Grey, Deep, display_variant, DMF-Free, Fabric, Fine, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Matte Finish, Minimalist, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Sophisticated, Subtle Texture, Texture, Textured, Uniform Grain, Vintage, Vinyl, Wallcovering",
+   "sampleVariantId": 44090171359283,
+   "sampleSku": "DWPR-427808",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268705843,
+   "handle": "vintage-harbor-slate",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#4E4135, #625447, #756658, #897A6B, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Classic, Coffee, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Brown, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Light Brown, Living Room, Medium Brown, Minimalist, Modern, Mushroom, Needs-Price, NFPA 260 Compliant, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Subtle Texture, Taupe, Textured, Traditional, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171392051,
+   "sampleSku": "DWPN-101896",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268738611,
+   "handle": "vintage-harbor-smoke",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#1E1D1C, #363332, #4A4746, AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cool Grays, Dark, dark gray, Dark Grey, display_variant, DMF-Free, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Gray, Green Building, Grey, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, NFPA 260 Compliant, Office, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Solid, Sophisticated, Subtle Grain, Textured, Vintage, Vinyl, Wallcovering",
+   "sampleVariantId": 44090171424819,
+   "sampleSku": "DWPN-101897",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268771379,
+   "handle": "vintage-harbor-spruce",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#545037, #6B674A, #827E61, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, DMF-Free, Earthy, Fabric, Faux Leather, Fine, FR Additives Free, Grain, Green, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Mocha, Natural Greens, Needs-Price, NFPA 260 Compliant, Office, Olive, Pebble, Pebbled Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Subtle Grain, Taupe, Textured, Traditional, Transitional, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171457587,
+   "sampleSku": "DWPN-101898",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268836915,
+   "handle": "vintage-harbor-sunflower",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#A67A43, #C18E4D, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, Floral, FR Additives Free, Golden Tan, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Modern, Needs-Price, NFPA 260 Compliant, Ochre, Office, Orange, Pebble, Pebble Texture, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane Surface, PVC-Free, Rustic, Showroom Line, Solid, Tan, Textured, Traditional, Transitional, Uniform Grain, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171686963,
+   "sampleSku": "DWPN-101899",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792268902451,
+   "handle": "vintage-harbor-tobacco",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Caramel, Chocolate, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Farmhouse, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Leather-like, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Uniform Texture, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171916339,
+   "sampleSku": "DWPR-427813",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792268935219,
+   "handle": "vintage-harbor-vanilla",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#A89578, #C4B194, #E0CDB0, AI-Analyzed-v2, Animal, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Creamy, display_variant, DMF-Free, Fabric, Faux Leather, Fine, Fine Grain, FR Additives Free, Grain, Green Building, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Insects, LEED Compatible, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, Neutral Tones, NFPA 260 Compliant, Oatmeal, Office, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Rustic, Sand, Showroom Line, Solid, Subtle Texture, Tan, Textured, Traditional, Transitional, Vintage, Vinyl, Wallcovering, Warm",
+   "sampleVariantId": 44090171949107,
+   "sampleSku": "DWPN-101901",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269000755,
+   "handle": "vintage-harbor-white",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Champagne, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, DMF-Free, Fabric, Fine, Fine Grain, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Needs-Image, Needs-Price, Needs-Width, Neutral Tones, NFPA 260 Compliant, Non-woven, Off White, Organic Modern, Pebble, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Scandinavian, Serene, Showroom Line, Solid, Subtle Texture, Texture, Textured, Transitional, Vintage, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 44090173554739,
+   "sampleSku": "DWPR-427815",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 6882875834419,
+   "handle": "dwjj-40450-vittorio",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Eggshell, Glam, Metallic, Mica, Mica Chips, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Texture, Textured, Vittorio, Wallcovering, White",
+   "sampleVariantId": 41180287959091,
+   "sampleSku": "DWJJ-40450-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269066291,
+   "handle": "vivace-reef-canvas",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#A68A64, #D2B48C, #F5F5DC, Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Blackout, Brushed, CAN/ULC Certified, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, display_variant, Drapery, Dry Clean Only, Fabric, Farmhouse, Hallway, Hospitality, Light Brown, Linen, Linen Look, Linen Texture, Living Room, Natural, Needs-Price, Neutral Tone, Neutral Tones, NFPA 701 Drapery Rated, Oatmeal, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Rustic, Sand, Showroom Line, Soft Weave, Solid, Spot Cleanable, Tan, Textured, Traditional, Transitional, Vivaldi, Wallcovering, Warm, Weave, Wide Width, Woven",
+   "sampleVariantId": 44090173653043,
+   "sampleSku": "DWPN-101903",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269131827,
+   "handle": "vivace-reef-helium",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#A9A9A9, #D3D3D3, Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Blackout, Brushed, CAN/ULC Certified, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, Drapery, Dry Clean Only, Fabric, Gray, Grey, Hospitality, Light Gray, Light Grey, Linen, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 701 Drapery Rated, Non-woven, Office, Performance Fabric, Phillipe Romano, Polyester Blend, Residential, Scandinavian, Serene, Showroom Line, Silver, Soft, Solid, Spot Cleanable, Subtle Weave, Textured, Traditional, Vivaldi, Wallcovering, Weave, Wide Width, Woven",
+   "sampleVariantId": 44090173751347,
+   "sampleSku": "DWPN-101904",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269164595,
+   "handle": "vivace-reef-ink",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Blackout, Blue, CAN/ULC Certified, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool, Cool Blues, Deep, display_variant, Drapery, Dry Clean Only, Fabric, Fabric-backed Vinyl, Fine, Healthcare, Hospitality, Industrial, Living Room, Minimalist, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 701 Drapery Rated, Office, Performance Fabric, Phillipe Romano, Polyester Blend, Showroom Line, Solid, Solid Color, Spot Cleanable, Subtle Texture, Texture, Textured, Vivaldi, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44090173784115,
+   "sampleSku": "DWPR-427818",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269197363,
+   "handle": "vivace-reef-latte",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#997D59, #A68A66, #B39773, #CDB38B, #D2B48C, Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Blackout, Brown, CAN/ULC Certified, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Beige, display_variant, Drapery, Dry Clean Only, Fabric, Fabric-backed Vinyl, Fine, Fine Weave, Hallway, Healthcare, Hospitality, Light Brown, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 701 Drapery Rated, Non-woven, Performance Fabric, Phillipe Romano, Polyester Blend, Rustic, Showroom Line, Soft, Solid, Spot Cleanable, Subtle Texture, Tan, Taupe, Texture, Textured, Traditional, Transitional, Vivaldi, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44090173816883,
+   "sampleSku": "DWPN-101906",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269230131,
+   "handle": "vivace-reef-moonbeam",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#C6B394, #E0D1B6, Acrylic Backed, AI-Analyzed-v2, Animal, Architectural, Bedroom, Beige, Blackout, CAN/ULC Certified, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Drapery, Dry Clean Only, Fabric, Fabric-backed Vinyl, Fine, Fine Weave, Hallway, Healthcare, Hospitality, Insects, Living Room, Minimalist, Needs-Price, Neutral Color, Neutral Tones, NFPA 701 Drapery Rated, Pale, Performance Fabric, Phillipe Romano, Polyester Blend, Showroom Line, Solid, Spot Cleanable, Subtle Texture, Tan, Texture, Textured, Timeless, Traditional, Transitional, Vinyl, Vivaldi, Wallcovering, Warm, Wide Width, Woven",
+   "sampleVariantId": 44090173882419,
+   "sampleSku": "DWPN-101907",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269262899,
+   "handle": "vivace-reef-pewter",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#808080, #A9A9A9, #C0C0C0, #C9C0BB, Acrylic Backed, AI-Analyzed-v2, Animal, Architectural, Ash, Bedroom, Blackout, CAN/ULC Certified, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, Dark Gray, display_variant, Drapery, Dry Clean Only, Fabric, Fabric-backed Vinyl, Fine, Gray, Grey, Hospitality, Insects, Light Gray, Linen Texture, Living Room, Minimalist, Needs-Price, Neutral Tone, NFPA 701 Drapery Rated, Office, Performance Fabric, Phillipe Romano, Polyester Blend, Refined, Residential, Scandinavian, Serene, Showroom Line, Silver, Silver Gray, Soft, Solid, Spot Cleanable, Subtle Texture, Texture, Textured, Transitional, Vinyl, Vivaldi, Wallcovering, Wide Width, Woven",
+   "sampleVariantId": 44090173915187,
+   "sampleSku": "DWPN-101908",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269295667,
+   "handle": "vivace-reef-snow",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#E3DED5, #F5F1E8, Acrylic Backed, AI-Analyzed-v2, Architectural, Bedroom, Beige, Blackout, CAN/ULC Certified, Class A Fire Rated, Coastal, Commercial, Contemporary, Contract Grade, Cream, Creamy, display_variant, Drapery, Dry Clean Only, Fabric, Fine, Hallway, Healthcare, Hospitality, Ivory, Living Room, Minimalist, Needs-Price, Neutral Tones, NFPA 701 Drapery Rated, Off White, Performance Fabric, Phillipe Romano, Polyester Blend, Refined, Scandinavian, Serene, Showroom Line, Solid, Spot Cleanable, Subtle Texture, Texture, Textured, Traditional, Transitional, Vinyl, Vivaldi, Wallcovering, White, Wide Width, Woven",
+   "sampleVariantId": 44090173947955,
+   "sampleSku": "DWPN-101909",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1498767917168,
+   "handle": "walter-weave-walls-prx-79025",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Ecru, Fabric, Geometric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940504854640,
+   "sampleSku": "PRX-79025-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498768146544,
+   "handle": "walter-weave-walls-prx-79026",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Geometric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940506525808,
+   "sampleSku": "PRX-79026-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498768375920,
+   "handle": "walter-weave-walls-prx-79027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940512522352,
+   "sampleSku": "PRX-79027-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498768638064,
+   "handle": "walter-weave-walls-prx-79028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940514259056,
+   "sampleSku": "PRX-79028-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498768900208,
+   "handle": "walter-weave-walls-prx-79029",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940523073648,
+   "sampleSku": "PRX-79029-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498769195120,
+   "handle": "walter-weave-walls-prx-79030",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Ecru, Fabric, Geometric, Gold, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Tan, Viscose, Wallcovering, Weave, White, Woven, Yellow",
+   "sampleVariantId": 13940526612592,
+   "sampleSku": "PRX-79030-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498772439152,
+   "handle": "walter-weave-walls-prx-79031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Geometric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Sand, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940595130480,
+   "sampleSku": "PRX-79031-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500472639600,
+   "handle": "watanala-bay-real-wood-walls-wood-33843",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Camel, Class A Fire Rated, Commercial, display_variant, Fabric, Light Brown, material-group-paperweave, Needs-Image, Needs-Price, Needs-Width, Non-woven, Phillipe Romano, Phillipe Romano Essential Textures, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Wood",
+   "sampleVariantId": 13964889981040,
+   "sampleSku": "WOOD-33843-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269328435,
+   "handle": "waterfall-bay-charcoal",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, dark gray, Dark Grey, Dark Tones, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Graphite, Gray, Green Building, Grey, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Quilted, Residential, Showroom Line, Sophisticated, Textured, Tufted, Tufted Detail, Wallcovering, Wavelength, Wavy, Wavy Lines",
+   "sampleVariantId": 44090173980723,
+   "sampleSku": "DWPR-427823",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269393971,
+   "handle": "waterfall-bay-dk-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#4A3B2F, #574537, #664F3F, #7A5F4D, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bittersweet, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Tan, display_variant, DMF-Free, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric, Glamorous, Green Building, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Brown, Living Room, Luxe, Luxurious, Medium Brown, Modern, Needs-Price, NFPA 260 Compliant, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Residential, Showroom Line, Taupe, Textured, Tufted, Tufted Detail, Vinyl, Wallcovering, Wavelength, Wavy, Wavy Pattern",
+   "sampleVariantId": 44090174406707,
+   "sampleSku": "DWPN-101911",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269459507,
+   "handle": "waterfall-bay-elk",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Pattern, Green Building, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Padded Texture, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Residential, Showroom Line, Taupe, Texture, Textured, Traditional, Tufted, Wallcovering, Wave, Wave Design, Wavelength",
+   "sampleVariantId": 44090174636083,
+   "sampleSku": "DWPR-427825",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269492275,
+   "handle": "waterfall-bay-honeycomb",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#B18B41, #D4A750, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Gold, display_variant, DMF-Free, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Emboss, Gold, Golden Brown, Green Building, Healthcare, Honey, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Mustard Yellow, Needs-Price, NFPA 260 Compliant, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, Polyurethane Surface, PVC-Free, Showroom Line, Textured, Tufted, Tufted Detail, Vinyl, Wallcovering, Warm, Wave, Wavelength, Wavy Pattern, Yellow",
+   "sampleVariantId": 44090174668851,
+   "sampleSku": "DWPN-101913",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269525043,
+   "handle": "waterfall-bay-matcha",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#736B2B, #8F8736, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bronze, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Olive, display_variant, DMF-Free, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric, Glamorous, Gold, Green, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Luxe, Luxurious, Modern, Natural Greens, Needs-Price, NFPA 260 Compliant, Olive, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Showroom Line, Textured, Tufted, Tufted Detail, Vinyl, Wallcovering, Wave, Wave Pattern, Wavelength",
+   "sampleVariantId": 44090174701619,
+   "sampleSku": "DWPN-101914",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269557811,
+   "handle": "waterfall-bay-palladium",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Grays, display_variant, DMF-Free, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric, Glamorous, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Luxurious, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Quilted, Quilted Texture, Showroom Line, Tan, Taupe, Textured, Tufted, Wallcovering, Wavelength, Wavy, Wavy Lines",
+   "sampleVariantId": 44090174734387,
+   "sampleSku": "DWPR-427828",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269590579,
+   "handle": "waterfall-bay-persimmon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Camel, Caramel, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Fabric, Faux Leather, FR Additives Free, Geometric, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Orange, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, Polyurethane Surface, PVC-Free, Quilted Texture, Showroom Line, Tan, Textured, Tufted, Wallcovering, Warm, Wave, Wave Pattern, Wavelength",
+   "sampleVariantId": 44090174767155,
+   "sampleSku": "DWPR-427829",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269623347,
+   "handle": "waterfall-bay-sapphire",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Blue, CA TB 117 Compliant, Charcoal, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Cool Blues, Deep, display_variant, DMF-Free, Embossed, Fabric, Faux Leather, FR Additives Free, Geometric, Geometric Emboss, Gray, Green Building, Healthcare, Hospitality, Hotel Lobby, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Luxe, Modern, Navy, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Polyurethane, PVC-Free, Showroom Line, Sophisticated, Squares, Textured, Tufted, Tufted Detail, Vinyl, Wallcovering, Wavelength, Wavy, Wavy Pattern",
+   "sampleVariantId": 44090174799923,
+   "sampleSku": "DWPR-427830",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269688883,
+   "handle": "west-end-fleece",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#BDBDB5, #D1C1A7, #E0D6C1, #F2F0E6, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Check, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, display_variant, DMF-Free, Ecru, Fabric, FR Additives Free, Geometric, Graffiti-Free, Green Building, Grid, Grid Pattern, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Minimalist, Needs-Price, Neutral Color, Neutral Tones, NFPA 260 Compliant, Off-white, Office, Organic Modern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Silicone Hybrid, Subtle Texture, Tan, Taupe, Texture, Textured, Tile, Transitional, Vinyl, Wallcovering, Webster, Woven",
+   "sampleVariantId": 44090175225907,
+   "sampleSku": "DWPN-101918",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269721651,
+   "handle": "west-end-ginger",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#B8860B, #F5F5DC, #FFDB58, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Brown, CA TB 117 Compliant, Check, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, Farmhouse, FR Additives Free, Geometric, Golden Brown, Graffiti-Free, Green Building, Grid, Grid Pattern, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Mustard, Mustard Yellow, Needs-Price, NFPA 260 Compliant, Office, Orange, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Plaid, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Subtle Texture, Textured, Traditional, Transitional, Wallcovering, Warm, Webster, White, Woven, Yellow",
+   "sampleVariantId": 44090175258675,
+   "sampleSku": "DWPN-101919",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269754419,
+   "handle": "west-end-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Check, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Crosshatch, Dark, Dark Gray, Dark Tones, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Geometric Pattern, Graffiti-Free, Graphite, Gray, Green Building, Grey, Grid, Grid Design, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Industrial, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off White, Office, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Serene, Showroom Line, Silicone, Silicone Hybrid, Silver, Stitched, Stitched Detail, Textured, Tile, Vinyl, Wallcovering, Webster",
+   "sampleVariantId": 44090175291443,
+   "sampleSku": "DWPR-427833",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269787187,
+   "handle": "west-end-marina",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#4A5147, #C0C4C0, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Charcoal, Check, Class A Fire Rated, Classic, Coastal, Commercial, Contemporary, Contract Grade, Cool, Crosshatch, Dark Gray, Dark Olive Green, Deep, display_variant, DMF-Free, Fabric, FR Additives Free, Geometric, Geometric Texture, Graffiti-Free, Graphite, Green, Green Building, Grey, Grid, Grid Pattern, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Light Gray, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Office, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Stitched, Stitched Detail, Textured, Vinyl, Wallcovering, Webster",
+   "sampleVariantId": 44090175324211,
+   "sampleSku": "DWPN-101921",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269819955,
+   "handle": "west-end-parrot",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#596439, #A39F6D, #D4D19E, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, CA TB 117 Compliant, Check, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cream, Crosshatch, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Gold, Graffiti-Free, Green, Green Building, Grid, Grid Pattern, Grove, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Khaki, LEED Compatible, Living Room, Minimalist, Modern, Needs-Price, Neutral Tones, NFPA 260 Compliant, Off-white, Office, Olive, Olive Green, Organic, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Stitched, Stitched Detail, Textured, Vinyl, Wallcovering, Webster, White",
+   "sampleVariantId": 44090175356979,
+   "sampleSku": "DWPN-101922",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269852723,
+   "handle": "west-end-tart",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#C86444, #D1A04F, #F2E7D4, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Check, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cream, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Gold, Graffiti-Free, Green Building, Grid, Grid Pattern, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Modern, Mustard, Needs-Price, Neutral Tones, NFPA 260 Compliant, Off-white, Office, Orange, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Pink, Plaid, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Spice, Terracotta, Textured, Transitional, Vinyl, Wallcovering, Warm, Webster, White, Woven, Woven Texture, Yellow",
+   "sampleVariantId": 44090175389747,
+   "sampleSku": "DWPN-101923",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269885491,
+   "handle": "west-end-tidepool",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#78998F, #E0D898, #F0F0F0, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, CA TB 117 Compliant, Class A Fire Rated, Classic, Commercial, Contemporary, Contract Grade, Cool Blues, Cream, display_variant, DMF-Free, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Graffiti-Free, Green, Green Building, Grid, Grid Pattern, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, Lattice, LEED Compatible, Living Room, Minimalist, Needs-Price, NFPA 260 Compliant, Non-woven, Off-white, Office, Pale Yellow, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, PVC-Free, Sage, Sage Green, Scandinavian, Sea Green, Serene, Showroom Line, Silicone, Silicone Hybrid, Smoke, Teal, Textured, Textured Weave, Wallcovering, White, Woven",
+   "sampleVariantId": 44090175422515,
+   "sampleSku": "DWPN-101924",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792269918259,
+   "handle": "west-end-truffle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Check, Class A Fire Rated, Classic, Coffee, Commercial, Contemporary, Contract Grade, Crosshatch, display_variant, DMF-Free, Earthy, Fabric, Fabric-backed Vinyl, FR Additives Free, Geometric, Geometric Texture, Graffiti-Free, Green Building, Grid, Healthcare, Hospitality, IMO 8.2 Certified, IMO Marine Grade, LEED Compatible, Living Room, Minimalist, Modern, Mustard Yellow, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Off-white, Office, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Plaid, Polyester Blend, PVC-Free, Showroom Line, Silicone, Silicone Hybrid, Sophisticated, Stitch, Stitched Grid, Taupe, Texture, Textured, Transitional, Wallcovering, Webster, Yellow",
+   "sampleVariantId": 44090175619123,
+   "sampleSku": "DWPR-427838",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498783350896,
+   "handle": "wedding-weave-walls-prx-79090",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Light Brown, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Textured, Traditional, Wallcovering, Woven",
+   "sampleVariantId": 13940792066160,
+   "sampleSku": "PRX-79090-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498783580272,
+   "handle": "wedding-weave-walls-prx-79091",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940797571184,
+   "sampleSku": "PRX-79091-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498783842416,
+   "handle": "wedding-weave-walls-prx-79092",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Stripe, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940801798256,
+   "sampleSku": "PRX-79092-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498784104560,
+   "handle": "wedding-weave-walls-prx-79093",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Bone, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940805435504,
+   "sampleSku": "PRX-79093-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498784301168,
+   "handle": "wedding-weave-walls-prx-79094",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Textured, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940811300976,
+   "sampleSku": "PRX-79094-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498784596080,
+   "handle": "wedding-weave-walls-prx-79095",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Stripe, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940814512240,
+   "sampleSku": "PRX-79095-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498784825456,
+   "handle": "wedding-weave-walls-prx-79096",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Wallcovering, Weave",
+   "sampleVariantId": 13940818018416,
+   "sampleSku": "PRX-79096-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498785087600,
+   "handle": "wedding-weave-walls-prx-79097",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Grasscloth, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940823982192,
+   "sampleSku": "PRX-79097-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498785349744,
+   "handle": "wedding-weave-walls-prx-79098",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940827291760,
+   "sampleSku": "PRX-79098-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498785513584,
+   "handle": "wedding-weave-walls-prx-79099",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Brown, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave",
+   "sampleVariantId": 13940834959472,
+   "sampleSku": "PRX-79099-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498794197104,
+   "handle": "wendy-wool-walls-prx-79137",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Dark Brown, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Texture, Textured, Traditional, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941004206192,
+   "sampleSku": "PRX-79137-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498794426480,
+   "handle": "wendy-wool-walls-prx-79138",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Blue-gray, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Textured, Traditional, Transitional, Wallcovering, Wendy Wool, Wool",
+   "sampleVariantId": 13941011120240,
+   "sampleSku": "PRX-79138-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498794655856,
+   "handle": "wendy-wool-walls-prx-79139",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Tan, Textured, Traditional, Wallcovering, Wendy Wool, Wool",
+   "sampleVariantId": 13941011906672,
+   "sampleSku": "PRX-79139-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498794852464,
+   "handle": "wendy-wool-walls-prx-79140",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Tan, Textured, Traditional, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941018067056,
+   "sampleSku": "PRX-79140-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498795049072,
+   "handle": "wendy-wool-walls-prx-79141",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Textured, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941023801456,
+   "sampleSku": "PRX-79141-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498795278448,
+   "handle": "wendy-wool-walls-prx-79142",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Taupe, Textured, Traditional, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941028421744,
+   "sampleSku": "PRX-79142-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498795442288,
+   "handle": "wendy-wool-walls-prx-79143",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Red, Showroom Line, Textured, Traditional, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941031567472,
+   "sampleSku": "PRX-79143-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498795704432,
+   "handle": "wendy-wool-walls-prx-79144",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Gray, display_variant, Eggshell, Fabric, Gray, Naturals, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Textured, Wallcovering, Wool, Woven",
+   "sampleVariantId": 13941034811504,
+   "sampleSku": "PRX-79144-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498795933808,
+   "handle": "wendy-wool-walls-prx-79145",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gold, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Textured, Traditional, Wallcovering, Wool, Woven, Yellow",
+   "sampleVariantId": 13941041201264,
+   "sampleSku": "PRX-79145-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498796097648,
+   "handle": "wendy-wool-walls-prx-79146",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Solid, Textured, Wallcovering, Wool",
+   "sampleVariantId": 13941045624944,
+   "sampleSku": "PRX-79146-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792269951027,
+   "handle": "west-indian-lily-canyon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Bone, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, display_variant, Embossed, Fabric, Farmhouse, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic, Paisley, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Scroll, Scroll Design, Showroom Line, Sustainable, Taupe, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090175651891,
+   "sampleSku": "DWPR-427839",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792270016563,
+   "handle": "west-indian-lily-cinnamon",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contract Grade, dark brown, display_variant, Embossed, Executive Office, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Leather, Leather Look, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Scroll, Scroll Design, Showroom Line, Southwestern, Sustainable, Textured, Tooled, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm, Western, Western Flower",
+   "sampleVariantId": 44090175881267,
+   "sampleSku": "DWPR-427840",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792270082099,
+   "handle": "west-indian-lily-dull-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, dark brown, Detailed Embossing, display_variant, Embossed, Espresso, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Residential, Rustic, Scroll, Scroll Design, Showroom Line, Southwestern, Sustainable, Textured, Traditional, Upholstery, Vine, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090175946803,
+   "sampleSku": "DWPR-427841",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792270147635,
+   "handle": "west-indian-lily-dull-rich-brown",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contract Grade, Dark, Dark Brown, display_variant, Embossed, Embossed Texture, Espresso, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Red, Rustic, Scroll, Scroll Design, Showroom Line, Sustainable, Textured, Traditional, Upholstery, Victorian, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090176372787,
+   "sampleSku": "DWPR-427842",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792270180403,
+   "handle": "west-indian-lily-espresso",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#3B2B21, #4A372A, #564131, #634A38, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark, dark brown, display_variant, Embossed, Executive Office, Fabric, Farmhouse, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Lodge, Medium Brown, Needs-Price, NFPA 260 Compliant, Office, Organic, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Scroll, Scroll Design, Showroom Line, Sustainable, Textured, Tooled Leather Look, Traditional, Umber, Upholstery, Victorian, Vine, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090176405555,
+   "sampleSku": "DWPN-101930",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792270245939,
+   "handle": "west-indian-lily-gorge",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#B3A392, #E5D8C7, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Beige, Bleach Cleanable, Bone, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contract Grade, display_variant, Embossed, Embossed Texture, Fabric, Farmhouse, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Hallway, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Light Beige, Light Brown, Living Room, Needs-Price, Neutral Tones, NFPA 260 Compliant, Organic, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Scroll, Scroll Design, Showroom Line, Soft, Sustainable, Tan, Taupe, Textured, Traditional, Upholstery, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090176831539,
+   "sampleSku": "DWPN-101931",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792270344243,
+   "handle": "west-indian-lily-graphite",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#29231F, #4A4540, #8A857F, #A6A19B, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Charcoal, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, Dark Tones, display_variant, Ebony, Embossed, Executive Office, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Gray, Green Building, Grey, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Industrial, Intricate Detail, LEED Compatible, Living Room, Lodge, Needs-Price, NFPA 260 Compliant, Office, Organic, Performance, Performance Fabric, Pewter, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Scroll, Scroll Design, Shadow, Showroom Line, Sustainable, Taupe, Textured, Traditional, Upholstery, Victorian, Vine, Vinyl, Wallcovering, Western Flower",
+   "sampleVariantId": 44090177454131,
+   "sampleSku": "DWPN-101932",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7792270377011,
+   "handle": "west-indian-lily-peanut-brittle",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bleach Cleanable, Brown, Burnt Sienna, CA TB 117 Compliant, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Hallway, Honey, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Mediterranean, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Orange, Organic, Pattern, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Residential, Rustic, Scroll, Scroll Design, Showroom Line, Southwestern, Sustainable, Tan, Textured, Tooled Leather Look, Traditional, Upholstery, Vinyl, Wallcovering, Warm, Western, Western Flower",
+   "sampleVariantId": 44090177486899,
+   "sampleSku": "DWPR-427846",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792270409779,
+   "handle": "embossed-floral-scroll-rustic-sienna",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, display_variant, Embossed, Fabric, Faux Leather, Floral, Floral Pattern, FR Additives Free, Green Building, Healthcare, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, Leather Look, LEED Compatible, Living Room, Needs-Image, Needs-Price, Needs-Width, NFPA 260 Compliant, Office, Organic, Performance, Performance Fabric, PFAS-Free, Phillipe Romano, Phthalate-Free, Polyester Blend, Rustic, Rustic Look, Scroll, Scroll Design, Showroom Line, Southwestern, Sustainable, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Warm, Western Flower",
+   "sampleVariantId": 44090177519667,
+   "sampleSku": "DWPR-427847",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7792842768435,
+   "handle": "west-indian-lily-rawhide-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "#462E22, #664532, #855D45, AI-Analyzed-v2, Antimicrobial-Free, Architectural, Bedroom, Bleach Cleanable, Brown, CA TB 117 Compliant, Chocolate Brown, Class A Fire Rated, Commercial, Contemporary, Contract Grade, Dark Brown, display_variant, Earth Tones, Fabric, Farmhouse, Faux Leather, Floral, FR Additives Free, Green Building, Hospitality, IMO 8.2 & 8.3 Certified, IMO Marine Grade, LEED Compatible, Living Room, Needs-Price, NFPA 260 Compliant, Office, Organic, Performance Fabric, PFAS-Free, Philippe Romano Fabrics, Phillipe Romano, Phthalate-Free, Pointe International, Polyester Blend, Rustic, Showroom Line, Southwestern, Sustainable, Tan, Textured, Traditional, Umber, Upholstery, Vinyl, Wallcovering, Walnut, Warm, Western Flower",
+   "sampleVariantId": 44092657991731,
+   "sampleSku": "DWPN-101934",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 1498788102256,
+   "handle": "whisper-weave-walls-prx-79110",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940882079856,
+   "sampleSku": "PRX-79110-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498788429936,
+   "handle": "whisper-weave-walls-prx-79111",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Lattice, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, White, Woven",
+   "sampleVariantId": 13940888502384,
+   "sampleSku": "PRX-79111-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498788659312,
+   "handle": "whisper-weave-walls-prx-79112",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940893319280,
+   "sampleSku": "PRX-79112-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498788823152,
+   "handle": "whisper-weave-walls-prx-79113",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Solid, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940895252592,
+   "sampleSku": "PRX-79113-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498789019760,
+   "handle": "whisper-weave-walls-prx-79114",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Eggshell, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940897579120,
+   "sampleSku": "PRX-79114-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498789249136,
+   "handle": "whisper-weave-walls-prx-79115",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940907704432,
+   "sampleSku": "PRX-79115-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498789445744,
+   "handle": "whisper-weave-walls-prx-79116",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940910948464,
+   "sampleSku": "PRX-79116-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498789642352,
+   "handle": "whitney-weave-walls-prx-79117",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940911800432,
+   "sampleSku": "PRX-79117-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498789937264,
+   "handle": "whitney-weave-walls-prx-79118",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Auburn, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940922318960,
+   "sampleSku": "PRX-79118-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498790133872,
+   "handle": "whitney-weave-walls-prx-79119",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940925235312,
+   "sampleSku": "PRX-79119-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498790264944,
+   "handle": "whitney-weave-walls-prx-79120",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Traditional, Viscose, Wallcovering, Weave, White, Whitney Weave",
+   "sampleVariantId": 13940925497456,
+   "sampleSku": "PRX-79120-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498790527088,
+   "handle": "whitney-weave-walls-prx-79121",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Traditional, Viscose, Wallcovering, Weave, White, Whitney Weave",
+   "sampleVariantId": 13940929167472,
+   "sampleSku": "PRX-79121-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498790789232,
+   "handle": "whitney-weave-walls-prx-79122",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, White, Whitney Weave",
+   "sampleVariantId": 13940937916528,
+   "sampleSku": "PRX-79122-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498790953072,
+   "handle": "whitney-weave-walls-prx-79123",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Viscose, Wallcovering, Walnut, Weave, White, Whitney Weave",
+   "sampleVariantId": 13940942700656,
+   "sampleSku": "PRX-79123-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498791379056,
+   "handle": "whitney-weave-walls-prx-79125",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cream, display_variant, Fabric, Gray, Light Gray, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Whitney Weave",
+   "sampleVariantId": 13940949811312,
+   "sampleSku": "PRX-79125-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498791772272,
+   "handle": "whitney-weave-walls-prx-79126",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Blue, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gray, Light Blue, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Traditional, Viscose, Wallcovering, Weave, Whitney Weave",
+   "sampleVariantId": 13940955414640,
+   "sampleSku": "PRX-79126-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498799210608,
+   "handle": "william-weave-walls-prx-79160",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, White, William Weave",
+   "sampleVariantId": 13941103591536,
+   "sampleSku": "PRX-79160-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498799374448,
+   "handle": "william-weave-walls-prx-79161",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Light Beige, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, William Weave",
+   "sampleVariantId": 13941108179056,
+   "sampleSku": "PRX-79161-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498799571056,
+   "handle": "william-weave-walls-prx-79162",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Gray, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Silver, Stripe, Textured, Vinyl, Viscose, Wallcovering, Weave, White, William Weave",
+   "sampleVariantId": 13941111160944,
+   "sampleSku": "PRX-79162-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498799800432,
+   "handle": "william-weave-walls-prx-79163",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Light Gray, Linen, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, White, William Weave",
+   "sampleVariantId": 13941112963184,
+   "sampleSku": "PRX-79163-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498799964272,
+   "handle": "william-weave-walls-prx-79164",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Light Beige, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-white, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, William Weave",
+   "sampleVariantId": 13941120237680,
+   "sampleSku": "PRX-79164-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498800390256,
+   "handle": "william-weave-walls-prx-79166",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Light Gray, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, White, William Weave",
+   "sampleVariantId": 13941123285104,
+   "sampleSku": "PRX-79166-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498800685168,
+   "handle": "william-weave-walls-prx-79167",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Grasscloth, Light Brown, Minimalist, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, White, William Weave",
+   "sampleVariantId": 13941127282800,
+   "sampleSku": "PRX-79167-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498800914544,
+   "handle": "william-weave-walls-prx-79168",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Bone, Charcoal, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Smoke, Stripe, Textured, Viscose, Wallcovering, Walnut, Weave, William Weave",
+   "sampleVariantId": 13941137637488,
+   "sampleSku": "PRX-79168-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500050587760,
+   "handle": "william-white-dry-erase-only-xje-53789",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, LEED, Leed Walls, Minimalist, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Naturals, Showroom Line, Solid, Wallcovering, White, William White Dry Erase Only",
+   "sampleVariantId": 13959562788976,
+   "sampleSku": "XJE-53789-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498779385968,
+   "handle": "wisteria-weave-prx-79066",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940718174320,
+   "sampleSku": "PRX-79066-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498779582576,
+   "handle": "wisteria-weave-prx-79067",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940723712112,
+   "sampleSku": "PRX-79067-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498779746416,
+   "handle": "wisteria-weave-prx-79068",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, White",
+   "sampleVariantId": 13940724138096,
+   "sampleSku": "PRX-79068-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780008560,
+   "handle": "wisteria-weave-prx-79069",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Fabric, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940732690544,
+   "sampleSku": "PRX-79069-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780205168,
+   "handle": "wisteria-weave-prx-79070",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Eggshell, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940732985456,
+   "sampleSku": "PRX-79070-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780369008,
+   "handle": "wisteria-weave-prx-79071",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Tan, Textured, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13940737671280,
+   "sampleSku": "PRX-79071-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498780598384,
+   "handle": "wisteria-weave-prx-79072",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Fabric, Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Polyester, Showroom Line, Stripe, Textured, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13940742750320,
+   "sampleSku": "PRX-79072-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498796294256,
+   "handle": "wonder-weave-walls-prx-79147",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Stripe, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13941047328880,
+   "sampleSku": "PRX-79147-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498796523632,
+   "handle": "wonder-weave-walls-prx-79148",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Off-White, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13941050245232,
+   "sampleSku": "PRX-79148-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498796753008,
+   "handle": "wonder-weave-walls-prx-79149",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White",
+   "sampleVariantId": 13941059059824,
+   "sampleSku": "PRX-79149-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498797015152,
+   "handle": "wonder-weave-walls-prx-79150",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, Cream, display_variant, Fabric, Linen, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13941063155824,
+   "sampleSku": "PRX-79150-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498797211760,
+   "handle": "wonder-weave-walls-prx-79151",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13941063909488,
+   "sampleSku": "PRX-79151-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498797473904,
+   "handle": "wonder-weave-walls-prx-79152",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Ecru, Fabric, Light Gray, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Silver, Textured, Viscose, Wallcovering, Weave, Woven",
+   "sampleVariantId": 13941068136560,
+   "sampleSku": "PRX-79152-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1498797637744,
+   "handle": "wonder-weave-walls-prx-79153",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Cotton, display_variant, Fabric, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 4, Showroom Line, Textured, Viscose, Wallcovering, Weave, White, Woven",
+   "sampleVariantId": 13941078622320,
+   "sampleSku": "PRX-79153-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502363189360,
+   "handle": "yakatore-prt-74245",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cream, display_variant, Fabric, Gray, Linen, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Wallcovering, White",
+   "sampleVariantId": 13987383836784,
+   "sampleSku": "PRT-74245-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502363418736,
+   "handle": "yakatore-prt-74246",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Traditional, Wallcovering, Yakatore",
+   "sampleVariantId": 13987387965552,
+   "sampleSku": "PRT-74246-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502363680880,
+   "handle": "yakatore-prt-74247",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987391340656,
+   "sampleSku": "PRT-74247-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502363910256,
+   "handle": "yakatore-prt-74248",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987396780144,
+   "sampleSku": "PRT-74248-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502367154288,
+   "handle": "yakatore-prt-74249",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, display_variant, Fabric, Light Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987463430256,
+   "sampleSku": "PRT-74249-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502367350896,
+   "handle": "yakatore-prt-74250",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Coffee, Commercial, display_variant, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987469295728,
+   "sampleSku": "PRT-74250-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502367580272,
+   "handle": "yakatore-prt-74251",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Silver, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987469787248,
+   "sampleSku": "PRT-74251-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502367744112,
+   "handle": "yakatore-prt-74252",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bronze, Class A Fire Rated, Commercial, display_variant, Fabric, Gold, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Tan, Textured, Traditional, Wallcovering",
+   "sampleVariantId": 13987475619952,
+   "sampleSku": "PRT-74252-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1502368039024,
+   "handle": "yakatore-prt-74253",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display_variant, Eggshell, Fabric, Gray, Natural, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Phillipe Romano Textures Vol. 5, Showroom Line, Texture, Textured, Wallcovering",
+   "sampleVariantId": 13987479388272,
+   "sampleSku": "PRT-74253-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500762734704,
+   "handle": "yamada-bay-durable-vinyl-xlq-34555",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968046653552,
+   "sampleSku": "XLQ-34555-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500764045424,
+   "handle": "yamada-bay-durable-vinyl-xlq-34557",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brown, Class A Fire Rated, Coffee, Commercial, Commercial Wallcovering, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sepia, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968058187888,
+   "sampleSku": "XLQ-34557-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500764635248,
+   "handle": "yamada-bay-durable-vinyl-xlq-34558",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968063856752,
+   "sampleSku": "XLQ-34558-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500765028464,
+   "handle": "yamada-bay-durable-vinyl-xlq-34559",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968064512112,
+   "sampleSku": "XLQ-34559-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500765454448,
+   "handle": "yamada-bay-durable-vinyl-xlq-34560",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Gray, display_variant, Fabric, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968066379888,
+   "sampleSku": "XLQ-34560-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500765847664,
+   "handle": "yamada-bay-durable-vinyl-xlq-34561",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Yamada Bay Durable Vinyl",
+   "sampleVariantId": 13968075849840,
+   "sampleSku": "XLQ-34561-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500348022896,
+   "handle": "yobetsu-durable-vinyl-xpd-33566",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Fabric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Vinyl, Vinyls, Wallcovering, Yobetsu Durable Vinyl",
+   "sampleVariantId": 13963645091952,
+   "sampleSku": "XPD-33566-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500348448880,
+   "handle": "yobetsu-durable-vinyl-xpd-33567",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Transitional, Vinyl, Vinyls, Wallcovering, White, Yobetsu Durable Vinyl",
+   "sampleVariantId": 13963646566512,
+   "sampleSku": "XPD-33567-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500348973168,
+   "handle": "yobetsu-durable-vinyl-xpd-33568",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gold, Grasscloth, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Transitional, Vinyl, Vinyls, Wallcovering, Yobetsu Durable Vinyl",
+   "sampleVariantId": 13963650531440,
+   "sampleSku": "XPD-33568-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500349890672,
+   "handle": "yobetsu-durable-vinyl-xpd-33570",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Gold, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Vinyl, Vinyls, Wallcovering, Yobetsu Durable Vinyl",
+   "sampleVariantId": 13963661803632,
+   "sampleSku": "XPD-33570-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500350283888,
+   "handle": "yobetsu-durable-vinyl-xpd-33571",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963662360688,
+   "sampleSku": "XPD-33571-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500350775408,
+   "handle": "yobetsu-durable-vinyl-xpd-33572",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gray, Green, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Sage, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963665604720,
+   "sampleSku": "XPD-33572-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500351496304,
+   "handle": "yobetsu-durable-vinyl-xpd-33574",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gold, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type I Durable Commercial and Residential - Cleanable & Affordable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13963673108592,
+   "sampleSku": "XPD-33574-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500543058032,
+   "handle": "yoichi-durable-vinyl-xrf-34025",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965720223856,
+   "sampleSku": "XRF-34025-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500543189104,
+   "handle": "yoichi-durable-vinyl-xrf-34026",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965728579696,
+   "sampleSku": "XRF-34026-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500543352944,
+   "handle": "yoichi-durable-vinyl-xrf-34027",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965729923184,
+   "sampleSku": "XRF-34027-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500543615088,
+   "handle": "yoichi-durable-vinyl-xrf-34028",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965733167216,
+   "sampleSku": "XRF-34028-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500544172144,
+   "handle": "yoichi-durable-vinyl-xrf-34029",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965737525360,
+   "sampleSku": "XRF-34029-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500544860272,
+   "handle": "yoichi-durable-vinyl-xrf-34031",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965745422448,
+   "sampleSku": "XRF-34031-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500545581168,
+   "handle": "yoichi-durable-vinyl-xrf-34033",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13965753090160,
+   "sampleSku": "XRF-34033-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500545941616,
+   "handle": "yoichi-durable-vinyl-xrf-34034",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965757087856,
+   "sampleSku": "XRF-34034-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500546203760,
+   "handle": "yoichi-durable-vinyl-xrf-34035",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gold, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965762166896,
+   "sampleSku": "XRF-34035-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500546498672,
+   "handle": "yoichi-durable-vinyl-xrf-34036",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Light Brown, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965763936368,
+   "sampleSku": "XRF-34036-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500546793584,
+   "handle": "yoichi-durable-vinyl-xrf-34037",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965766623344,
+   "sampleSku": "XRF-34037-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500547711088,
+   "handle": "yoichi-durable-vinyl-xrf-34040",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Geometric, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965780385904,
+   "sampleSku": "XRF-34040-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500548268144,
+   "handle": "yoichi-durable-vinyl-xrf-34041",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Gold, Lattice, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965781696624,
+   "sampleSku": "XRF-34041-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500548628592,
+   "handle": "yoichi-durable-vinyl-xrf-34042",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Lattice, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965792641136,
+   "sampleSku": "XRF-34042-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500548857968,
+   "handle": "yoichi-durable-vinyl-xrf-34043",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, White, Woven",
+   "sampleVariantId": 13965797425264,
+   "sampleSku": "XRF-34043-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500554690672,
+   "handle": "yoichi-durable-vinyl-xrf-34045",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965874266224,
+   "sampleSku": "XRF-34045-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500555051120,
+   "handle": "yoichi-durable-vinyl-xrf-34046",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "100% Vinyl, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Lattice, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering, Woven",
+   "sampleVariantId": 13965882687600,
+   "sampleSku": "XRF-34046-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500622880880,
+   "handle": "yokohama-durable-vinyl-xwa-34259",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Ecru, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Taupe, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966680752240,
+   "sampleSku": "XWA-34259-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500623077488,
+   "handle": "yokohama-durable-vinyl-xwa-34260",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966681079920,
+   "sampleSku": "XWA-34260-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500623274096,
+   "handle": "yokohama-durable-vinyl-xwa-34261",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966688878704,
+   "sampleSku": "XWA-34261-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500623896688,
+   "handle": "yokohama-durable-vinyl-xwa-34263",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Solid, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966694809712,
+   "sampleSku": "XWA-34263-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500624224368,
+   "handle": "yokohama-durable-vinyl-xwa-34264",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966697726064,
+   "sampleSku": "XWA-34264-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500624683120,
+   "handle": "yokohama-durable-vinyl-xwa-34265",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966702542960,
+   "sampleSku": "XWA-34265-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500624945264,
+   "handle": "yokohama-durable-vinyl-xwa-34266",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Red, Showroom Line, Textured, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966708179056,
+   "sampleSku": "XWA-34266-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500625207408,
+   "handle": "yokohama-durable-vinyl-xwa-34267",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966714601584,
+   "sampleSku": "XWA-34267-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500625404016,
+   "handle": "yokohama-durable-vinyl-xwa-34268",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Needs-Image, Needs-Price, Needs-Width, Orange, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Solid, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966714994800,
+   "sampleSku": "XWA-34268-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500625961072,
+   "handle": "yokohama-durable-vinyl-xwa-34270",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Brown, display_variant, Linen, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2 Durable Commercial and Residential - Cleanable, Vinyl, Vinyls, Wallcovering",
+   "sampleVariantId": 13966721024112,
+   "sampleSku": "XWA-34270-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500505309296,
+   "handle": "yoron-real-sisal-textile-txt-33908",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Bone, Coastal, Commercial, Contemporary, display_variant, Grasscloth, Gray, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Sisal, Texture, Textured, Wallcovering, White, Woven",
+   "sampleVariantId": 13965247676528,
+   "sampleSku": "TXT-33908-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500505702512,
+   "handle": "yoron-real-sisal-textile-txt-33909",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Blue, Coastal, Commercial, display_variant, Grasscloth, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Showroom Line, Silver, Sisal, Slate, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965254459504,
+   "sampleSku": "TXT-33909-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500506128496,
+   "handle": "yoron-real-sisal-textile-txt-33910",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Commercial, Contemporary, display_variant, Grasscloth, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Sisal, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965259047024,
+   "sampleSku": "TXT-33910-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500506521712,
+   "handle": "yoron-real-sisal-textile-txt-33911",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Bone, Burgundy, Commercial, display_variant, Grasscloth, Lattice, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Red, Rustic, Showroom Line, Silver, Sisal, Texture, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965263208560,
+   "sampleSku": "TXT-33911-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500507242608,
+   "handle": "yoron-real-sisal-textile-txt-33913",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "47% Sistal/43% Paper/10% Rayon, Architectural, Beige, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Gray, Natural, Natural Textile Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Naturals, Rustic, Sand, Showroom Line, Sisal, Textured, Wallcovering, Woven",
+   "sampleVariantId": 13965273268336,
+   "sampleSku": "TXT-33913-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500243132528,
+   "handle": "yuni-durable-vinyl-xoj-33441",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Grasscloth, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Silver, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962435723376,
+   "sampleSku": "XOJ-33441-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500243656816,
+   "handle": "yuni-durable-vinyl-xoj-33442",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Light Brown, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962441326704,
+   "sampleSku": "XOJ-33442-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500245098608,
+   "handle": "yuni-durable-vinyl-xoj-33443",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Fabric, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Tan, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962455023728,
+   "sampleSku": "XOJ-33443-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500246376560,
+   "handle": "yuni-durable-vinyl-xoj-33444",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Transitional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962469146736,
+   "sampleSku": "XOJ-33444-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500247457904,
+   "handle": "yuni-durable-vinyl-xoj-33445",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Fabric, Gray, Light Gray, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962478846064,
+   "sampleSku": "XOJ-33445-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500248801392,
+   "handle": "yuni-durable-vinyl-xoj-33446",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display_variant, Eggshell, Fabric, Gray, Light Gray, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962491035760,
+   "sampleSku": "XOJ-33446-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500250112112,
+   "handle": "yuni-durable-vinyl-xoj-33447",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Brown, Class A Fire Rated, Commercial, Commercial Wallcovering, display_variant, Eggshell, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962504831088,
+   "sampleSku": "XOJ-33447-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 1500251062384,
+   "handle": "yuni-durable-vinyl-xoj-33448",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Black, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Dark Olive Green, display_variant, Gold, Grasscloth, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Essential Textures, Phillipe Romano Vinyls, Showroom Line, Textured, Traditional, Type 2, Type 2 Durable Commercial and Residential - Cleanable, Type 2 Durable Vinyl, Vinyl, Vinyls, Wallcovering, Yuni Durable Vinyl",
+   "sampleVariantId": 13962518495344,
+   "sampleSku": "XOJ-33448-sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7691519426611,
+   "handle": "marburg-loft-superior-wallcovering",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, geometric, Gray, Grey, hexagon, Industrial, Light Gray, Living Room, loft-superior, marburg, Marburg Loft Superior Wallcovering, Minimalist, modern, Needs-Price, Needs-Width, Non-woven, Office, Organic Modern, Serene, Showroom Line, Silver, Textured, Tile, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White, Zen",
+   "sampleVariantId": 43693989724211,
+   "sampleSku": "DWWC-500990-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7691522998323,
+   "handle": "marburg-loft-superior-wallcovering-1",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, brick, Brown, Charcoal, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hotel Lobby, industrial, Living Room, Loft Superior Wallcovering, loft-superior, marburg, modern, Moody, Mustard Yellow, Needs-Price, Needs-Width, Office, Paper, Pattern, Purple Gray, Rustic, Showroom Line, Solid, Taupe, textured, Trending Wallcovering Collection 2025, Urban Loft, Wallcovering, Yellow",
+   "sampleVariantId": 43694038941747,
+   "sampleSku": "DWWC-501000-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7691512414259,
+   "handle": "marburg-memento-wallcovering",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Animal Print, Animal Skin, Animal/Insects, Architectural, Bedroom, Brown, Burnt Sienna, Class A Fire Rated, Commercial, Contemporary, Dark Green, decor wallcovering, Dining Room, display_variant, Eclectic, Ecru, Energetic, Gold, Living Room, marburg, material-group-grasscloth, Maximalist, memento, Memento Wallcovering, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Paper, Showroom Line, Tan, Teal, Tiger, Trending Wallcovering Collection 2025, Tropical, wallcovering",
+   "sampleVariantId": 43693786333235,
+   "sampleSku": "DWWC-500960-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7691514576947,
+   "handle": "marburg-memento-wallcovering-2",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Blue, Charcoal, Chevron, Chocolate, Class A Fire Rated, Commercial, Contemporary, Dark Brown, Dark Gray, decor wallcovering, display_variant, Geometric, Gold, Gray, Hallway, Light Brown, Living Room, marburg, memento, Memento Chevron Wallcovering, Modern, Needs-Price, Needs-Width, Non-woven, Showroom Line, Silver, Solid, Sophisticated, Trending Wallcovering Collection 2025, Unknown, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43693868843059,
+   "sampleSku": "DWWC-500980-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7691512741939,
+   "handle": "marburg-memento-wallcovering-1",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal Print, Animal Skin, Animal/Insects, Architectural, Bedroom, Beige, Charcoal Grey, Chinoiserie, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Eclectic, Light Brown, Living Room, marburg, memento, Memento Tiger Print Wallcovering, Modern, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Office, Paper, Playful, Showroom Line, Silver, Tan, Tiger, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43693793804339,
+   "sampleSku": "DWWC-500970-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692042960947,
+   "handle": "marburg-papis-loveday-wallcovering-6",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, art-deco, Bedroom, Charcoal, Class A Fire Rated, color:Anthracite, Commercial, contemporary, Dark Gray, decor wallcovering, Dining Room, display_variant, geometric, Grey, Light Gray, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Smoke, Sophisticated, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696259301427,
+   "sampleSku": "DWWC-501580-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692058558515,
+   "handle": "marburg-papis-loveday-wallcovering-28",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, Art Deco, Bedroom, Bird, Champagne, Class A Fire Rated, color:Anthracite / Gold, Commercial, contemporary, Dark Gray, decor wallcovering, display_variant, geometric, Glamorous, Green, Hotel Lobby, Lattice, Light Gray, Living Room, Luxe, marburg, Metallic, minimalist, modern, Needs-Price, Needs-Width, Non-woven, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Sophisticated, Teal, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696286302259,
+   "sampleSku": "DWWC-501800-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042698803,
+   "handle": "marburg-papis-loveday-wallcovering-3",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, color:Beige, Commercial, Contemporary, Cream, decor wallcovering, display_variant, geometric, Hallway, Light Beige, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Texture, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696257892403,
+   "sampleSku": "DWWC-501540-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061409331,
+   "handle": "marburg-papis-loveday-wallcovering-35",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Beige, Class A Fire Rated, color:Beige, Commercial, contemporary, decor wallcovering, display_variant, geometric, Grey, Light Gray, Lion, Living Room, marburg, Minimalist, modern, Needs-Price, Needs-Width, Non-woven, Office, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Taupe, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696297377843,
+   "sampleSku": "DWWC-501870-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061573171,
+   "handle": "marburg-papis-loveday-wallcovering-39",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Beige, Commercial, contemporary, decor wallcovering, display_variant, Gold, Hallway, Light Beige, Living Room, marburg, minimalist, Needs-Price, Needs-Width, Organic Modern, Pale Beige, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Solid, Tan, textured, Traditional, Trending Wallcovering Collection 2025, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 43696297705523,
+   "sampleSku": "DWWC-501910-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692048334899,
+   "handle": "marburg-papis-loveday-wallcovering-16",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, color:Beige / Pearl, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Dusty Rose, leaf, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Pattern, Pink, Primary Suite, Serene, Showroom Line, Silver, Textured, Transitional, Trending Wallcovering Collection 2025, tropical, wallcovering, Yellow",
+   "sampleVariantId": 43696272080947,
+   "sampleSku": "DWWC-501680-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042797107,
+   "handle": "marburg-papis-loveday-wallcovering-4",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Beige / Platin, Commercial, contemporary, decor wallcovering, display_variant, geometric, Grey, Light Grey, Living Room, marburg, material-group-natural-fiber, minimalist, modern, Needs-Price, Needs-Width, Non-woven, Off-white, Office, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Silver-grey, Sophisticated, textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696258318387,
+   "sampleSku": "DWWC-501560-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692057772083,
+   "handle": "marburg-papis-loveday-wallcovering-23",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Beige / Red Natural, Commercial, Contemporary, decor wallcovering, Dining Room, display_variant, Grasscloth, linen, Living Room, marburg, Minimalist, Natural Wallcovering, Needs-Price, Needs-Width, Olive Green, Orange, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Peach, Showroom Line, Solid, textured, Trending Wallcovering Collection 2025, wallcovering, Warm",
+   "sampleVariantId": 43696285515827,
+   "sampleSku": "DWWC-501750-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061835315,
+   "handle": "marburg-papis-loveday-wallcovering-44",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Beige / Red, Commercial, contemporary, decor wallcovering, display_variant, Eggshell, geometric, Hallway, Light Pink, Living Room, marburg, Minimalist, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Pattern, Serene, Showroom Line, Tan, textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696298197043,
+   "sampleSku": "DWWC-501960-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061966387,
+   "handle": "marburg-papis-loveday-wallcovering-47",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, bedroom, Beige, Class A Fire Rated, color:Beige / Red, Commercial, Contemporary, decor wallcovering, display_variant, Dusty Rose, Hallway, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-woven, nursery, Organic Modern, pale-pink, Paper, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Solid, subtle-texture, Taupe, Texture, textured, Trending Wallcovering Collection 2025, Wallcovering",
+   "sampleVariantId": 43696298459187,
+   "sampleSku": "DWWC-501990-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692062097459,
+   "handle": "marburg-papis-loveday-wallcovering-49",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, Champagne, Class A Fire Rated, color:Beige / Red, Commercial, Contemporary, Copper, decor wallcovering, display_variant, Hotel Lobby, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Pattern, Sand, Showroom Line, Sophisticated, Tan, Taupe, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696298623027,
+   "sampleSku": "DWWC-502010-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692064129075,
+   "handle": "marburg-papis-loveday-wallcovering-53",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Amber, Architectural, Art Deco, Bedroom, Beige, Champagne, Class A Fire Rated, color:Beige / Red, Commercial, decor wallcovering, Dining Room, display_variant, Eggshell, Fan, glamorous, Light Peach, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Non-woven, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Pattern, Peach, rose-gold, Showroom Line, Sophisticated, Taupe, textured, Trending Wallcovering Collection 2025, tropical, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696306159667,
+   "sampleSku": "DWWC-502050-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692047450163,
+   "handle": "marburg-papis-loveday-wallcovering-11",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Black, Charcoal Gray, Class A Fire Rated, color:Black Natural, Commercial, Contemporary, decor wallcovering, Dining Room, display_variant, Estimated Type: Vinyl, Gold, grasscloth, Gray, Grey, Living Room, marburg, Minimalist, modern, Moody, Natural Wallcovering, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Solid, Sophisticated, textured, Trending Wallcovering Collection 2025, wallcovering, White, Yellow",
+   "sampleVariantId": 43696267690035,
+   "sampleSku": "DWWC-501630-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042633267,
+   "handle": "marburg-papis-loveday-wallcovering-1",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Black, Class A Fire Rated, color:Black, Commercial, contemporary, Dark Gray, decor wallcovering, Dining Room, display_variant, geometric, Gray, Grey, Light Gray, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Off-white, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Sophisticated, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696257826867,
+   "sampleSku": "DWWC-501520-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692058263603,
+   "handle": "marburg-papis-loveday-wallcovering-26",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Beige, Blue, Cerulean, Class A Fire Rated, color:Blue, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Insect, Light Blue, Light Grey, Living Room, marburg, Minimalist, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Pattern, Serene, Showroom Line, Silver, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696286007347,
+   "sampleSku": "DWWC-501780-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692058689587,
+   "handle": "marburg-papis-loveday-wallcovering-30",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Blue, Class A Fire Rated, color:Blue, Commercial, Contemporary, decor wallcovering, display_variant, Light Beige, Light Blue, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Office, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Powder Blue, serene, Showroom Line, Solid, subtle, Teal, Texture, textured, Trending Wallcovering Collection 2025, vertical-pattern, Wallcovering",
+   "sampleVariantId": 43696286433331,
+   "sampleSku": "DWWC-501820-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061638707,
+   "handle": "marburg-papis-loveday-wallcovering-41",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Class A Fire Rated, color:Blue / Grey, Commercial, Contemporary, decor wallcovering, Denim, Denim Blue, display_variant, Fabric, Golden Yellow, Hotel Lobby, Light Blue, Light Grey, Living Room, Luxe, marburg, Minimalist, Modern, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Solid, Texture, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696297967667,
+   "sampleSku": "DWWC-501930-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042666035,
+   "handle": "marburg-papis-loveday-wallcovering-2",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal/Insects, Architectural, Art Deco, Bedroom, Bird, Black, Botanical, Charcoal, Class A Fire Rated, color:Gold / Black, Commercial, Dark Gray, decor wallcovering, display_variant, Glamorous, Gold, Gray, Hotel Lobby, Leaf, Living Room, luxurious, marburg, Maximalist, Metallic, Metallic Foil, Needs-Price, Needs-Width, Non-woven, Palm, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Teal, textured, Trending Wallcovering Collection 2025, tropical, wallcovering, Yellow",
+   "sampleVariantId": 43696257859635,
+   "sampleSku": "DWWC-501530-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692044566579,
+   "handle": "marburg-papis-loveday-wallcovering-7",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Animal/Insects, Architectural, art-deco, Bedroom, Bird, Brown, Class A Fire Rated, color:Gold / Black, Commercial, contemporary, decor wallcovering, display_variant, Fabric, geometric, Glamorous, Hotel Lobby, Khaki, Living Room, Luxe, marburg, Maximalist, modern, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Sophisticated, Tan, Taupe, Teal, textured, Trending Wallcovering Collection 2025, Vinyl, Wallcovering",
+   "sampleVariantId": 43696261464115,
+   "sampleSku": "DWWC-501590-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692045058099,
+   "handle": "marburg-papis-loveday-wallcovering-9",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal/Insects, Architectural, Art Deco, Bedroom, Bird, Botanical, Charcoal, Class A Fire Rated, color:Gold / Gruen, Commercial, Dark Gray, decor wallcovering, display_variant, Emerald Green, Fabric, Glamorous, Gold, Green, Hotel Lobby, Living Room, Luxe, Luxurious, marburg, Maximalist, modern, Needs-Price, Needs-Width, Palm, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Teal, textured, Trending Wallcovering Collection 2025, tropical, Tropical Leaf, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696262971443,
+   "sampleSku": "DWWC-501610-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061507635,
+   "handle": "marburg-papis-loveday-wallcovering-37",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Animal, Architectural, Bedroom, Beige, Class A Fire Rated, color:Grau-Beige, Commercial, contemporary, decor wallcovering, display_variant, Hallway, Insects, Lavender Gray, Light Beige, Light Gray, Linen, Living Room, marburg, minimalist, Needs-Price, Needs-Width, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Solid, textured, Transitional, Trending Wallcovering Collection 2025, Vinyl, Wallcovering, White",
+   "sampleVariantId": 43696297639987,
+   "sampleSku": "DWWC-501890-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692062359603,
+   "handle": "marburg-papis-loveday-wallcovering-50",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal/Insects, Architectural, Bedroom, Beige, Biophilic, Bird, Charcoal, Class A Fire Rated, color:Grau-Beige / Pearl, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hallway, Leaf, Light Gray, Living Room, marburg, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Pattern, Serene, Showroom Line, textured, Trending Wallcovering Collection 2025, tropical, wallcovering, White",
+   "sampleVariantId": 43696299868211,
+   "sampleSku": "DWWC-502020-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042600499,
+   "handle": "marburg-papis-loveday-wallcovering",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Charcoal Gray, Class A Fire Rated, color:Grey, Commercial, contemporary, decor wallcovering, Dining Room, display_variant, geometric, Gold, Grey, Living Room, marburg, modern, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Sophisticated, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696257794099,
+   "sampleSku": "DWWC-501510-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692042928179,
+   "handle": "marburg-papis-loveday-wallcovering-5",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Grey / Silver, Commercial, contemporary, decor wallcovering, display_variant, geometric, Grey, Hallway, Light Grey, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Papis Loveday Wallcovering, papis-loveday, Pattern, Showroom Line, Silver, Sophisticated, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696259268659,
+   "sampleSku": "DWWC-501570-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692059541555,
+   "handle": "marburg-papis-loveday-wallcovering-33",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Grey / Silver, Commercial, Contemporary, decor wallcovering, display_variant, Grey, Hallway, Light Grey, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Pattern, Serene, Showroom Line, Silver, textured, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696288038963,
+   "sampleSku": "DWWC-501850-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692059050035,
+   "handle": "marburg-papis-loveday-wallcovering-32",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Gruen, Commercial, contemporary, decor wallcovering, display_variant, Grey, light-grey, Linen Texture, Living Room, marburg, minimalist, Needs-Price, Needs-Width, Non-woven, Office, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Solid, Texture, textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696286793779,
+   "sampleSku": "DWWC-501840-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061999155,
+   "handle": "marburg-papis-loveday-wallcovering-48",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Celadon, Class A Fire Rated, color:Gruen, Commercial, Contemporary, decor wallcovering, display_variant, Gold, Green, Hallway, Leaf, Light Beige, Light Blue, Light Green, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Organic Modern, Pale Green, Papis Loveday Wallcovering, papis-loveday, Pattern, Serene, Showroom Line, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696298491955,
+   "sampleSku": "DWWC-502000-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692047548467,
+   "handle": "marburg-papis-loveday-wallcovering-12",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Burnt Sienna, Class A Fire Rated, color:Orange / Red, Commercial, Contemporary, Dark Brown, decor wallcovering, Dining Room, display_variant, Living Room, marburg, minimalist, modern, Needs-Price, Needs-Width, Off-white, Orange, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Showroom Line, solid, Terracotta, Textured, Traditional, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Warm",
+   "sampleVariantId": 43696267788339,
+   "sampleSku": "DWWC-501640-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692062654515,
+   "handle": "marburg-papis-loveday-wallcovering-52",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Apricot, Architectural, Bedroom, Class A Fire Rated, color:Orange / Red, Commercial, Contemporary, Dark Brown, decor wallcovering, display_variant, earthy, Geometric, Hallway, Light Brown, Light Coral, Light Grey, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Orange, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Pattern, Scandinavian, Showroom Line, Tan, Terracotta, textured, Transitional, Trending Wallcovering Collection 2025, wallcovering, Warm, White",
+   "sampleVariantId": 43696302030899,
+   "sampleSku": "DWWC-502040-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692057280563,
+   "handle": "marburg-papis-loveday-wallcovering-22",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal, Architectural, Bedroom, Beige, Class A Fire Rated, color:Pearl / White, Commercial, contemporary, decor wallcovering, diamond-pattern, display_variant, geometric, Gray, Hallway, Insects, Living Room, marburg, minimalist, modern, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, textured, Trending Wallcovering Collection 2025, Vinyl, Wallcovering, White",
+   "sampleVariantId": 43696285024307,
+   "sampleSku": "DWWC-501740-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692048662579,
+   "handle": "marburg-papis-loveday-wallcovering-17",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:White, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Light Beige, Light Grey, Linen, Living Room, marburg, minimalist, modern, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, striped, Texture, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696272605235,
+   "sampleSku": "DWWC-501690-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692058918963,
+   "handle": "marburg-papis-loveday-wallcovering-31",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, classic, color:White, Commercial, Contemporary, decor wallcovering, display_variant, Light Beige, Living Room, marburg, minimalist, Needs-Price, Needs-Width, Off-white, Office, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, Wallcovering, White",
+   "sampleVariantId": 43696286662707,
+   "sampleSku": "DWWC-501830-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061605939,
+   "handle": "marburg-papis-loveday-wallcovering-40",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:White, Commercial, contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Beige, Living Room, marburg, minimalist, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Stucco, Texture, textured, Trending Wallcovering Collection 2025, Wallcovering, White",
+   "sampleVariantId": 43696297738291,
+   "sampleSku": "DWWC-501920-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072321075,
+   "handle": "marburg-papis-loveday-2-wallcovering-26",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Light Beige, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Office, Organic Modern, Paper, Papis Loveday 2 Wallcovering, papis-loveday-2, Serene, Showroom Line, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Wood Grain",
+   "sampleVariantId": 43696330702899,
+   "sampleSku": "DWWC-502320-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692071927859,
+   "handle": "marburg-papis-loveday-2-wallcovering-24",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, Contemporary, Cool, decor wallcovering, display_variant, Geometric, Hallway, Living Room, marburg, Midnight Blue, Minimalist, Needs-Price, Needs-Width, Paper, Papis Loveday Blue Stripe Wallcovering, papis-loveday-2, Royalblue, Sapphire Blue, Showroom Line, Solid, Steel, Stripe, Texture, Textured, Vinyl, wallcovering",
+   "sampleVariantId": 43696329031731,
+   "sampleSku": "DWWC-502300-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692071862323,
+   "handle": "marburg-papis-loveday-2-wallcovering-22",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Charcoal Gray, Class A Fire Rated, color:Anthracite / Grey, Commercial, Contemporary, decor wallcovering, Dining Room, display_variant, Fan, Geometric, Glamorous, Grey, Light Gray, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Silver, Sophisticated, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696328900659,
+   "sampleSku": "DWWC-502280-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072386611,
+   "handle": "marburg-papis-loveday-2-wallcovering-28",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Ash, Bedroom, Charcoal Gray, Class A Fire Rated, color:Anthracite / Grey, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hallway, Light Gray, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696330768435,
+   "sampleSku": "DWWC-502340-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692077105203,
+   "handle": "marburg-papis-loveday-2-wallcovering-58",
+   "vendor": "Marburg",
+   "tagsBefore": "35804, Abstract, Architectural, Bedroom, Beige, Brown, Charcoal, Class A Fire Rated, Commercial, Contemporary, Dark Academia, decor wallcovering, Dining Room, display_variant, Geometric, Gray, Grey, Living Room, marburg, Needs-Price, Needs-Width, Non-Woven, papis-loveday-2, Pattern, Showroom Line, Silver, Sophisticated, Taupe, Textured, Traditional, Transitional, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696347971635,
+   "sampleSku": "DWWC-502640-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692069339187,
+   "handle": "marburg-papis-loveday-2-wallcovering-14",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Charcoal Gray, Class A Fire Rated, color:Antracita / Gris, Commercial, Contemporary, Cool, decor wallcovering, display_variant, Grey, Industrial, Light Gray, Living Room, marburg, Modern, Needs-Price, Needs-Width, Office, Papis Loveday Wallcovering, papis-loveday-2, Showroom Line, Silver, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696321790003,
+   "sampleSku": "DWWC-502200-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692066455603,
+   "handle": "marburg-papis-loveday-2-wallcovering-6",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Chevron, Class A Fire Rated, Cobalt, color:Azul, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Living Room, marburg, Midnightblue, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Stripe, Taupe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696313303091,
+   "sampleSku": "DWWC-502120-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072714291,
+   "handle": "marburg-papis-loveday-2-wallcovering-34",
+   "vendor": "Marburg",
+   "tagsBefore": "35831, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Light Blue, Lightblue, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Pale Blue, Paper, papis-loveday-2, Powder Blue, Serene, Showroom Line, Stripe, Textured, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696332341299,
+   "sampleSku": "DWWC-502400-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072747059,
+   "handle": "marburg-papis-loveday-2-wallcovering-35",
+   "vendor": "Marburg",
+   "tagsBefore": "35834, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Ecru, Eggshell, Hallway, Light Gray, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Oatmeal, Organic Modern, papis-loveday-2, Serene, Showroom Line, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Wood Grain, Yellow",
+   "sampleVariantId": 43696332374067,
+   "sampleSku": "DWWC-502410-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692073467955,
+   "handle": "marburg-papis-loveday-2-wallcovering-42",
+   "vendor": "Marburg",
+   "tagsBefore": "35822, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Beige, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Off-white, Paper, papis-loveday-2, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696335454259,
+   "sampleSku": "DWWC-502480-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070584371,
+   "handle": "marburg-papis-loveday-2-wallcovering-18",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Alabaster White, Architectural, Bathroom, Bedroom, Beige, Class A Fire Rated, color:Beige / Blue / Grey, Commercial, Contemporary, Cottagecore, Cream, decor wallcovering, display_variant, English Country, Floral, Grandmillennial, Grey, Light Grey, marburg, Needs-Price, Needs-Width, Nursery, Pale Grey-blue, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696325361715,
+   "sampleSku": "DWWC-502240-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692064194611,
+   "handle": "marburg-papis-loveday-2-wallcovering",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Beige / Grey, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Light Beige, Light Grey, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696306618419,
+   "sampleSku": "DWWC-502060-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692071829555,
+   "handle": "marburg-papis-loveday-2-wallcovering-21",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Botanical, Champagne, Class A Fire Rated, color:Beige / Pink, Commercial, Contemporary, Cottage, Cottagecore, Cream, decor wallcovering, display_variant, Dusty Rose, Floral, Grandmillennial, Light Gray, Living Room, marburg, Needs-Price, Needs-Width, Non-woven, Nursery, Off-white, Pale Beige, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Pink, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696328867891,
+   "sampleSku": "DWWC-502270-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692066488371,
+   "handle": "marburg-papis-loveday-2-wallcovering-7",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Blanco, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Gray, Light Grey, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering, White, Zen",
+   "sampleVariantId": 43696313335859,
+   "sampleSku": "DWWC-502130-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072615987,
+   "handle": "marburg-papis-loveday-2-wallcovering-32",
+   "vendor": "Marburg",
+   "tagsBefore": "35883, Architectural, Bedroom, Class A Fire Rated, Commercial, contemporary, decor wallcovering, display_variant, Dot, Gray, Grey, Hallway, Light Gray, Light Grey, Living Room, marburg, Minimalist, Modern, Needs-Price, Needs-Width, Non-Woven, papis-loveday-2, Pattern, Serene, Showroom Line, Silver, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696331784243,
+   "sampleSku": "DWWC-502380-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692071895091,
+   "handle": "marburg-papis-loveday-2-wallcovering-23",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Blue, Class A Fire Rated, Cobalt Blue, color:Blue, Commercial, Contemporary, decor wallcovering, Denim, Dining Room, display_variant, Geometric, Glamorous, Gold, Hotel Lobby, Living Room, Luxe, Luxurious, marburg, Needs-Price, Needs-Width, Non-woven, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Royalblue, Showroom Line, Trending Wallcovering Collection 2025, wallcovering, White, Yellow",
+   "sampleVariantId": 43696328998963,
+   "sampleSku": "DWWC-502290-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692073009203,
+   "handle": "marburg-papis-loveday-2-wallcovering-40",
+   "vendor": "Marburg",
+   "tagsBefore": "35828, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Grey, Hallway, Light Blue, Living Room, marburg, Needs-Price, Needs-Width, Non-Woven, Organic Modern, Paper, papis-loveday-2, Pearl, Rustic, Serene, Showroom Line, Silver, Solid, Taupe, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696333455411,
+   "sampleSku": "DWWC-502460-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692071960627,
+   "handle": "marburg-papis-loveday-2-wallcovering-25",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Blue, Class A Fire Rated, Cobalt Blue, color:Blue / Copper, Commercial, Contemporary, decor wallcovering, Denim, Dining Room, display_variant, Fan, Geometric, Glamorous, Hotel Lobby, Living Room, Luxe, marburg, Navy, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Sophisticated, Stripe, Taupe, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696329064499,
+   "sampleSku": "DWWC-502310-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072452147,
+   "handle": "marburg-papis-loveday-2-wallcovering-30",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Blue, Botanical, Class A Fire Rated, color:Blue / Grey / Gruen, Commercial, Contemporary, Cottagecore, decor wallcovering, display_variant, English Country, Floral, Grandmillennial, Light Blue, marburg, Needs-Price, Needs-Width, Nursery, Off-white, Pale Blue, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Powder Blue, Serene, Showroom Line, Traditional, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696330833971,
+   "sampleSku": "DWWC-502360-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070158387,
+   "handle": "marburg-papis-loveday-2-wallcovering-17",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Botanical, Class A Fire Rated, color:Blue / Purple / Red, Commercial, Contemporary, Cottagecore, decor wallcovering, display_variant, Dusty Rose, English Country, Floral, Grandmillennial, Lavender, Light Gray, marburg, Needs-Price, Needs-Width, Nursery, Pale Lavender, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Pink, Powder Room, Purple, Serene, Showroom Line, Slate Blue, Traditional, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696323952691,
+   "sampleSku": "DWWC-502230-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075401267,
+   "handle": "marburg-papis-loveday-2-wallcovering-52",
+   "vendor": "Marburg",
+   "tagsBefore": "35805, Abstract, Architectural, Bedroom, Beige, Brown, Class A Fire Rated, Commercial, Contemporary, Copper, decor wallcovering, display_variant, Glamorous, Hotel Lobby, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Non-Woven, Orange, papis-loveday-2, Pattern, Showroom Line, Sophisticated, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Wheat",
+   "sampleVariantId": 43696339779635,
+   "sampleSku": "DWWC-502580-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692076187699,
+   "handle": "marburg-papis-loveday-2-wallcovering-54",
+   "vendor": "Marburg",
+   "tagsBefore": "35812, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Geometric, Hallway, Light Gray, Living Room, marburg, Needs-Price, Needs-Width, Non-Woven, Organic Modern, papis-loveday-2, Pattern, Scale, Serene, Showroom Line, Taupe, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696346005555,
+   "sampleSku": "DWWC-502600-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072419379,
+   "handle": "marburg-papis-loveday-2-wallcovering-29",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Camel, Commercial, Contemporary, decor wallcovering, display_variant, Light Brown, Living Room, marburg, Minimalist, Modern, Needs-Price, Needs-Width, Office, Orange, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Showroom Line, Sienna, Solid, Tan, Texture, Textured, Traditional, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Warm, Wood Grain",
+   "sampleVariantId": 43696330801203,
+   "sampleSku": "DWWC-502350-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692074713139,
+   "handle": "marburg-papis-loveday-2-wallcovering-46",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Camel, Class A Fire Rated, color:Copper, Commercial, Contemporary, decor wallcovering, display_variant, Fabric, Hallway, Living Room, marburg, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Rustic, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Trending Wallcovering Collection 2025, wallcovering, Warm",
+   "sampleVariantId": 43696338010163,
+   "sampleSku": "DWWC-502520-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075237427,
+   "handle": "marburg-papis-loveday-2-wallcovering-49",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Brown, Burlywood, Class A Fire Rated, color:Copper, Commercial, Contemporary, decor wallcovering, display_variant, Farmhouse, Geometric, Hallway, marburg, Mosaic, Needs-Price, Needs-Width, Orange, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Powder Room, Rustic, Showroom Line, Tan, Taupe, Tile, Traditional, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Warm",
+   "sampleVariantId": 43696339451955,
+   "sampleSku": "DWWC-502550-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072943667,
+   "handle": "marburg-papis-loveday-2-wallcovering-38",
+   "vendor": "Marburg",
+   "tagsBefore": "35885, Architectural, Bedroom, Brown, Caramel, Chevron, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Farmhouse, Hallway, Living Room, marburg, Needs-Price, Needs-Width, Non-Woven, Orange, Paper, papis-loveday-2, Rustic, Showroom Line, Tan, Texture, Textured, Traditional, Trending Wallcovering Collection 2025, wallcovering, Warm, Wood Grain",
+   "sampleVariantId": 43696333389875,
+   "sampleSku": "DWWC-502440-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070027315,
+   "handle": "marburg-papis-loveday-2-wallcovering-15",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Gold, Commercial, decor wallcovering, display_variant, Hallway, Living Room, marburg, Needs-Price, Needs-Width, Oatmeal, Paper, Papis Loveday Wallcovering, papis-loveday-2, Rustic, Sand, Showroom Line, Solid, Tan, Texture, Textured, Traditional, Transitional, Trending Wallcovering Collection 2025, wallcovering, Warm",
+   "sampleVariantId": 43696323887155,
+   "sampleSku": "DWWC-502210-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075335731,
+   "handle": "marburg-papis-loveday-2-wallcovering-50",
+   "vendor": "Marburg",
+   "tagsBefore": "35815, Architectural, Art Deco, Brown, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, Dining Room, display_variant, Ecru, Geometric, Glamorous, Gold, Hotel Lobby, Living Room, Luxe, Luxurious, marburg, Metallic Foil, Mosaic, Needs-Price, Needs-Width, Off-white, papis-loveday-2, Pattern, Royal Blue, Showroom Line, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696339714099,
+   "sampleSku": "DWWC-502560-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692065800243,
+   "handle": "marburg-papis-loveday-2-wallcovering-4",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Blue, Class A Fire Rated, color:Gold / Gruen / Silver, Commercial, decor wallcovering, Dining Room, display_variant, Fan, Geometric, Glamorous, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Sophisticated, Taupe, Teal, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696310222899,
+   "sampleSku": "DWWC-502100-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692076941363,
+   "handle": "marburg-papis-loveday-2-wallcovering-56",
+   "vendor": "Marburg",
+   "tagsBefore": "35816, Architectural, Art Deco, Beige, Champagne, Class A Fire Rated, Commercial, decor wallcovering, Dining Room, display_variant, Geometric, Glamorous, Hotel Lobby, Light Gray, Light Grey, Living Room, Luxe, marburg, Mosaic, Needs-Price, Needs-Width, papis-loveday-2, Pattern, Showroom Line, Silver, Sophisticated, Taupe, Textured, Tile, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696347807795,
+   "sampleSku": "DWWC-502620-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070060083,
+   "handle": "marburg-papis-loveday-2-wallcovering-16",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Class A Fire Rated, color:Grey, Commercial, Contemporary, decor wallcovering, display_variant, Fan, Geometric, Glamorous, Gray, Grey, Hallway, Light Grey, Living Room, marburg, Needs-Price, Needs-Width, Pale Grey, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Silver Grey, Sophisticated, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696323919923,
+   "sampleSku": "DWWC-502220-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692073566259,
+   "handle": "marburg-papis-loveday-2-wallcovering-44",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Grey, Commercial, Contemporary, decor wallcovering, display_variant, Grey, Hallway, Light Grey, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Taupe, Texture, Textured, Trending Wallcovering Collection 2025, Wabi-sabi, wallcovering",
+   "sampleVariantId": 43696335781939,
+   "sampleSku": "DWWC-502500-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072976435,
+   "handle": "marburg-papis-loveday-2-wallcovering-39",
+   "vendor": "Marburg",
+   "tagsBefore": "35836, Alabaster, Architectural, Bedroom, Class A Fire Rated, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Gray, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Off-white, Organic Modern, papis-loveday-2, Serene, Showroom Line, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696333422643,
+   "sampleSku": "DWWC-502450-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692073369651,
+   "handle": "marburg-papis-loveday-2-wallcovering-41",
+   "vendor": "Marburg",
+   "tagsBefore": "35824, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, Commercial, contemporary, decor wallcovering, display_variant, Hotel Lobby, Linen, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Organic Modern, papis-loveday-2, Serene, Showroom Line, Solid, Tan, Texture, textured, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696335093811,
+   "sampleSku": "DWWC-502470-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072845363,
+   "handle": "marburg-papis-loveday-2-wallcovering-36",
+   "vendor": "Marburg",
+   "tagsBefore": "35835, Architectural, Bedroom, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Grey, Light Gray, Linen, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Off-white, Office, Organic Modern, papis-loveday-2, Scandinavian, Serene, Showroom Line, Silver, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, Wood Grain",
+   "sampleVariantId": 43696333291571,
+   "sampleSku": "DWWC-502420-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692064325683,
+   "handle": "marburg-papis-loveday-2-wallcovering-2",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Champagne, Class A Fire Rated, color:Grey / White, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Linen, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Silver, Solid, Texture, Textured, Trending Wallcovering Collection 2025, Wabi-sabi, wallcovering, Yellow",
+   "sampleVariantId": 43696307339315,
+   "sampleSku": "DWWC-502080-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075368499,
+   "handle": "marburg-papis-loveday-2-wallcovering-51",
+   "vendor": "Marburg",
+   "tagsBefore": "35807, Abstract, Architectural, Bedroom, Charcoal Gray, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Geometric, Glamorous, Gray, Grey, Linen, Living Room, Luxe, marburg, Modern, Needs-Price, Needs-Width, Non-Woven, papis-loveday-2, Pattern, Primary Suite, Showroom Line, Silver, Sophisticated, Taupe, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696339746867,
+   "sampleSku": "DWWC-502570-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692077072435,
+   "handle": "marburg-papis-loveday-2-wallcovering-57",
+   "vendor": "Marburg",
+   "tagsBefore": "35809, Architectural, Bathroom, Bedroom, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Geometric, Grey, Light Gray, Light Grey, Living Room, marburg, Needs-Price, Needs-Width, Non-Woven, Off-white, Organic Modern, papis-loveday-2, Pattern, Scale, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696347938867,
+   "sampleSku": "DWWC-502630-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072353843,
+   "handle": "marburg-papis-loveday-2-wallcovering-27",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Gris, Commercial, Contemporary, decor wallcovering, display_variant, Hallway, Light Gray, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Stripe, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696330735667,
+   "sampleSku": "DWWC-502330-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692064227379,
+   "handle": "marburg-papis-loveday-2-wallcovering-1",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Class A Fire Rated, color:Gruen Natural, Commercial, Contemporary, decor wallcovering, Deep Teal, display_variant, Grasscloth, Hallway, Living Room, marburg, Minimalist, Natural Wallcovering, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Stripe, Teal, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696306782259,
+   "sampleSku": "DWWC-502070-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692066095155,
+   "handle": "marburg-papis-loveday-2-wallcovering-5",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Blue, Brown, Class A Fire Rated, color:Gruen, Commercial, Contemporary, decor wallcovering, Denim, display_variant, Geometric, Glamorous, Gold, Hallway, Hotel Lobby, Living Room, Luxe, Luxurious, marburg, Metallic Foil, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Taupe, Trending Wallcovering Collection 2025, Turquoise, wallcovering, Yellow",
+   "sampleVariantId": 43696310517811,
+   "sampleSku": "DWWC-502110-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692073533491,
+   "handle": "marburg-papis-loveday-2-wallcovering-43",
+   "vendor": "Marburg",
+   "tagsBefore": "35821, Alabaster, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Light Blue, Light Grey, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Organic Modern, Pale Blue, Paper, papis-loveday-2, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696335716403,
+   "sampleSku": "DWWC-502490-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075008051,
+   "handle": "marburg-papis-loveday-2-wallcovering-47",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Blue, Class A Fire Rated, Coastal, color:Gruen, Commercial, Contemporary, decor wallcovering, display_variant, Geometric, Light Blue, Living Room, marburg, Needs-Price, Needs-Width, Organic Modern, Pale Blue, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Scale, Scandinavian, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696339222579,
+   "sampleSku": "DWWC-502530-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692077432883,
+   "handle": "marburg-papis-loveday-2-wallcovering-60",
+   "vendor": "Marburg",
+   "tagsBefore": "35803, Abstract, Alabaster, Architectural, Bedroom, Class A Fire Rated, Commercial, Contemporary, Cream, Dark Green, decor wallcovering, display_variant, Geometric, Hallway, Lavender, Light Blue-grey, Light Green, Living Room, marburg, Medium Brown, Minimalist, Modern, Needs-Price, Needs-Width, Non-Woven, Organic Modern, Pale Beige, papis-loveday-2, Pattern, Purple, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696349773875,
+   "sampleSku": "DWWC-502660-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070682675,
+   "handle": "marburg-papis-loveday-2-wallcovering-20",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Beige, Class A Fire Rated, color:Pink, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Fan, Geometric, Glamorous, Hallway, Light Grey, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Off-white, Pale Beige, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Sophisticated, Textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696325460019,
+   "sampleSku": "DWWC-502260-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692075171891,
+   "handle": "marburg-papis-loveday-2-wallcovering-48",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Pink, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Beige, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696339386419,
+   "sampleSku": "DWWC-502540-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692077301811,
+   "handle": "marburg-papis-loveday-2-wallcovering-59",
+   "vendor": "Marburg",
+   "tagsBefore": "35802, Abstract, Architectural, Bedroom, Brown, Champagne, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Dusty Rose, Geometric, Glamorous, Hotel Lobby, marburg, Needs-Price, Needs-Width, Non-Woven, Off White, Pale Rose, papis-loveday-2, Pattern, Pink, Primary Suite, Serene, Showroom Line, Textured, Transitional, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696348954675,
+   "sampleSku": "DWWC-502650-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692067897395,
+   "handle": "marburg-papis-loveday-2-wallcovering-10",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:Rosa, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Dot, Glamorous, Light Mauve, Living Room, Luxe, marburg, Needs-Price, Needs-Width, Non-woven, Pale Pink, Papis Loveday Wallcovering, papis-loveday-2, Pink, Primary Suite, Serene, Showroom Line, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696316776499,
+   "sampleSku": "DWWC-502160-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692076646451,
+   "handle": "marburg-papis-loveday-2-wallcovering-55",
+   "vendor": "Marburg",
+   "tagsBefore": "35814, Architectural, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, Dining Room, display_variant, Geometric, Glamorous, Gray, Grey, Hotel Lobby, Light Gray, Living Room, Luxe, marburg, Metallic Foil, Modern, Mosaic, Needs-Price, Needs-Width, Non-Woven, papis-loveday-2, Pattern, Showroom Line, Silver, Sophisticated, Textured, Tile, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696347512883,
+   "sampleSku": "DWWC-502610-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692066521139,
+   "handle": "marburg-papis-loveday-2-wallcovering-8",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Class A Fire Rated, color:Verde, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hallway, Light Grey, marburg, Minimalist, Needs-Price, Needs-Width, Pale Silver, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Stripe, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696313368627,
+   "sampleSku": "DWWC-502140-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692068094003,
+   "handle": "marburg-papis-loveday-2-wallcovering-12",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Blue, Class A Fire Rated, color:Verde, Commercial, Contemporary, decor wallcovering, display_variant, Geometric, Hallway, Living Room, marburg, Needs-Price, Needs-Width, Organic Modern, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Taupe, Teal, Texture, Textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White, Wood Grain",
+   "sampleVariantId": 43696317464627,
+   "sampleSku": "DWWC-502180-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692070617139,
+   "handle": "marburg-papis-loveday-2-wallcovering-19",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Class A Fire Rated, color:White, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Fan, Geometric, Glamorous, Hallway, Light Gray, Living Room, marburg, Needs-Price, Needs-Width, Off-white, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pattern, Showroom Line, Sophisticated, Stripe, Trending Wallcovering Collection 2025, Vinyl, wallcovering, White",
+   "sampleVariantId": 43696325394483,
+   "sampleSku": "DWWC-502250-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692072517683,
+   "handle": "marburg-papis-loveday-2-wallcovering-31",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:White, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Light Beige, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Scandinavian, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering, Wood Grain",
+   "sampleVariantId": 43696330899507,
+   "sampleSku": "DWWC-502370-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692074680371,
+   "handle": "marburg-papis-loveday-2-wallcovering-45",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, color:White, Commercial, Contemporary, Cream, decor wallcovering, display_variant, Hallway, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Off-white, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Serene, Showroom Line, Solid, Texture, Textured, Trending Wallcovering Collection 2025, wallcovering, White",
+   "sampleVariantId": 43696337944627,
+   "sampleSku": "DWWC-502510-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692076089395,
+   "handle": "marburg-papis-loveday-2-wallcovering-53",
+   "vendor": "Marburg",
+   "tagsBefore": "35810, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Embossed, Geometric, Light Gold, Living Room, marburg, Minimalist, Needs-Price, Needs-Width, Non-Woven, Off-white, Organic Modern, papis-loveday-2, Pattern, Primary Suite, Scale, Serene, Showroom Line, Textured, Trending Wallcovering Collection 2025, wallcovering, White, Yellow, Zen",
+   "sampleVariantId": 43696345907251,
+   "sampleSku": "DWWC-502590-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692061671475,
+   "handle": "marburg-papis-loveday-wallcovering-42",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Animal/Insects, Architectural, art-deco, Bedroom, Beige, Birds, Blue, Botanical, Class A Fire Rated, color:Brown / Grey Commercial, Commercial, Commercial Wallcovering, Contemporary, Dark Teal, decor wallcovering, decorative, Dining Room, display_variant, Eclectic, face, Floral, geometric, Hunter Green, Living Room, marburg, Modern, Moody, Navy, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, portrait, Showroom Line, Silver, Teal, Trending Wallcovering Collection 2025, tropical, Wallcovering",
+   "sampleVariantId": 43696298000435,
+   "sampleSku": "DWWC-501940-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692047908915,
+   "handle": "marburg-papis-loveday-wallcovering-15",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, color:Bunt Commercial, colorful, Commercial, Commercial Wallcovering, Contemporary, decor wallcovering, display_variant, Eclectic, Energetic, Gold, Hotel Lobby, Living Room, marburg, modern, Needs-Price, Needs-Width, Non-woven, Orange, Papis Loveday Wallcovering, papis-loveday, Purple, Red, Showroom Line, stripe, Teal, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696269361203,
+   "sampleSku": "DWWC-501670-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692066553907,
+   "handle": "marburg-papis-loveday-2-wallcovering-9",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Nouveau, Bedroom, Brushstroke, Champagne, Class A Fire Rated, color:Bunt Commercial, Commercial, Commercial Wallcovering, Contemporary, decor wallcovering, display_variant, Eclectic, Glamorous, Haute Couture, Living Room, marburg, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pink, Powder Room, Rose, Rose Quartz, Showroom Line, Sophisticated, Trending Wallcovering Collection 2025, wallcovering, Watercolor, Yellow",
+   "sampleVariantId": 43696313401395,
+   "sampleSku": "DWWC-502150-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692068061235,
+   "handle": "marburg-papis-loveday-2-wallcovering-11",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Brushstroke, Champagne, Charcoal, Class A Fire Rated, color:Bunt Commercial, Commercial, Commercial Wallcovering, Contemporary, Cream, decor wallcovering, display_variant, Haute Couture, Living Room, marburg, Modern, Multi, Mustard, Needs-Price, Needs-Width, Office, Orange, Paper, Papis Loveday Wallcovering, papis-loveday-2, Showroom Line, Sophisticated, Tangerine, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696317431859,
+   "sampleSku": "DWWC-502170-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692069208115,
+   "handle": "marburg-papis-loveday-2-wallcovering-13",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Nouveau, Bedroom, Beige, Botanical, Class A Fire Rated, color:Bunt Commercial, Commercial, Commercial Wallcovering, Contemporary, decor wallcovering, display_variant, Eclectic, Floral, Hallway, Light Grey, Living Room, marburg, Multi, Multi-color Floral, Needs-Price, Needs-Width, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday-2, Pastel Pink, Peach, Serene, Showroom Line, Silver, Trending Wallcovering Collection 2025, wallcovering, Watercolor",
+   "sampleVariantId": 43696321331251,
+   "sampleSku": "DWWC-502190-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": false
+  },
+  {
+   "id": 7692044861491,
+   "handle": "marburg-papis-loveday-wallcovering-8",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Blue, Class A Fire Rated, Commercial, contemporary, decor wallcovering, display_variant, Hallway, Light Gray, Living Room, marburg, Minimalist, modern, Needs-Image, Needs-Price, Needs-Width, Non-woven, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Slate Blue, Stripe, striped, Teal Blue, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696262086707,
+   "sampleSku": "DWWC-501600-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692047286323,
+   "handle": "marburg-papis-loveday-wallcovering-10",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Art Deco, Bedroom, Beige, Bone, Champagne, Class A Fire Rated, Commercial, Copper, decor wallcovering, Dining Room, display_variant, Glamorous, Living Room, Luxurious, marburg, Needs-Image, Needs-Price, Needs-Width, Orange, Palm, palm-leaf, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Tan, Taupe, Texture, textured, Trending Wallcovering Collection 2025, tropical, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696267526195,
+   "sampleSku": "DWWC-501620-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692047777843,
+   "handle": "marburg-papis-loveday-wallcovering-13",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Bone, Class A Fire Rated, Commercial, contemporary, Dark Teal, decor wallcovering, display_variant, Hotel Lobby, Light Grey, Living Room, Luxe, marburg, Minimalist, modern, Navy, Needs-Image, Needs-Price, Needs-Width, Non-woven, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Sophisticated, stripe, textured, Trending Wallcovering Collection 2025, Vinyl, Wallcovering",
+   "sampleVariantId": 43696268771379,
+   "sampleSku": "DWWC-501650-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692047810611,
+   "handle": "marburg-papis-loveday-wallcovering-14",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, contemporary, decor wallcovering, Dining Room, display_variant, Ecru, Gold, Living Room, marburg, minimalist, modern, Needs-Image, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Solid, Sophisticated, Taupe, textured, Trending Wallcovering Collection 2025, wallcovering, Yellow",
+   "sampleVariantId": 43696268804147,
+   "sampleSku": "DWWC-501660-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692049481779,
+   "handle": "marburg-papis-loveday-wallcovering-19",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Bone, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Geometric, Hallway, Lavender, Light Gray, Light Lavender, Living Room, marburg, Minimalist, modern, Needs-Image, Needs-Price, Needs-Width, Pale Lavender, Papis Loveday Wallcovering, papis-loveday, Purple, Serene, Showroom Line, Silver, striped, Texture, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696274833459,
+   "sampleSku": "DWWC-501710-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692056428595,
+   "handle": "marburg-papis-loveday-wallcovering-20",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, contemporary, decor wallcovering, display_variant, Eggshell, Gold, Grey, Light Gray, Light Grey, Living Room, marburg, minimalist, Needs-Image, Needs-Price, Needs-Width, Paper, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Silver, Solid, Sophisticated, Texture, textured, Trending Wallcovering Collection 2025, Wallcovering, Yellow",
+   "sampleVariantId": 43696282566707,
+   "sampleSku": "DWWC-501720-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692058099763,
+   "handle": "marburg-papis-loveday-wallcovering-24",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Bone, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Grasscloth, Hallway, horizontal-lines, Light Beige, Light Gold, Light Gray, Living Room, marburg, Minimalist, modern, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Pale Turquoise, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Stripe, striped, textured, Trending Wallcovering Collection 2025, Turquoise, Vinyl, Wallcovering, Yellow",
+   "sampleVariantId": 43696285843507,
+   "sampleSku": "DWWC-501760-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692058198067,
+   "handle": "marburg-papis-loveday-wallcovering-25",
+   "vendor": "Marburg",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, contemporary, decor wallcovering, diamond-pattern, Dining Room, display_variant, Ecru, geometric, Gold, Lattice, Living Room, Luxurious, marburg, modern, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Sage, Showroom Line, Teal, Texture, textured, Trending Wallcovering Collection 2025, Tropical, Vinyl, wallcovering, Yellow",
+   "sampleVariantId": 43696285941811,
+   "sampleSku": "DWWC-501770-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692058656819,
+   "handle": "marburg-papis-loveday-wallcovering-29",
+   "vendor": "Marburg",
+   "tagsBefore": "abstract, AI-Analyzed-v2, Architectural, Bedroom, Class A Fire Rated, Commercial, Contemporary, Dark Purple, decor wallcovering, display_variant, Feather, Hallway, Lavender, Living Room, marburg, modern, Mushroom, Needs-Image, Needs-Price, Needs-Width, Non-woven, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Purple, Serene, Showroom Line, Silver, Taupe, textured, Transitional, Trending Wallcovering Collection 2025, Vinyl, wallcovering, wave",
+   "sampleVariantId": 43696286400563,
+   "sampleSku": "DWWC-501810-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692061376563,
+   "handle": "marburg-papis-loveday-wallcovering-34",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, Commercial, contemporary, decor wallcovering, display_variant, Grey, Light Gray, light-grey, Linen, Living Room, marburg, minimalist, Needs-Image, Needs-Price, Needs-Width, Office, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Silver, Solid, textured, Trending Wallcovering Collection 2025, wallcovering",
+   "sampleVariantId": 43696297345075,
+   "sampleSku": "DWWC-501860-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692061540403,
+   "handle": "marburg-papis-loveday-wallcovering-38",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Biophilic, Class A Fire Rated, Commercial, Contemporary, Dark Brown, Dark Green, decor wallcovering, display_variant, Eggshell, Forest Green, Green, Hotel Lobby, Leaf, Light Green, Lime Green, Living Room, marburg, Needs-Image, Needs-Price, Needs-Width, Orange, Organic, Organic Modern, Paper, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Solid, Terracotta, Texture, textured, Trending Wallcovering Collection 2025, Tropical, wallcovering",
+   "sampleVariantId": 43696297672755,
+   "sampleSku": "DWWC-501900-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692061737011,
+   "handle": "marburg-papis-loveday-wallcovering-43",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Bone, Charcoal Grey, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hallway, Light Grey, Living Room, marburg, Minimalist, modern, Needs-Image, Needs-Price, Needs-Width, Non-woven, Off-white, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Solid, Stripe, striped, Texture, textured, Trending Wallcovering Collection 2025, Vinyl, wallcovering",
+   "sampleVariantId": 43696298065971,
+   "sampleSku": "DWWC-501950-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692061868083,
+   "handle": "marburg-papis-loveday-wallcovering-45",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Bone, Charcoal, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Gray, Grey, Hallway, Living Room, marburg, Minimalist, Needs-Image, Needs-Price, Needs-Width, Papis Loveday Wallcovering, papis-loveday, Showroom Line, Silver, Solid, Sophisticated, textured, Trending Wallcovering Collection 2025, Vinyl, Wallcovering",
+   "sampleVariantId": 43696298229811,
+   "sampleSku": "DWWC-501970-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  },
+  {
+   "id": 7692061933619,
+   "handle": "marburg-papis-loveday-wallcovering-46",
+   "vendor": "Marburg",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Blue, Class A Fire Rated, Commercial, Contemporary, decor wallcovering, display_variant, Emerald Green, Estimated Type: Non-woven, Grasscloth, Light Oak, Living Room, marburg, Minimalist, modern, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Office, Organic Modern, Papis Loveday Wallcovering, papis-loveday, Serene, Showroom Line, Solid, Teal, textured, Trending Wallcovering Collection 2025, versatile, Wallcovering",
+   "sampleVariantId": 43696298393651,
+   "sampleSku": "DWWC-501980-Sample",
+   "intent": "Needs-Price only",
+   "incompleteImport": true
+  }
+ ],
+ "excluded": [
+  {
+   "id": 7863153131571,
+   "handle": "bleinheim-lanvino-memo-sample-phillipe-romano-14",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bleinheim Lanvino Wallcovering, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display-exclude, display_variant, Fabric, Light Beige, Memo Sample, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Silver, Textured, vinyl, Vinyls, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154475059,
+   "handle": "bleinheim-lanvino-memo-sample-phillipe-romano-15",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bleinheim Lanvino Wallcovering, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display-exclude, display_variant, Eggshell, Light Beige, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Textured, Traditional, vinyl, Vinyls, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154606131,
+   "handle": "bleinheim-lanvino-memo-sample-phillipe-romano-16",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bleinheim Lanvino Wallcovering, Class A Fire Rated, Commercial, Commercial Wallcovering, Cream, display-exclude, display_variant, Ecru, Light Beige, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Paper, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Stripe, Tan, Textured, Traditional, Transitional, vinyl, Vinyls, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154147379,
+   "handle": "cody-couture-memo-sample-phillipe-romano-13",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Class A Fire Rated, Cody Couture Wallcovering, Commercial, Commercial Wallcovering, Contemporary, Cream, display-exclude, display_variant, Fabric, Geometric, Hotel Lobby, Light Beige, Light Brown, Living Room, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Office, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Scandinavian, Solid/Textural, Tan, Textured, Traditional, Transitional, vinyl, Vinyls, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154376755,
+   "handle": "cody-couture-memo-sample-phillipe-romano-14",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Brown, Class A Fire Rated, Cody Couture Wallcovering, Commercial, Commercial Wallcovering, Contemporary, display-exclude, display_variant, Fabric, Gray, Hotel Lobby, Living Room, Memo Sample, Minimalist, Needs-Image, Needs-Price, Needs-Width, Office, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Taupe, Textural, Textured, Transitional, vinyl, Vinyls, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863152574515,
+   "handle": "hollywood-abaca-grasscloth-memo-sample-phillipe-romano-69",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Beige, Coastal, Commercial, Contemporary, Cream, display-exclude, display_variant, Grasscloth, Grasscloth Texture, Hollywood Abaca Grasscloth, Hotel Lobby, Light Beige, Light Brown, Memo Sample, Minimalist, Modern, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Sand, Spa, Striped, Tan, Textural, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863152803891,
+   "handle": "hollywood-abaca-grasscloth-memo-sample-phillipe-romano-70",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bedroom, Beige, Coastal, Commercial, display-exclude, display_variant, Entryway, Gold, Grasscloth, Grasscloth Texture, Hollywood Abaca Grasscloth, Horizontal Stripes, Light Brown, Living Room, Memo Sample, Modern, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Naturals, Rustic, Scandinavian, Solid/Textural, Tan, Textured, Transitional, Tropical, Wallcovering, Wheat",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863300816947,
+   "handle": "hollywood-abaca-grasscloth-memo-sample-phillipe-romano-71",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Beige, Commercial, Contemporary, Cream, display-exclude, display_variant, Grasscloth, Grasscloth Texture, Hollywood Abaca Grasscloth, Hotel Lobby, Khaki, Memo Sample, Minimalist, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Solid/Textural, Spa, Tan, Textured, Traditional, Transitional, Wallcovering, Wheat",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863494344755,
+   "handle": "hollywood-abaca-grasscloth-memo-sample-phillipe-romano-72",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Bathroom, Bedroom, Beige, Bone, Brown, Coastal, Commercial, Cream, display-exclude, display_variant, Grasscloth, Grasscloth Texture, Hollywood Abaca Grasscloth, Hotel Lobby, Memo Sample, Natural, Natural Wallcovering, Naturals, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Naturals, Rustic, Silver, Spa, Striped, Tan, Textural, Textured, Traditional, Transitional, Tropical, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862985523251,
+   "handle": "la-bologna-bobbin-natural-bobbin-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Ash, Class A Fire Rated, Commercial, display-exclude, display_variant, Fabric, Gray, La Bologna, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Textured, Wallcovering, White, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983295027,
+   "handle": "la-bologna-cocoa-natural-cocoa-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Fabric, Gray, La Bologna, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Sage, Silver, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983786547,
+   "handle": "la-bologna-heather-natural-heather-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display-exclude, display_variant, Fabric, La Bologna, Light Brown, Linen, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Textured, Traditional, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983688243,
+   "handle": "la-bologna-jet-natural-jet-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Charcoal, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Fabric, Gray, Gunmetal, La Bologna, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862986080307,
+   "handle": "la-bologna-pepper-natural-pepper-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, display-exclude, display_variant, Fabric, Gray, La Bologna, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Textured, Wallcovering, White, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993748019,
+   "handle": "la-orvito-amadora-natural-amadora-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "abstract, Architectural, Beige, Black, Class A Fire Rated, Commercial, contemporary, Cream, display-exclude, display_variant, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Off White, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, textured, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993027123,
+   "handle": "la-orvito-beja-natural-beja-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Black, Bone, Class A Fire Rated, Commercial, Contemporary, Cream, display-exclude, display_variant, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995681331,
+   "handle": "la-orvito-braga-natural-braga-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Vanilla, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862994599987,
+   "handle": "la-orvito-evora-natural-evora-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Black, Class A Fire Rated, Commercial, Contemporary, Cream, display-exclude, display_variant, La Orvito, Linen, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993584179,
+   "handle": "la-orvito-faro-natural-faro-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Commercial, Contemporary, display-exclude, display_variant, Gray, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Wallcovering, Sage, Silver, Takumi, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862997319731,
+   "handle": "la-orvito-garda-natural-garda-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Slate, Takumi, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993977395,
+   "handle": "la-orvito-lagos-natural-lagos-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Takumi, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995222579,
+   "handle": "la-orvito-lisbon-natural-lisbon-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Dove Gray, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Takumi, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995877939,
+   "handle": "la-orvito-porto-natural-porto-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Commercial, Contemporary, display-exclude, display_variant, Gray, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995025971,
+   "handle": "la-orvito-santo-natural-santo-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Black, Commercial, Contemporary, display-exclude, display_variant, La Orvito, Linen, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993223731,
+   "handle": "la-orvito-sintra-natural-sintra-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Bohemian, Brown, Class A Fire Rated, Commercial, Dark Brown, display-exclude, display_variant, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Takumi, Textured, Tobacco, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993780787,
+   "handle": "la-orvito-tomar-natural-tomar-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Brown, Chocolate, Commercial, display-exclude, display_variant, La Orvito, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Phillipe Romano Wallcovering, Red, Takumi, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862982639667,
+   "handle": "la-renegado-basalt-natural-basalt-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, La Renegado, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Slate, Stripe, Taupe, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983032883,
+   "handle": "la-renegado-black-emerald-natural-black-emerald-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Black, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Green, La Renegado, Memo Sample, Midnight, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Teal, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983163955,
+   "handle": "la-renegado-bone-natural-bone-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display-exclude, display_variant, La Renegado, Linen, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Stripe, Textured, Vinyl, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862985392179,
+   "handle": "la-renegado-calcite-natural-calcite-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Ecru, La Renegado, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Wallcovering, Stripe, Textured, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862984769587,
+   "handle": "la-renegado-frost-natural-frost-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, La Renegado, Light Blue, Light Gray, Memo Sample, Multi, Natural, Needs-Image, Needs-Price, Needs-Width, Non-Woven, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Stripe, Textured, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862987227187,
+   "handle": "la-renegado-sapphire-natural-sapphire-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Indigo, La Renegado, Memo Sample, Natural, Navy, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Stripe, Textured, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993682483,
+   "handle": "la-sieno-ash-type-2-ash-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Black, Botanical, Class A Fire Rated, Commercial, Contemporary, Denim, display-exclude, display_variant, Gray, La Sieno, La Sieno Ash Type 2, Light Gray, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Silver, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995255347,
+   "handle": "la-sieno-azure-type-2-azure-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Blue, Botanical, Class A Fire Rated, Commercial, Contemporary, Dark, display-exclude, display_variant, Gray, La Sieno, Leaf, Memo Sample, Metallic, Multi, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862991028275,
+   "handle": "la-sieno-grove-type-2-grove-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Botanical, Brown, Class A Fire Rated, Cocoa, Commercial, Contemporary, display-exclude, display_variant, Gold, La Sieno, Leaf, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Putty, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, Yellow",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862991683635,
+   "handle": "la-sieno-moss-type-2-moss-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Botanical, Class A Fire Rated, Commercial, Contemporary, Dark Green, display-exclude, display_variant, La Sieno, La Sieno Moss Type 2, Light Green, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Paper, Phillipe Romano, Sage, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862984146995,
+   "handle": "la-turino-filigree-type-2-filigree-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, La Turino, Memo Sample, Mushroom, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Stripe, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862983622707,
+   "handle": "la-turino-pearl-type-2-pearl-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Alabaster, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, La Turino, Light Brown, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Stripe, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862998761523,
+   "handle": "la-turino-radiant-type-2-radiant-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Cream, display-exclude, display_variant, La Turino, Memo Sample, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Stripe, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993715251,
+   "handle": "la-udino-ajisai-natural-ajisai-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Dark Gray, display-exclude, display_variant, Fabric, Gray, La Udino, Lattice, Light Gray, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Pewter, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995714099,
+   "handle": "la-udino-bara-natural-bara-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display-exclude, display_variant, Grasscloth, Gray, La Udino, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862994272307,
+   "handle": "la-udino-daria-natural-daria-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Black, Commercial, Contemporary, display-exclude, display_variant, Gold, Grasscloth, Gray, La Udino, Lattice, Memo Sample, Mocha, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862991421491,
+   "handle": "la-udino-fuji-natural-fuji-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display-exclude, display_variant, Grasscloth, Gray, La Udino, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Silver, Stone, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862992109619,
+   "handle": "la-udino-hasu-natural-hasu-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, Contemporary, display-exclude, display_variant, Ecru, Geometric, Grasscloth, La Udino, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862992371763,
+   "handle": "la-udino-poppi-natural-poppi-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Commercial, display-exclude, display_variant, Grasscloth, Gray, La Udino, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Tan, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862991650867,
+   "handle": "la-udino-rabenda-natural-rabenda-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Commercial, Contemporary, Dark Gray, display-exclude, display_variant, Grasscloth, Gray, Juniper, La Udino, Lattice, Memo Sample, Natural, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Textured, Wallcovering, Woven",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993190963,
+   "handle": "le-vierna-vinyl-cork-argent-type-2-argent-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Sage, Silver, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995484723,
+   "handle": "le-vierna-vinyl-cork-blue-type-2-blue-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Gray, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862994829363,
+   "handle": "le-vierna-vinyl-cork-bronze-type-2-bronze-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brass, Brown, Class A Fire Rated, Commercial, display-exclude, display_variant, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Tan, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993551411,
+   "handle": "le-vierna-vinyl-cork-burnished-type-2-burnished-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Industrial, Le Vierna Vinyl Cork, Memo Sample, Metallic, Moss, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Tan, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862995320883,
+   "handle": "le-vierna-vinyl-cork-champagne-type-2-champagne-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Ecru, Le Vierna Vinyl Cork, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862997090355,
+   "handle": "le-vierna-vinyl-cork-emerald-type-2-emerald-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Charcoal, Class A Fire Rated, Commercial, display-exclude, display_variant, Green, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Teal, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862992601139,
+   "handle": "le-vierna-vinyl-cork-gilded-taupe-type-2-gilded-taupe-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, display-exclude, display_variant, Gold, Le Vierna Vinyl Cork, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Sand, Tan, Taupe, Textured, Traditional, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, Yellow",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993387571,
+   "handle": "le-vierna-vinyl-cork-gold-type-2-gold-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Brown, Charcoal, Class A Fire Rated, Commercial, display-exclude, display_variant, Industrial, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862993354803,
+   "handle": "le-vierna-vinyl-cork-ivory-frost-type-2-ivory-frost-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, Cream, display-exclude, display_variant, Le Vierna Vinyl Cork, Linen, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862992830515,
+   "handle": "le-vierna-vinyl-cork-misty-type-2-misty-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Charcoal, Class A Fire Rated, Commercial, display-exclude, display_variant, Gray, Industrial, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Silver, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862994632755,
+   "handle": "le-vierna-vinyl-cork-moonlight-type-2-moonlight-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Le Vierna Vinyl Cork, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Oatmeal, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862996697139,
+   "handle": "le-vierna-vinyl-cork-platinum-type-2-platinum-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Architectural, Class A Fire Rated, Commercial, Contemporary, Cream, display-exclude, display_variant, Le Vierna Vinyl Cork, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Pearl, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, White",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862996893747,
+   "handle": "le-vierna-vinyl-cork-silver-type-2-silver-memo-sample-phillipe-romano",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, Architectural, Ash, Blue, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Le Vierna Vinyl Cork, Memo Sample, Metallic, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Phillipe Romano Wallcovering, Rustic, Silver, Textured, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863156080691,
+   "handle": "luxuria-beige-memo-sample-phillipe-romano-242",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Amber, Beige, Coral, display-exclude, display_variant, Floral, Gold, Gray, Luxuria Fine Textile, Maroon, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Silver, Teal, Textile, Textured, Traditional, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154573363,
+   "handle": "luxuria-gray-memo-sample-phillipe-romano-28",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Contemporary, Coral, Dark Gray, display-exclude, display_variant, Gray, Ivory, Light Gray, Luxuria Fine Textile, Maroon, Memo Sample, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Plum, Salmon, Slate, Teal, Textile, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863155490867,
+   "handle": "luxuria-khaki-memo-sample-phillipe-romano-10",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Beige, Charcoal, Contemporary, Coral, display-exclude, display_variant, Ivory, Khaki, Luxuria Fine Textile, Maroon, Memo Sample, Minimalist, Needs-Image, Needs-Price, Needs-Width, Phillipe Romano, Solid, Tan, Taupe, Teal, Textile, Textured, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863155523635,
+   "handle": "luxuria-pale-green-memo-sample-phillipe-romano-12",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "display-exclude, display_variant, Greige, Light Gray, Luxuria Fine Textile, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Pale Green, Phillipe Romano, Sage, Textile, Textured, Transitional, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154671667,
+   "handle": "majuscaulo-trato-memo-sample-phillipe-romano-16",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display-exclude, display_variant, Eggshell, Geometric, Majuscaulo Trato Wallcovering, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Pink, Textured, vinyl, Vinyls, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863154769971,
+   "handle": "majuscaulo-trato-memo-sample-phillipe-romano-17",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, display-exclude, display_variant, Grasscloth, Lattice, Light Brown, Majuscaulo Trato Wallcovering, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Textured, Traditional, vinyl, Vinyls, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 1496960401520,
+   "handle": "monea-madagascar-grass-prg-71047",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Almond, Architectural, Bedroom, Beige, Coastal, Commercial, Contemporary, Cream, display_variant, Entryway, Fabric, Farmhouse, Grasscloth, Grasscloth Texture, Gray, Grey Silver, Light Beige, Light Gray, Living Room, Madagascar, Madagascar Naturals, Monea Madagascar Grass, Natural, Natural Wallcovering, Needs-Image, Needs-Price, Needs-Width, Office, Phillipe Romano, Phillipe Romano Grasses Vol. 3, Regatta Raffia, Sand, Showroom Line, Solid/Textural, Textured, Traditional, Transitional, Wallcovering",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863153819699,
+   "handle": "mr-diorio-memo-sample-phillipe-romano-19",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Bedroom, Beige, Bone, Class A Fire Rated, Commercial, Commercial Wallcovering, Contemporary, display-exclude, display_variant, Entryway, Gold, Khaki, Living Room, Memo Sample, Mr. Diorio Wallcovering, Needs-Image, Needs-Price, Needs-Width, Office, Phillip Romano Commercial, Phillipe Romano, Phillipe Romano Vinyls, Textural, Textured, Traditional, Transitional, vinyl, Vinyls, Wallcovering, Yellow",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862953836595,
+   "handle": "mr-mizutto-wood-memo-sample-phillipe-romano-1",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Aspen, Beige, Class A Fire Rated, Commercial, CONTEMPORARY, display-exclude, display_variant, dots, Eggshell, Geometric, Gray, java, Light Gray, Memo Sample, Metallic Foil, Mr. Mizutto Wood, Natural, Natural Textile Wallcovering, Naturals, Paper, Pattern, Phillipe Romano, Phillipe Romano Naturals, Real Natural Textile, real wood, WALLCOVERING, White, wood",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862954131507,
+   "handle": "mr-mizutto-wood-memo-sample-phillipe-romano-2",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Aspen, Brown, Class A Fire Rated, Commercial, CONTEMPORARY, display-exclude, display_variant, dots, Geometric, java, Memo Sample, Metallic Foil, Mr. Mizutto Wood, Natural, Natural Textile Wallcovering, Naturals, Paper, Pattern, Phillipe Romano, Phillipe Romano Naturals, Real Natural Textile, real wood, Tan, WALLCOVERING, White, wood",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7862954786867,
+   "handle": "mr-mizutto-wood-memo-sample-phillipe-romano-3",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "Abstract, AI-Analyzed-v2, Architectural, Aspen, Charcoal, Class A Fire Rated, Commercial, CONTEMPORARY, Dark Gray, display-exclude, display_variant, dots, Eggshell, Geometric, Gray, java, Memo Sample, Metallic Foil, Mr. Mizutto Wood, Natural, Natural Textile Wallcovering, Naturals, Paper, Pattern, Phillipe Romano, Phillipe Romano Naturals, Real Natural Textile, real wood, WALLCOVERING, White, wood",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  },
+  {
+   "id": 7863155425331,
+   "handle": "youngstown-type-2-memo-sample-phillipe-romano-12",
+   "vendor": "Phillipe Romano",
+   "tagsBefore": "AI-Analyzed-v2, Architectural, Beige, Class A Fire Rated, Commercial, Contemporary, display-exclude, display_variant, Durable Vinyl, Embossed, Faux Silk, Grasscloth, Light Beige, Memo Sample, Needs-Image, Needs-Price, Needs-Width, Off-white, Osnaburg Backing, Phillipe Romano, Silk Vinyl, Silver, Stripe, Taupe, Textured, Transitional, Type 2, Type 2 Durable Vinyl, Type 2 Vinyls, Vinyl, Wallcovering, Youngstown Type 2",
+   "why": "memo-sample (orderable $4.25, correct-by-design)"
+  }
+ ]
+}
\ No newline at end of file
diff --git a/tk11042-quote-tag/repair.mjs b/tk11042-quote-tag/repair.mjs
new file mode 100755
index 0000000..161a6f1
--- /dev/null
+++ b/tk11042-quote-tag/repair.mjs
@@ -0,0 +1,86 @@
+#!/usr/bin/env node
+/**
+ * TK-11042 — quote-CTA tag normalization executor.  GATED: requires --live.
+ *
+ * Adds the single theme trigger tag `quotes` to products that already carry
+ * quote INTENT but not the trigger, so the existing "Request a Quote" CTA +
+ * "Order a Sample — $4.25" button render instead of a dead-end page.
+ *
+ * Adds ONE tag. Changes no price, no variant, no inventory, no status.
+ * Records the exact prior tags string per product so rollback restores it
+ * byte-for-byte.
+ *
+ *   node repair.mjs --tranche=1              # dry-run (default)
+ *   node repair.mjs --tranche=1 --limit=20 --live   # pilot
+ *   node repair.mjs --tranche=1 --live              # full tranche (idempotent)
+ */
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+
+const DIR = path.dirname(fileURLToPath(import.meta.url));
+const args = process.argv.slice(2);
+const LIVE = args.includes('--live');
+const TRANCHE = (args.find(a => a.startsWith('--tranche=')) || '--tranche=1').split('=')[1];
+const LIMIT = Number((args.find(a => a.startsWith('--limit=')) || '--limit=0').split('=')[1]) || 0;
+
+const env = Object.fromEntries(
+  fs.readFileSync(process.env.HOME + '/Projects/secrets-manager/.env', 'utf8')
+    .split('\n').filter(l => l.includes('='))
+    .map(l => [l.slice(0, l.indexOf('=')).trim(), l.slice(l.indexOf('=') + 1).trim()]));
+const SHOP = (env.SHOPIFY_STORE_DOMAIN || env.SHOPIFY_STORE).replace(/^https?:\/\//, '');
+const hdr = { 'X-Shopify-Access-Token': env.SHOPIFY_ADMIN_TOKEN, 'Content-Type': 'application/json' };
+const REST = `https://${SHOP}/admin/api/2024-10`;
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+const plan = JSON.parse(fs.readFileSync(path.join(DIR, 'data', 'plan.json'), 'utf8'));
+let rows = plan[`tranche${TRANCHE}`];
+if (!rows) { console.error(`no tranche${TRANCHE} in plan.json`); process.exit(1); }
+if (LIMIT) rows = rows.slice(0, LIMIT);
+
+const prestatePath = path.join(DIR, 'data', `prestate-t${TRANCHE}.jsonl`);
+const already = new Set(fs.existsSync(prestatePath)
+  ? fs.readFileSync(prestatePath, 'utf8').trim().split('\n').filter(Boolean).map(l => JSON.parse(l).id) : []);
+
+let acted = 0, skipped = 0, failed = 0;
+for (const r of rows) {
+  // ---- VERIFY BEFORE ACT: re-read live, never trust the plan ----
+  const g = await fetch(`${REST}/products/${r.id}.json?fields=id,handle,tags,variants,status`, { headers: hdr });
+  if (!g.ok) { console.log('FAIL read', r.handle, g.status); failed++; continue; }
+  const p = (await g.json()).product;
+  const tags = (p.tags || '').split(',').map(s => s.trim()).filter(Boolean);
+  const lc = t => t.trim().toLowerCase();
+
+  if (p.status !== 'active')                                   { console.log('skip', r.handle, 'not active'); skipped++; continue; }
+  if (tags.some(t => lc(t) === 'quotes'))                      { console.log('skip', r.handle, 'already has quotes'); skipped++; continue; }
+  if (already.has(r.id))                                       { console.log('skip', r.handle, 'already in prestate'); skipped++; continue; }
+  // must still be non-sellable — if someone priced it since the plan, leave it alone
+  if ((p.variants || []).some(v => !/sample/i.test(v.title || '') && Number(v.price) > 4.50))
+                                                               { console.log('skip', r.handle, 'now sellable'); skipped++; continue; }
+  // must still carry the intent that justified the change
+  const intentOk = TRANCHE === '1'
+    ? tags.some(t => ['quote-only', 'contact-for-price'].includes(lc(t)))
+    : tags.some(t => lc(t) === 'needs-price');
+  if (!intentOk)                                               { console.log('skip', r.handle, 'intent tag gone'); skipped++; continue; }
+  // theme needs a detectable Sample variant for the sample button
+  if (!(p.variants || []).some(v => /-sample/i.test(v.sku || '') || v.title === 'Sample'))
+                                                               { console.log('skip', r.handle, 'no Sample variant'); skipped++; continue; }
+
+  const tagsBefore = p.tags || '';
+  const tagsAfter = tagsBefore ? `${tagsBefore}, quotes` : 'quotes';
+
+  if (!LIVE) { console.log('WOULD TAG', r.handle, `(+quotes)`); acted++; continue; }
+
+  const u = await fetch(`${REST}/products/${r.id}.json`, {
+    method: 'PUT', headers: hdr,
+    body: JSON.stringify({ product: { id: r.id, tags: tagsAfter } }) });
+  if (!u.ok) { console.log('FAIL write', r.handle, u.status, await u.text()); failed++; await sleep(600); continue; }
+
+  fs.appendFileSync(prestatePath, JSON.stringify({
+    ts: new Date().toISOString(), ticket: 'TK-11042', tranche: TRANCHE,
+    id: r.id, handle: r.handle, vendor: r.vendor, tagsBefore, tagsAfter }) + '\n');
+  acted++; console.log('tagged', r.handle);
+  await sleep(600);
+}
+console.log(`\n${LIVE ? 'LIVE' : 'DRY-RUN'} tranche${TRANCHE}: acted=${acted} skipped=${skipped} failed=${failed}`);
+console.log(LIVE ? `prestate -> ${prestatePath}\nrollback: node rollback-all.mjs --tranche=${TRANCHE} --live` : 'nothing was written.');
diff --git a/tk11042-quote-tag/rollback-all.mjs b/tk11042-quote-tag/rollback-all.mjs
new file mode 100755
index 0000000..13dfc81
--- /dev/null
+++ b/tk11042-quote-tag/rollback-all.mjs
@@ -0,0 +1,35 @@
+#!/usr/bin/env node
+/**
+ * TK-11042 rollback — restore each product's EXACT prior tags string from
+ * prestate. Byte-for-byte restore, so it also undoes nothing else.
+ *   node rollback-all.mjs --tranche=1            # dry-run
+ *   node rollback-all.mjs --tranche=1 --live
+ */
+import fs from 'node:fs';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
+const DIR = path.dirname(fileURLToPath(import.meta.url));
+const args = process.argv.slice(2);
+const LIVE = args.includes('--live');
+const TRANCHE = (args.find(a => a.startsWith('--tranche=')) || '--tranche=1').split('=')[1];
+const env = Object.fromEntries(
+  fs.readFileSync(process.env.HOME + '/Projects/secrets-manager/.env', 'utf8')
+    .split('\n').filter(l => l.includes('='))
+    .map(l => [l.slice(0, l.indexOf('=')).trim(), l.slice(l.indexOf('=') + 1).trim()]));
+const SHOP = (env.SHOPIFY_STORE_DOMAIN || env.SHOPIFY_STORE).replace(/^https?:\/\//, '');
+const hdr = { 'X-Shopify-Access-Token': env.SHOPIFY_ADMIN_TOKEN, 'Content-Type': 'application/json' };
+const REST = `https://${SHOP}/admin/api/2024-10`;
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+const f = path.join(DIR, 'data', `prestate-t${TRANCHE}.jsonl`);
+if (!fs.existsSync(f)) { console.error('no prestate for tranche', TRANCHE); process.exit(1); }
+const rows = fs.readFileSync(f, 'utf8').trim().split('\n').filter(Boolean).map(JSON.parse);
+let n = 0;
+for (const r of rows) {
+  if (!LIVE) { console.log('WOULD RESTORE', r.handle, '->', r.tagsBefore.slice(0, 60) + '…'); continue; }
+  const u = await fetch(`${REST}/products/${r.id}.json`, {
+    method: 'PUT', headers: hdr,
+    body: JSON.stringify({ product: { id: r.id, tags: r.tagsBefore } }) });
+  if (!u.ok) { console.log('FAIL', r.handle, u.status); continue; }
+  n++; console.log('restored', r.handle); await sleep(600);
+}
+console.log(LIVE ? `restored ${n}/${rows.length}` : `dry-run: ${rows.length} would be restored`);

← cf73947 TK-11041: Innovations re-scrape recovers 51/51 identities (0  ·  back to Dw Unbuyable Recovery Pilot  ·  auto-data-snapshot: 2026-09-10T08:48:14 (1 data files) — tk1 d609fc6 →