← back to Designerwallcoverings
Replace blanket Thibaut wait with verified per-product correction evidence
1417da412edabcee60a5b8a0cfa77176f111d4d6 · 2026-09-11 11:11:09 -0700 · Steve Abrams
Files touched
A scripts/thibaut-wide-width-length-gap/RECONCILIATION.mdA scripts/thibaut-wide-width-length-gap/check-official-units.mjsA scripts/thibaut-wide-width-length-gap/out/reconciliation/correction-candidates.jsonA scripts/thibaut-wide-width-length-gap/out/reconciliation/official-units.jsonA scripts/thibaut-wide-width-length-gap/reconcile-canary.mjsA verification/TK-11358/dtd-source-recheck/VERDICT.mdA verification/TK-11358/dtd-source-recheck/claude.txtA verification/TK-11358/dtd-source-recheck/codex-debate.txtA verification/TK-11358/dtd-source-recheck/codex.txtA verification/TK-11358/dtd-source-recheck/grok.txtA verification/TK-11358/dtd-source-recheck/kimi.txtA verification/TK-11358/dtd-source-recheck/muse.txtA verification/TK-11358/dtd-source-recheck/question.txtA verification/TK-11358/dtd-source-recheck/qwen.txtA verification/TK-11358/reconciliation-proof.json
Diff
commit 1417da412edabcee60a5b8a0cfa77176f111d4d6
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Fri Sep 11 11:11:09 2026 -0700
Replace blanket Thibaut wait with verified per-product correction evidence
---
.../RECONCILIATION.md | 21 +
.../check-official-units.mjs | 34 +
.../out/reconciliation/correction-candidates.json | 8190 ++++++++++++++++++++
.../out/reconciliation/official-units.json | 2424 ++++++
.../reconcile-canary.mjs | 52 +
.../TK-11358/dtd-source-recheck/VERDICT.md | 1 +
.../TK-11358/dtd-source-recheck/claude.txt | 1 +
.../TK-11358/dtd-source-recheck/codex-debate.txt | 9 +
verification/TK-11358/dtd-source-recheck/codex.txt | 1 +
verification/TK-11358/dtd-source-recheck/grok.txt | 1 +
verification/TK-11358/dtd-source-recheck/kimi.txt | 1 +
verification/TK-11358/dtd-source-recheck/muse.txt | 1 +
.../TK-11358/dtd-source-recheck/question.txt | 1 +
verification/TK-11358/dtd-source-recheck/qwen.txt | 2 +
verification/TK-11358/reconciliation-proof.json | 45 +
15 files changed, 10784 insertions(+)
diff --git a/scripts/thibaut-wide-width-length-gap/RECONCILIATION.md b/scripts/thibaut-wide-width-length-gap/RECONCILIATION.md
new file mode 100644
index 0000000..414f9dd
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/RECONCILIATION.md
@@ -0,0 +1,21 @@
+# TK-11358 — correction of the blanket vendor-wait diagnosis
+
+The ticket must not be treated as wholly blocked on Thibaut replying. Current public vendor SKU payloads already provide ordering-unit data and some lengths. No additional email was sent.
+
+Fresh exact-canary reproduction: **244 products = 193 Thibaut + 51 Malibu Wallpaper**. Only **155** flagged products match the Wide Width title subset; the earlier 221-product diagnostic was not the actual canary cohort.
+
+| Exact records | Verified classification | Work supported now |
+|---:|---|---|
+| 153 | Official source unit Y; DW roll-labeled variant | Validate price basis and order rules, then correct unit labels; roll lengths must not be fabricated |
+| 23 | Official source unit S with positive published lengths | Prepare verified single/double length backfills |
+| 2 | Official source unit E | Resolve packaging / each-unit semantics |
+| 15 | Exact official page extraction unresolved | Targeted source retry or identity/specification investigation |
+| 51 | Malibu Wallpaper backlog | Separate vendor source reconciliation |
+
+All 244 product IDs, variant IDs/titles, current values, exact source URLs, retrieved timestamps, raw source unit/length fields and next actions are retained in `out/reconciliation/correction-candidates.json`.
+
+Examples: [Bristlecone TWW34032](https://www.thibautdesign.com/products/wallcoverings/TWW34032) exposes `u_m=Y` and a 30-yard minimum note. [T36450](https://www.thibautdesign.com/products/wallcoverings/T36450) exposes `SingleRollLength=4`, lowercase `single_roll_length=8`; its DW variant already states a 12-foot single roll. The 23 S-coded records all have the same 2:1 relation between these two source fields. Field names must not be assumed interchangeable.
+
+The 153 are real catalog unit discrepancies, not grounds to suppress or rebase the canary. Prices, MOQ/step, customer-facing options and true single/double field mapping require validation before applying a correction. No live catalog write, canary baseline reset, installed-canary change or email send occurred in this investigation.
+
+Supersedes the previous blanket `external_wait` conclusion. The vendor reply may help unresolved records; it is not a prerequisite for all work.
diff --git a/scripts/thibaut-wide-width-length-gap/check-official-units.mjs b/scripts/thibaut-wide-width-length-gap/check-official-units.mjs
new file mode 100644
index 0000000..c6af3ae
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/check-official-units.mjs
@@ -0,0 +1,34 @@
+// Read-only official SKU verification. No Shopify mutation, email, or canary baseline updates.
+import fs from 'node:fs';
+const base=new URL('./out/reconciliation/',import.meta.url);
+const cohort=JSON.parse(fs.readFileSync(new URL('live-canary-membership.json',base)));
+const skus=[...new Set(cohort.missing.filter(p=>p.vendor==='Thibaut').map(p=>p.mfr?.value||p.catalog?.mfr_sku).filter(Boolean))];
+const cache=new URL('official-units.json',base);
+const prior=fs.existsSync(cache)?JSON.parse(fs.readFileSync(cache)).rows:[];
+const bySku=new Map(prior.filter(r=>r.status==='verified').map(r=>[r.sku,r]));
+const sleep=ms=>new Promise(r=>setTimeout(r,ms));
+function extract(html,sku){
+ // Only inspect the exact SKU's embedded source object; reject mismatches and absent fields.
+ const flat=html.replaceAll('\\','');
+ const start=flat.indexOf(`{"sku":"${sku}"`);
+ if(start<0)throw new Error('Exact SKU object absent');
+ const tail=flat.slice(start);
+ const field=k=>{const m=tail.match(new RegExp('"'+k+'":(null|"[^"\\r\\n]*"|[0-9.]+)'));return m?JSON.parse(m[1]):undefined;};
+ const unit=field('u_m');if(!unit)throw new Error('Source unit absent');
+ return {u_m:unit,product_code:field('product_code'),single_roll_length:field('single_roll_length'),SingleRollLength:field('SingleRollLength'),web_notes:field('web_notes'),order_min:field('order_min'),order_mult:field('order_mult')};
+}
+const rows=[];let next=0;
+async function worker(){while(next<skus.length){const sku=skus[next++];if(bySku.has(sku)){rows.push(bySku.get(sku));continue;}
+ const url=`https://www.thibautdesign.com/products/wallcoverings/${encodeURIComponent(sku)}`;
+ let row;
+ try{const r=await fetch(url,{signal:AbortSignal.timeout(30000)});const html=await r.text();if(!r.ok)throw Error(`HTTP ${r.status}`);row={sku,url,checked_at:new Date().toISOString(),status:'verified',...extract(html,sku)};}
+ catch(e){row={sku,url,checked_at:new Date().toISOString(),status:'unresolved',error:e.message};}
+ rows.push(row);
+ fs.writeFileSync(cache,JSON.stringify({generated_at:new Date().toISOString(),rows:[...rows]},null,2));
+ if(rows.length%20===0)console.log(`${rows.length}/${skus.length} checked`);
+ await sleep(500);
+}}
+await Promise.all([worker(),worker()]);
+rows.sort((a,b)=>a.sku.localeCompare(b.sku));
+fs.writeFileSync(cache,JSON.stringify({generated_at:new Date().toISOString(),rows},null,2));
+console.log(JSON.stringify({skus:skus.length,verified:rows.filter(r=>r.status==='verified').length,units:rows.reduce((m,r)=>(m[r.u_m||r.status]=(m[r.u_m||r.status]||0)+1,m),{})}));
diff --git a/scripts/thibaut-wide-width-length-gap/out/reconciliation/correction-candidates.json b/scripts/thibaut-wide-width-length-gap/out/reconciliation/correction-candidates.json
new file mode 100644
index 0000000..54bc198
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/out/reconciliation/correction-candidates.json
@@ -0,0 +1,8190 @@
+{
+ "generated_at": "2026-09-11T18:08:37.613381+00:00",
+ "scope": "Exact active four-vendor installed-canary predicate; 244 retained product identities",
+ "counts": {
+ "published_roll_lengths": 23,
+ "official_source_unresolved": 15,
+ "yard_unit_mismatch": 153,
+ "other_source_unit": 2,
+ "other_vendor_backlog": 51
+ },
+ "blanket_external_wait_valid": false,
+ "mutations_performed": false,
+ "email_sends_performed": false,
+ "rows": [
+ {
+ "product_id": "gid://shopify/Product/6944670613555",
+ "handle": "dwtt-70169-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70169",
+ "mfr_sku": "T36450",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44447312379955",
+ "sku": "DWTT-70169",
+ "title": "Sold Per Single Roll (36\" x 12ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T36450",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36450",
+ "checked_at": "2026-09-11T17:50:32.274Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "8",
+ "SingleRollLength": 4,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.0,
+ "double": 8.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944673464371",
+ "handle": "dwtt-70251-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70251",
+ "mfr_sku": "T13619",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44455896055859",
+ "sku": "DWTT-70251",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13619",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13619",
+ "checked_at": "2026-09-11T17:50:32.530Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944684769331",
+ "handle": "dwtt-70554-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70554",
+ "mfr_sku": "T14366",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44455896121395",
+ "sku": "DWTT-70554",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T14366",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14366",
+ "checked_at": "2026-09-11T17:50:34.884Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944685654067",
+ "handle": "dwtt-70581-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70581",
+ "mfr_sku": "T14337",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44447314247731",
+ "sku": "DWTT-70581",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T14337",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14337",
+ "checked_at": "2026-09-11T17:50:33.914Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944685686835",
+ "handle": "dwtt-70582-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70582",
+ "mfr_sku": "T14339",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44447314313267",
+ "sku": "DWTT-70582",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T14339",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14339",
+ "checked_at": "2026-09-11T17:50:35.380Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944688341043",
+ "handle": "dwtt-70660-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70660",
+ "mfr_sku": "T10869",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44438511386675",
+ "sku": "DWTT-70660-Roll",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T10869",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10869",
+ "checked_at": "2026-09-11T17:50:36.485Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944688603187",
+ "handle": "dwtt-70668-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70668-SAMPLE",
+ "mfr_sku": "T10825",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44438511452211",
+ "sku": "DWTT-70668-Roll",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T10825",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10825",
+ "checked_at": "2026-09-11T17:50:37.181Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944693420083",
+ "handle": "dwtt-70844-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70844-SAMPLE",
+ "mfr_sku": "T10455",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44438517284915",
+ "sku": "DWTT-70844-Roll",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T10455",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10455",
+ "checked_at": "2026-09-11T17:50:37.924Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944693813299",
+ "handle": "dwtt-70856-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-70856-SAMPLE",
+ "mfr_sku": "T10446",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44438518104115",
+ "sku": "DWTT-70856-Roll",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T10446",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10446",
+ "checked_at": "2026-09-11T17:50:38.663Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/6944702431283",
+ "handle": "dwtt-71128-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-71128-SAMPLE",
+ "mfr_sku": "T3994",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788375453747",
+ "sku": "DWTT-71128",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": "Single Roll",
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T3994",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T3994",
+ "checked_at": "2026-09-11T17:50:39.411Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "8",
+ "SingleRollLength": 4,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.0,
+ "double": 8.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552655917107",
+ "handle": "solsbury-lavender-wallpaper-thibaut-wallpaper",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80002-Designer-Wallcoverings-Los-Angeles",
+ "mfr_sku": "T45008",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44447314772019",
+ "sku": "DWTT-80002-Designer-Wallcoverings-Los-Angeles",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T45008",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45008",
+ "checked_at": "2026-09-11T17:50:40.156Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552656015411",
+ "handle": "albero-apricot-and-ginger-wallpaper-thibaut-wallpaper",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80004-Designer-Wallcoverings-Los-Angeles",
+ "mfr_sku": "T45010",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44455896383539",
+ "sku": "DWTT-80004-Designer-Wallcoverings-Los-Angeles",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T45010",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45010",
+ "checked_at": "2026-09-11T17:50:41.024Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552656080947",
+ "handle": "albero-seaglass-wallpaper-thibaut-wallpaper",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80005-Designer-Wallcoverings-Los-Angeles",
+ "mfr_sku": "T45011",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44455896449075",
+ "sku": "DWTT-80005-Designer-Wallcoverings-Los-Angeles",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T45011",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45011",
+ "checked_at": "2026-09-11T17:50:41.209Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552656146483",
+ "handle": "albero-tangerine-and-turquoise-wallpaper-thibaut-wallpaper",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80006-Designer-Wallcoverings-Los-Angeles",
+ "mfr_sku": "T45012",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44455896547379",
+ "sku": "DWTT-80006-Designer-Wallcoverings-Los-Angeles",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T45012",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45012",
+ "checked_at": "2026-09-11T17:50:42.046Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552714604595",
+ "handle": "dwtt-80657-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80657",
+ "mfr_sku": "T14318",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243567349811",
+ "sku": "DWTT-80657",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T14318",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14318",
+ "checked_at": "2026-09-11T17:50:42.969Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552715849779",
+ "handle": "dwtt-80681-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80681",
+ "mfr_sku": "T14348",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243569840179",
+ "sku": "DWTT-80681",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T14348",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14348",
+ "checked_at": "2026-09-11T17:50:43.621Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552717848627",
+ "handle": "dwtt-80706-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80706",
+ "mfr_sku": "T36415",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243573411891",
+ "sku": "DWTT-80706",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T36415",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36415",
+ "checked_at": "2026-09-11T17:50:43.972Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552720306227",
+ "handle": "dwtt-80716-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80716",
+ "mfr_sku": "T36426",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243576000563",
+ "sku": "DWTT-80716",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T36426",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36426",
+ "checked_at": "2026-09-11T17:50:44.571Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722141235",
+ "handle": "dwtt-80752-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80752",
+ "mfr_sku": "T13614",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580162099",
+ "sku": "DWTT-80752",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13614",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13614",
+ "checked_at": "2026-09-11T17:50:45.042Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722305075",
+ "handle": "dwtt-80755-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80755",
+ "mfr_sku": "T13617",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580489779",
+ "sku": "DWTT-80755",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13617",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13617",
+ "checked_at": "2026-09-11T17:50:45.564Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722370611",
+ "handle": "dwtt-80756-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80756",
+ "mfr_sku": "T13618",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580588083",
+ "sku": "DWTT-80756",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13618",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13618",
+ "checked_at": "2026-09-11T17:50:46.127Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722468915",
+ "handle": "dwtt-80758-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80758",
+ "mfr_sku": "T13620",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580817459",
+ "sku": "DWTT-80758",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13620",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13620",
+ "checked_at": "2026-09-11T17:50:46.889Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722501683",
+ "handle": "dwtt-80759-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80759",
+ "mfr_sku": "T13621",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580882995",
+ "sku": "DWTT-80759",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13621",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13621",
+ "checked_at": "2026-09-11T17:50:47.111Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722534451",
+ "handle": "dwtt-80760-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80760",
+ "mfr_sku": "T13622",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243580948531",
+ "sku": "DWTT-80760",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13622",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13622",
+ "checked_at": "2026-09-11T17:50:47.885Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552722927667",
+ "handle": "dwtt-80769-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80769",
+ "mfr_sku": "T13654",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243581800499",
+ "sku": "DWTT-80769",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13654",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13654",
+ "checked_at": "2026-09-11T17:50:48.159Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552723288115",
+ "handle": "dwtt-80776-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80776",
+ "mfr_sku": "T13661",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243582488627",
+ "sku": "DWTT-80776",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13661",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13661",
+ "checked_at": "2026-09-11T17:50:49.107Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7552723484723",
+ "handle": "dwtt-80780-designer-wallcoverings-los-angeles",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-80780",
+ "mfr_sku": "T13665",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/43243582849075",
+ "sku": "DWTT-80780",
+ "title": "Sold Per Single Roll (27\" x 13.5ft)"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "T13665",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13665",
+ "checked_at": "2026-09-11T17:50:49.149Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 4.5,
+ "double": 9.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7802983678003",
+ "handle": "herriot-way-embroidery-fabrics-af9639-white-on-flax-thibaut",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-75019",
+ "mfr_sku": "AF9639",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788375879731",
+ "sku": "DWTT-75019",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "AF9639",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AF9639",
+ "checked_at": "2026-09-11T17:50:50.377Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "FB-P-AF",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 50,
+ "order_mult": 25
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7865265487923",
+ "handle": "aida-beige-on-blue-dwtt-74450",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74450",
+ "mfr_sku": "9020",
+ "category": "other_source_unit",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44452066295859",
+ "sku": "DWTT-74450",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "9020",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/9020",
+ "checked_at": "2026-09-11T17:50:50.143Z",
+ "status": "verified",
+ "u_m": "E",
+ "product_code": "WP-ARM",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Distributed exclusively by Thibaut in North America only. This item is made to order and is drop shipped direct from Italy in 3 weeks from placement of a firm order. All orders are non-cancellable or returnable. CFAs are not available. To place a firm order please contact client experience.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Resolve E source unit/packaging; do not treat zero as a roll length."
+ },
+ {
+ "product_id": "gid://shopify/Product/7865265520691",
+ "handle": "barafundle-metallic-champagne-dwtt-72984",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-72984",
+ "mfr_sku": "AT1405",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44452066361395",
+ "sku": "DWTT-72984",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "AT1405",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AT1405",
+ "checked_at": "2026-09-11T17:50:51.286Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-AF",
+ "single_roll_length": "11",
+ "SingleRollLength": 5.5,
+ "web_notes": "AVAILABLE WHILE CURRENT SUPPLIES LAST. ITEM WILL NOT BE RE-ORDERED.",
+ "order_min": 150,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 5.5,
+ "double": 11.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7865265553459",
+ "handle": "barafundle-aqua-dwtt-72985",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-72985",
+ "mfr_sku": "AT1406",
+ "category": "published_roll_lengths",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44452066426931",
+ "sku": "DWTT-72985",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "AT1406",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AT1406",
+ "checked_at": "2026-09-11T17:50:51.668Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-AF",
+ "single_roll_length": "11",
+ "SingleRollLength": 5.5,
+ "web_notes": "AVAILABLE WHILE CURRENT SUPPLIES LAST. ITEM WILL NOT BE RE-ORDERED.",
+ "order_min": 150,
+ "order_mult": 24
+ },
+ "candidate_lengths_yards": {
+ "single": 5.5,
+ "double": 11.0
+ },
+ "next_action": "Validate source field mapping and units, prepare compare-and-set metafield diff and rollback; no blind apply."
+ },
+ {
+ "product_id": "gid://shopify/Product/7865272434739",
+ "handle": "aida-brown-on-beige-dwtt-74451",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74451",
+ "mfr_sku": "9022",
+ "category": "other_source_unit",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44452081991731",
+ "sku": "DWTT-74451",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "9022",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/9022",
+ "checked_at": "2026-09-11T17:50:52.221Z",
+ "status": "verified",
+ "u_m": "E",
+ "product_code": "WP-ARM",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Distributed exclusively by Thibaut in North America only. This item is made to order and is drop shipped direct from Italy in 3 weeks from placement of a firm order. All orders are non-cancellable or returnable. CFAs are not available. To place a firm order please contact client experience.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Resolve E source unit/packaging; do not treat zero as a roll length."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896279351347",
+ "handle": "luta-sisal-wide-width-beige-and-metallic-silver-dwtt-74394",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74394",
+ "mfr_sku": "TWW14525",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585092808755",
+ "sku": "DWTT-74394",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14525",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14525",
+ "checked_at": "2026-09-11T17:50:52.645Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896279416883",
+ "handle": "luta-sisal-wide-width-mist-dwtt-74396",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74396",
+ "mfr_sku": "TWW14528",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585092939827",
+ "sku": "DWTT-74396",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14528",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14528",
+ "checked_at": "2026-09-11T17:50:53.194Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896402100275",
+ "handle": "luta-sisal-wide-width-emerald-dwtt-74400",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74400",
+ "mfr_sku": "TWW14534",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585433825331",
+ "sku": "DWTT-74400",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14534",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14534",
+ "checked_at": "2026-09-11T17:50:53.651Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896482283571",
+ "handle": "luta-sisal-wide-width-turquoise-dwtt-74401",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74401",
+ "mfr_sku": "TWW14535",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585711730739",
+ "sku": "DWTT-74401",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14535",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14535",
+ "checked_at": "2026-09-11T17:50:54.124Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896482349107",
+ "handle": "rimba-wide-width-flax-dwtt-74402",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74402",
+ "mfr_sku": "TWW14538",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585711829043",
+ "sku": "DWTT-74402",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14538",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14538",
+ "checked_at": "2026-09-11T17:50:54.646Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896482381875",
+ "handle": "rimba-wide-width-sand-dwtt-74403",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74403",
+ "mfr_sku": "TWW14537",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585711894579",
+ "sku": "DWTT-74403",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14537",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14537",
+ "checked_at": "2026-09-11T17:50:55.054Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896528355379",
+ "handle": "rimba-wide-width-camel-dwtt-74404",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74404",
+ "mfr_sku": "TWW14539",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585785753651",
+ "sku": "DWTT-74404",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14539",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14539",
+ "checked_at": "2026-09-11T17:50:55.581Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896528420915",
+ "handle": "rimba-wide-width-blush-dwtt-74405",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74405",
+ "mfr_sku": "TWW14540",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585785851955",
+ "sku": "DWTT-74405",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14540",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14540",
+ "checked_at": "2026-09-11T17:50:55.997Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896528453683",
+ "handle": "rimba-wide-width-ice-dwtt-74406",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74406",
+ "mfr_sku": "TWW14541",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585785950259",
+ "sku": "DWTT-74406",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14541",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14541",
+ "checked_at": "2026-09-11T17:50:56.509Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896547328051",
+ "handle": "rimba-wide-width-robin-s-egg-dwtt-74407",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74407",
+ "mfr_sku": "TWW14542",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585831661619",
+ "sku": "DWTT-74407",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14542",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14542",
+ "checked_at": "2026-09-11T17:50:57.011Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896547360819",
+ "handle": "rimba-wide-width-spring-dwtt-74408",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74408",
+ "mfr_sku": "TWW14543",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585831727155",
+ "sku": "DWTT-74408",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14543",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14543",
+ "checked_at": "2026-09-11T17:50:57.526Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896547393587",
+ "handle": "rimba-wide-width-cornflower-dwtt-74409",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74409",
+ "mfr_sku": "TWW14544",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585831792691",
+ "sku": "DWTT-74409",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14544",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14544",
+ "checked_at": "2026-09-11T17:50:58.136Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896579145779",
+ "handle": "rimba-wide-width-navy-dwtt-74410",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74410",
+ "mfr_sku": "TWW14545",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585910599731",
+ "sku": "DWTT-74410",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14545",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14545",
+ "checked_at": "2026-09-11T17:50:58.461Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896579178547",
+ "handle": "rimba-wide-width-charcoal-dwtt-74411",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74411",
+ "mfr_sku": "TWW14546",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585910665267",
+ "sku": "DWTT-74411",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14546",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14546",
+ "checked_at": "2026-09-11T17:50:59.088Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896579244083",
+ "handle": "normandy-wide-width-beige-dwtt-74412",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74412",
+ "mfr_sku": "TWW14547",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44585910796339",
+ "sku": "DWTT-74412",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14547",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14547",
+ "checked_at": "2026-09-11T17:50:59.322Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896612536371",
+ "handle": "normandy-wide-width-straw-dwtt-74413",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74413",
+ "mfr_sku": "TWW14548",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44586002055219",
+ "sku": "DWTT-74413",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14548",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14548",
+ "checked_at": "2026-09-11T17:51:00.083Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896612569139",
+ "handle": "normandy-wide-width-blush-dwtt-74414",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74414",
+ "mfr_sku": "TWW14549",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44586002120755",
+ "sku": "DWTT-74414",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14549",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14549",
+ "checked_at": "2026-09-11T17:51:00.273Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896612601907",
+ "handle": "normandy-wide-width-whisper-dwtt-74415",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74415",
+ "mfr_sku": "TWW14550",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44586002186291",
+ "sku": "DWTT-74415",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14550",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14550",
+ "checked_at": "2026-09-11T17:51:00.921Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896659427379",
+ "handle": "normandy-wide-width-willow-dwtt-74416",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74416",
+ "mfr_sku": "TWW14551",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587009081395",
+ "sku": "DWTT-74416",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14551",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14551",
+ "checked_at": "2026-09-11T17:51:01.245Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896659460147",
+ "handle": "normandy-wide-width-celadon-dwtt-74417",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74417",
+ "mfr_sku": "TWW14552",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587009146931",
+ "sku": "DWTT-74417",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14552",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14552",
+ "checked_at": "2026-09-11T17:51:01.895Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896659492915",
+ "handle": "normandy-wide-width-robin-s-egg-dwtt-74418",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74418",
+ "mfr_sku": "TWW14553",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587009212467",
+ "sku": "DWTT-74418",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14553",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14553",
+ "checked_at": "2026-09-11T17:51:02.211Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896689606707",
+ "handle": "normandy-wide-width-spa-blue-dwtt-74419",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74419",
+ "mfr_sku": "TWW14554",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587118854195",
+ "sku": "DWTT-74419",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14554",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14554",
+ "checked_at": "2026-09-11T17:51:02.827Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896689639475",
+ "handle": "normandy-wide-width-blue-dwtt-74420",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74420",
+ "mfr_sku": "TWW14556",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587118919731",
+ "sku": "DWTT-74420",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14556",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14556",
+ "checked_at": "2026-09-11T17:51:02.983Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896689705011",
+ "handle": "normandy-wide-width-taupe-dwtt-74421",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74421",
+ "mfr_sku": "TWW14555",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587119050803",
+ "sku": "DWTT-74421",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14555",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14555",
+ "checked_at": "2026-09-11T17:51:03.841Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896713461811",
+ "handle": "normandy-wide-width-mineral-dwtt-74422",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74422",
+ "mfr_sku": "TWW14557",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587279941683",
+ "sku": "DWTT-74422",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14557",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14557",
+ "checked_at": "2026-09-11T17:51:04.021Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896713494579",
+ "handle": "normandy-wide-width-emerald-dwtt-74423",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74423",
+ "mfr_sku": "TWW14558",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587280007219",
+ "sku": "DWTT-74423",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14558",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14558",
+ "checked_at": "2026-09-11T17:51:04.814Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896713527347",
+ "handle": "normandy-wide-width-navy-dwtt-74424",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74424",
+ "mfr_sku": "TWW14559",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587280072755",
+ "sku": "DWTT-74424",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14559",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14559",
+ "checked_at": "2026-09-11T17:51:04.999Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896725618739",
+ "handle": "normandy-wide-width-charcoal-dwtt-74425",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74425",
+ "mfr_sku": "TWW14560",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587396268083",
+ "sku": "DWTT-74425",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14560",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14560",
+ "checked_at": "2026-09-11T17:51:05.746Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896725651507",
+ "handle": "spiro-wide-width-off-white-dwtt-74426",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74426",
+ "mfr_sku": "TWW14561",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587396333619",
+ "sku": "DWTT-74426",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14561",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14561",
+ "checked_at": "2026-09-11T17:51:05.879Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896725684275",
+ "handle": "spiro-wide-width-grey-dwtt-74427",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74427",
+ "mfr_sku": "TWW14562",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587396399155",
+ "sku": "DWTT-74427",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14562",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14562",
+ "checked_at": "2026-09-11T17:51:06.719Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896760123443",
+ "handle": "spiro-wide-width-straw-dwtt-74428",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74428",
+ "mfr_sku": "TWW14564",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44587746230323",
+ "sku": "DWTT-74428",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14564",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14564",
+ "checked_at": "2026-09-11T17:51:06.878Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896894472243",
+ "handle": "spiro-wide-width-robin-s-egg-dwtt-74430",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74430",
+ "mfr_sku": "TWW14565",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275236915",
+ "sku": "DWTT-74430",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14565",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14565",
+ "checked_at": "2026-09-11T17:51:07.725Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896894505011",
+ "handle": "spiro-wide-width-cornflower-dwtt-74431",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74431",
+ "mfr_sku": "TWW14566",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275302451",
+ "sku": "DWTT-74431",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14566",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14566",
+ "checked_at": "2026-09-11T17:51:07.810Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896894537779",
+ "handle": "spiro-wide-width-aqua-and-neutral-dwtt-74432",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74432",
+ "mfr_sku": "TWW14567",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275367987",
+ "sku": "DWTT-74432",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14567",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14567",
+ "checked_at": "2026-09-11T17:51:08.684Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896911118387",
+ "handle": "spiro-wide-width-blue-dwtt-74433",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74433",
+ "mfr_sku": "TWW14568",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588327141427",
+ "sku": "DWTT-74433",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14568",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14568",
+ "checked_at": "2026-09-11T17:51:08.780Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896911151155",
+ "handle": "wood-herringbone-wide-width-oyster-dwtt-74434",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74434",
+ "mfr_sku": "TWW14569",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588327206963",
+ "sku": "DWTT-74434",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14569",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14569",
+ "checked_at": "2026-09-11T17:51:09.649Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896911183923",
+ "handle": "wood-herringbone-wide-width-dove-dwtt-74435",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74435",
+ "mfr_sku": "TWW14570",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588327272499",
+ "sku": "DWTT-74435",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14570",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14570",
+ "checked_at": "2026-09-11T17:51:09.699Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896928714803",
+ "handle": "wood-herringbone-wide-width-taupe-dwtt-74436",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74436",
+ "mfr_sku": "TWW14572",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588403392563",
+ "sku": "DWTT-74436",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14572",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14572",
+ "checked_at": "2026-09-11T17:51:10.599Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896929271859",
+ "handle": "wood-herringbone-wide-width-slate-dwtt-74437",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74437",
+ "mfr_sku": "TWW14571",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588404801587",
+ "sku": "DWTT-74437",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14571",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14571",
+ "checked_at": "2026-09-11T17:51:10.654Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896929337395",
+ "handle": "wood-herringbone-wide-width-natural-on-metallic-silver-dwtt-74438",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74438",
+ "mfr_sku": "TWW14573",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588404932659",
+ "sku": "DWTT-74438",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14573",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14573",
+ "checked_at": "2026-09-11T17:51:11.653Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896943788083",
+ "handle": "wood-herringbone-wide-width-charcoal-dwtt-74439",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74439",
+ "mfr_sku": "TWW14574",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588431179827",
+ "sku": "DWTT-74439",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14574",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14574",
+ "checked_at": "2026-09-11T17:51:11.499Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896943820851",
+ "handle": "woolston-wide-width-beige-dwtt-74440",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74440",
+ "mfr_sku": "TWW14575",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588431245363",
+ "sku": "DWTT-74440",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14575",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14575",
+ "checked_at": "2026-09-11T17:51:12.462Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896943853619",
+ "handle": "woolston-wide-width-ivory-dwtt-74441",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74441",
+ "mfr_sku": "TWW14576",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588431310899",
+ "sku": "DWTT-74441",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14576",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14576",
+ "checked_at": "2026-09-11T17:51:12.593Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896955256883",
+ "handle": "woolston-wide-width-spa-blue-dwtt-74442",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74442",
+ "mfr_sku": "TWW14578",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588453560371",
+ "sku": "DWTT-74442",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14578",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14578",
+ "checked_at": "2026-09-11T17:51:13.408Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896955322419",
+ "handle": "woolston-wide-width-pale-blue-dwtt-74444",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74444",
+ "mfr_sku": "TWW14579",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588453691443",
+ "sku": "DWTT-74444",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14579",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14579",
+ "checked_at": "2026-09-11T17:51:13.559Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896995594291",
+ "handle": "woolston-wide-width-ivory-dwtt-74445",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74445",
+ "mfr_sku": "TWW14580",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588518866995",
+ "sku": "DWTT-74445",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14580",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14580",
+ "checked_at": "2026-09-11T17:51:14.340Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896995627059",
+ "handle": "woolston-wide-width-yellow-dwtt-74446",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74446",
+ "mfr_sku": "TWW14581",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588518932531",
+ "sku": "DWTT-74446",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14581",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14581",
+ "checked_at": "2026-09-11T17:51:14.504Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7896995659827",
+ "handle": "woolston-wide-width-coral-dwtt-74447",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74447",
+ "mfr_sku": "TWW14582",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588518998067",
+ "sku": "DWTT-74447",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14582",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14582",
+ "checked_at": "2026-09-11T17:51:15.289Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897015058483",
+ "handle": "woolston-wide-width-light-blue-dwtt-74448",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74448",
+ "mfr_sku": "TWW14583",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588669632563",
+ "sku": "DWTT-74448",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14583",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14583",
+ "checked_at": "2026-09-11T17:51:15.473Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897015091251",
+ "handle": "woolston-wide-width-navy-dwtt-74449",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74449",
+ "mfr_sku": "TWW14584",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588669698099",
+ "sku": "DWTT-74449",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14584",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14584",
+ "checked_at": "2026-09-11T17:51:16.266Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897112150067",
+ "handle": "bayshore-basket-wide-width-off-white-dwtt-74452",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74452",
+ "mfr_sku": "TWW14587",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588880855091",
+ "sku": "DWTT-74452",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14587",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14587",
+ "checked_at": "2026-09-11T17:51:16.269Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897112346675",
+ "handle": "bayshore-basket-wide-width-sand-dwtt-74453",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74453",
+ "mfr_sku": "TWW14588",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588881281075",
+ "sku": "DWTT-74453",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14588",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14588",
+ "checked_at": "2026-09-11T17:51:17.374Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897138593843",
+ "handle": "bayshore-basket-wide-width-grey-dwtt-74454",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74454",
+ "mfr_sku": "TWW14589",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588948258867",
+ "sku": "DWTT-74454",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14589",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14589",
+ "checked_at": "2026-09-11T17:51:17.422Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897138659379",
+ "handle": "bayshore-basket-wide-width-taupe-dwtt-74455",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74455",
+ "mfr_sku": "TWW14590",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588948357171",
+ "sku": "DWTT-74455",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14590",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14590",
+ "checked_at": "2026-09-11T17:51:18.369Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897138692147",
+ "handle": "bayshore-basket-wide-width-robin-s-egg-dwtt-74456",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74456",
+ "mfr_sku": "TWW14591",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44588948422707",
+ "sku": "DWTT-74456",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14591",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14591",
+ "checked_at": "2026-09-11T17:51:18.327Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897159499827",
+ "handle": "bayshore-basket-wide-width-navy-dwtt-74457",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74457",
+ "mfr_sku": "TWW14592",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589017169971",
+ "sku": "DWTT-74457",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW14592",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14592",
+ "checked_at": "2026-09-11T17:51:19.138Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897159532595",
+ "handle": "taluk-sisal-wide-width-off-white-dwtt-74458",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74458",
+ "mfr_sku": "TWW281",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589017235507",
+ "sku": "DWTT-74458",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW281",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW281",
+ "checked_at": "2026-09-11T17:51:19.397Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897159565363",
+ "handle": "taluk-sisal-wide-width-ivory-dwtt-74459",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74459",
+ "mfr_sku": "TWW282",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589017301043",
+ "sku": "DWTT-74459",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW282",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW282",
+ "checked_at": "2026-09-11T17:51:20.197Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897169264691",
+ "handle": "taluk-sisal-wide-width-ice-dwtt-74460",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74460",
+ "mfr_sku": "TWW283",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589056786483",
+ "sku": "DWTT-74460",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW283",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW283",
+ "checked_at": "2026-09-11T17:51:20.547Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897169297459",
+ "handle": "taluk-sisal-wide-width-robin-s-egg-dwtt-74461",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74461",
+ "mfr_sku": "TWW284",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589056852019",
+ "sku": "DWTT-74461",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW284",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW284",
+ "checked_at": "2026-09-11T17:51:21.098Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897169330227",
+ "handle": "taluk-sisal-wide-width-sage-dwtt-74462",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74462",
+ "mfr_sku": "TWW287",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589056917555",
+ "sku": "DWTT-74462",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW287",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW287",
+ "checked_at": "2026-09-11T17:51:21.478Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897195970611",
+ "handle": "kendari-grass-wide-width-putty-dwtt-74463",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74463",
+ "mfr_sku": "TWW295",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589102465075",
+ "sku": "DWTT-74463",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW295",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW295",
+ "checked_at": "2026-09-11T17:51:22.185Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897196003379",
+ "handle": "kendari-grass-wide-width-robin-s-egg-dwtt-74464",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74464",
+ "mfr_sku": "TWW303",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589102530611",
+ "sku": "DWTT-74464",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW303",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW303",
+ "checked_at": "2026-09-11T17:51:22.439Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897196068915",
+ "handle": "journey-wide-width-off-white-dwtt-74465",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74465",
+ "mfr_sku": "TWW313",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589102661683",
+ "sku": "DWTT-74465",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW313",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW313",
+ "checked_at": "2026-09-11T17:51:23.772Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897245155379",
+ "handle": "journey-wide-width-taupe-dwtt-74466",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74466",
+ "mfr_sku": "TWW317",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589168295987",
+ "sku": "DWTT-74466",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW317",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW317",
+ "checked_at": "2026-09-11T17:51:24.272Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897245188147",
+ "handle": "wild-silk-wide-width-cafe-dwtt-74467",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74467",
+ "mfr_sku": "TWW337",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589168361523",
+ "sku": "DWTT-74467",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW337",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW337",
+ "checked_at": "2026-09-11T17:51:25.179Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897245220915",
+ "handle": "wild-silk-wide-width-charcoal-on-metallic-silver-dwtt-74468",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74468",
+ "mfr_sku": "TWW335",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589168427059",
+ "sku": "DWTT-74468",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW335",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW335",
+ "checked_at": "2026-09-11T17:51:25.816Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897264947251",
+ "handle": "palmier-wide-width-beige-dwtt-74469",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74469",
+ "mfr_sku": "TWW34009",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589300056115",
+ "sku": "DWTT-74469",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34009",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34009",
+ "checked_at": "2026-09-11T17:51:26.173Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897264980019",
+ "handle": "palmier-wide-width-brown-dwtt-74470",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74470",
+ "mfr_sku": "TWW34008",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589300121651",
+ "sku": "DWTT-74470",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34008",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34008",
+ "checked_at": "2026-09-11T17:51:27.215Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897265012787",
+ "handle": "twillingate-wide-width-cream-dwtt-74471",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74471",
+ "mfr_sku": "TWW34026",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589300187187",
+ "sku": "DWTT-74471",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34026",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34026",
+ "checked_at": "2026-09-11T17:51:27.279Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897275072563",
+ "handle": "twillingate-wide-width-off-white-dwtt-74472",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74472",
+ "mfr_sku": "TWW34027",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589343440947",
+ "sku": "DWTT-74472",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34027",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34027",
+ "checked_at": "2026-09-11T17:51:28.164Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897275105331",
+ "handle": "twillingate-wide-width-spa-blue-dwtt-74473",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74473",
+ "mfr_sku": "TWW34028",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589343506483",
+ "sku": "DWTT-74473",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34028",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34028",
+ "checked_at": "2026-09-11T17:51:28.223Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897275138099",
+ "handle": "twillingate-wide-width-charcoal-gray-dwtt-74474",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74474",
+ "mfr_sku": "TWW34029",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589343572019",
+ "sku": "DWTT-74474",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34029",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34029",
+ "checked_at": "2026-09-11T17:51:29.100Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897290440755",
+ "handle": "twillingate-wide-width-brown-dwtt-74475",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74475",
+ "mfr_sku": "TWW34030",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589379715123",
+ "sku": "DWTT-74475",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34030",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34030",
+ "checked_at": "2026-09-11T17:51:29.105Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897290506291",
+ "handle": "bristlecone-wide-width-beige-dwtt-74476",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74476",
+ "mfr_sku": "TWW34031",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589379780659",
+ "sku": "DWTT-74476",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34031",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34031",
+ "checked_at": "2026-09-11T17:51:30.097Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897290539059",
+ "handle": "bristlecone-wide-width-navy-dwtt-74477",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74477",
+ "mfr_sku": "TWW34033",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589379846195",
+ "sku": "DWTT-74477",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34033",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34033",
+ "checked_at": "2026-09-11T17:51:30.095Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897310691379",
+ "handle": "bristlecone-wide-width-green-and-black-dwtt-74479",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74479",
+ "mfr_sku": "TWW34034",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589470646323",
+ "sku": "DWTT-74479",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34034",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34034",
+ "checked_at": "2026-09-11T17:51:31.202Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897310724147",
+ "handle": "taluk-sisal-wide-width-palmetto-dwtt-74480",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74480",
+ "mfr_sku": "TWW34035",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589470711859",
+ "sku": "DWTT-74480",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34035",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34035",
+ "checked_at": "2026-09-11T17:51:31.219Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897310756915",
+ "handle": "taluk-sisal-wide-width-light-blue-dwtt-74481",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74481",
+ "mfr_sku": "TWW34037",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589470777395",
+ "sku": "DWTT-74481",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34037",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34037",
+ "checked_at": "2026-09-11T17:51:32.368Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897331433523",
+ "handle": "taluk-sisal-wide-width-sky-blue-dwtt-74482",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74482",
+ "mfr_sku": "TWW34036",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589525336115",
+ "sku": "DWTT-74482",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34036",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34036",
+ "checked_at": "2026-09-11T17:51:32.302Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897331466291",
+ "handle": "taluk-sisal-wide-width-terracotta-dwtt-74483",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74483",
+ "mfr_sku": "TWW34038",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589525401651",
+ "sku": "DWTT-74483",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34038",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34038",
+ "checked_at": "2026-09-11T17:51:33.333Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897331531827",
+ "handle": "taluk-sisal-wide-width-forest-green-dwtt-74484",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74484",
+ "mfr_sku": "TWW34039",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589525598259",
+ "sku": "DWTT-74484",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34039",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34039",
+ "checked_at": "2026-09-11T17:51:36.880Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897341329459",
+ "handle": "taluk-sisal-wide-width-seamist-dwtt-74485",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74485",
+ "mfr_sku": "TWW34040",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589567868979",
+ "sku": "DWTT-74485",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34040",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34040",
+ "checked_at": "2026-09-11T17:51:34.324Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897341362227",
+ "handle": "taluk-sisal-wide-width-ivory-dwtt-74486",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74486",
+ "mfr_sku": "TWW34041",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589567934515",
+ "sku": "DWTT-74486",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34041",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34041",
+ "checked_at": "2026-09-11T17:51:35.228Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897341394995",
+ "handle": "taluk-sisal-wide-width-cream-dwtt-74487",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74487",
+ "mfr_sku": "TWW34042",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589568000051",
+ "sku": "DWTT-74487",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34042",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34042",
+ "checked_at": "2026-09-11T17:51:36.289Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897371770931",
+ "handle": "taluk-sisal-wide-width-olive-dwtt-74488",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74488",
+ "mfr_sku": "TWW34044",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589625212979",
+ "sku": "DWTT-74488",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34044",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34044",
+ "checked_at": "2026-09-11T17:51:37.291Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897371803699",
+ "handle": "taluk-sisal-wide-width-blush-dwtt-74489",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74489",
+ "mfr_sku": "TWW34043",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589625278515",
+ "sku": "DWTT-74489",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34043",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34043",
+ "checked_at": "2026-09-11T17:51:37.907Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897371836467",
+ "handle": "taluk-sisal-wide-width-peacock-dwtt-74490",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74490",
+ "mfr_sku": "TWW34045",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589625344051",
+ "sku": "DWTT-74490",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34045",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34045",
+ "checked_at": "2026-09-11T17:51:38.318Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897395658803",
+ "handle": "linen-weave-wide-width-pine-green-dwtt-74491",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74491",
+ "mfr_sku": "TWW34046",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589658177587",
+ "sku": "DWTT-74491",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34046",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34046",
+ "checked_at": "2026-09-11T17:51:38.881Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 500 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897395691571",
+ "handle": "linen-weave-wide-width-mineral-dwtt-74492",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74492",
+ "mfr_sku": "TWW34048",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589658243123",
+ "sku": "DWTT-74492",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34048",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34048",
+ "checked_at": "2026-09-11T17:51:39.176Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897395724339",
+ "handle": "linen-weave-wide-width-robin-s-egg-dwtt-74493",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74493",
+ "mfr_sku": "TWW34047",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589658308659",
+ "sku": "DWTT-74493",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34047",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34047",
+ "checked_at": "2026-09-11T17:51:39.769Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897407127603",
+ "handle": "linen-weave-wide-width-navy-dwtt-74494",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74494",
+ "mfr_sku": "TWW34050",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589677412403",
+ "sku": "DWTT-74494",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34050",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34050",
+ "checked_at": "2026-09-11T17:51:40.174Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897407160371",
+ "handle": "linen-weave-wide-width-blue-dwtt-74495",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74495",
+ "mfr_sku": "TWW34049",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589677477939",
+ "sku": "DWTT-74495",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34049",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34049",
+ "checked_at": "2026-09-11T17:51:40.728Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897407193139",
+ "handle": "linen-weave-wide-width-black-dwtt-74496",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74496",
+ "mfr_sku": "TWW34051",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589677543475",
+ "sku": "DWTT-74496",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34051",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34051",
+ "checked_at": "2026-09-11T17:51:41.255Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897418203187",
+ "handle": "linen-weave-wide-width-dark-grey-dwtt-74497",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74497",
+ "mfr_sku": "TWW34052",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589707526195",
+ "sku": "DWTT-74497",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34052",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34052",
+ "checked_at": "2026-09-11T17:51:46.268Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897418235955",
+ "handle": "linen-weave-wide-width-tan-dwtt-74498",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74498",
+ "mfr_sku": "TWW34053",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589707591731",
+ "sku": "DWTT-74498",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34053",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34053",
+ "checked_at": "2026-09-11T17:51:42.260Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897418268723",
+ "handle": "linen-weave-wide-width-caramel-dwtt-74499",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74499",
+ "mfr_sku": "TWW34054",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44589707657267",
+ "sku": "DWTT-74499",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34054",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34054",
+ "checked_at": "2026-09-11T17:51:43.261Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897505005619",
+ "handle": "linen-weave-wide-width-off-white-dwtt-74500",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74500",
+ "mfr_sku": "TWW34055",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590180728883",
+ "sku": "DWTT-74500",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34055",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34055",
+ "checked_at": "2026-09-11T17:51:44.229Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897505071155",
+ "handle": "linen-weave-wide-width-white-dwtt-74501",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74501",
+ "mfr_sku": "TWW34057",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590180827187",
+ "sku": "DWTT-74501",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34057",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34057",
+ "checked_at": "2026-09-11T17:51:45.197Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897505103923",
+ "handle": "saddle-weave-wide-width-cream-dwtt-74502",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74502",
+ "mfr_sku": "TWW34058",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590180892723",
+ "sku": "DWTT-74502",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34058",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34058",
+ "checked_at": "2026-09-11T17:51:46.225Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897527058483",
+ "handle": "saddle-weave-wide-width-beige-dwtt-74503",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74503",
+ "mfr_sku": "TWW34059",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590387757107",
+ "sku": "DWTT-74503",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34059",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34059",
+ "checked_at": "2026-09-11T17:51:47.169Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897527091251",
+ "handle": "linen-weave-wide-width-sand-dwtt-74504",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74504",
+ "mfr_sku": "TWW34056",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590387822643",
+ "sku": "DWTT-74504",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34056",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34056",
+ "checked_at": "2026-09-11T17:51:47.284Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897527156787",
+ "handle": "saddle-weave-wide-width-taupe-dwtt-74505",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74505",
+ "mfr_sku": "TWW34060",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590388150323",
+ "sku": "DWTT-74505",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34060",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34060",
+ "checked_at": "2026-09-11T17:51:48.136Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897544556595",
+ "handle": "saddle-weave-wide-width-brown-dwtt-74506",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74506",
+ "mfr_sku": "TWW34061",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590421278771",
+ "sku": "DWTT-74506",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34061",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34061",
+ "checked_at": "2026-09-11T17:51:48.343Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897544589363",
+ "handle": "saddle-weave-wide-width-powder-blue-dwtt-74507",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74507",
+ "mfr_sku": "TWW34063",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590421344307",
+ "sku": "DWTT-74507",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34063",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34063",
+ "checked_at": "2026-09-11T17:51:49.115Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897544622131",
+ "handle": "saddle-weave-wide-width-peacock-dwtt-74508",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74508",
+ "mfr_sku": "TWW34062",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590421409843",
+ "sku": "DWTT-74508",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34062",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34062",
+ "checked_at": "2026-09-11T17:51:49.292Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897619660851",
+ "handle": "saddle-weave-wide-width-black-and-silver-dwtt-74509",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74509",
+ "mfr_sku": "TWW34065",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590982266931",
+ "sku": "DWTT-74509",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34065",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34065",
+ "checked_at": "2026-09-11T17:51:50.059Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897619693619",
+ "handle": "saddle-weave-wide-width-navy-dwtt-74510",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74510",
+ "mfr_sku": "TWW34064",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590982332467",
+ "sku": "DWTT-74510",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34064",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34064",
+ "checked_at": "2026-09-11T17:51:50.250Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897619726387",
+ "handle": "tenaya-wide-width-dusk-dwtt-74511",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74511",
+ "mfr_sku": "TWW34066",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44590982398003",
+ "sku": "DWTT-74511",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34066",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34066",
+ "checked_at": "2026-09-11T17:51:50.845Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897639518259",
+ "handle": "tenaya-wide-width-mineral-dwtt-74512",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74512",
+ "mfr_sku": "TWW34067",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591022342195",
+ "sku": "DWTT-74512",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34067",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34067",
+ "checked_at": "2026-09-11T17:51:51.231Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897639551027",
+ "handle": "tenaya-wide-width-sage-dwtt-74513",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74513",
+ "mfr_sku": "TWW34069",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591022407731",
+ "sku": "DWTT-74513",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34069",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34069",
+ "checked_at": "2026-09-11T17:51:51.714Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897639583795",
+ "handle": "tenaya-wide-width-fog-dwtt-74514",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74514",
+ "mfr_sku": "TWW34068",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591022473267",
+ "sku": "DWTT-74514",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34068",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34068",
+ "checked_at": "2026-09-11T17:51:52.274Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897700466739",
+ "handle": "tenaya-wide-width-spa-blue-dwtt-74515",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74515",
+ "mfr_sku": "TWW34070",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591138177075",
+ "sku": "DWTT-74515",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34070",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34070",
+ "checked_at": "2026-09-11T17:51:52.562Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897700499507",
+ "handle": "tenaya-wide-width-cream-dwtt-74516",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74516",
+ "mfr_sku": "TWW34071",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591138242611",
+ "sku": "DWTT-74516",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34071",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34071",
+ "checked_at": "2026-09-11T17:51:55.772Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897700532275",
+ "handle": "tenaya-wide-width-beige-dwtt-74517",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74517",
+ "mfr_sku": "TWW34072",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591138308147",
+ "sku": "DWTT-74517",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34072",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34072",
+ "checked_at": "2026-09-11T17:51:53.488Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897716031539",
+ "handle": "katamari-wide-width-silver-dwtt-74518",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74518",
+ "mfr_sku": "TWW34075",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591162818611",
+ "sku": "DWTT-74518",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34075",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34075",
+ "checked_at": "2026-09-11T17:51:54.468Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897716162611",
+ "handle": "katamari-wide-width-dark-gold-dwtt-74519",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74519",
+ "mfr_sku": "TWW34073",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591162982451",
+ "sku": "DWTT-74519",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34073",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34073",
+ "checked_at": "2026-09-11T17:51:55.434Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897716391987",
+ "handle": "katamari-wide-width-pewter-dwtt-74520",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74520",
+ "mfr_sku": "TWW34074",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591163244595",
+ "sku": "DWTT-74520",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34074",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34074",
+ "checked_at": "2026-09-11T17:51:56.546Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897730973747",
+ "handle": "katamari-wide-width-pearl-dwtt-74521",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74521",
+ "mfr_sku": "TWW34076",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591195193395",
+ "sku": "DWTT-74521",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34076",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34076",
+ "checked_at": "2026-09-11T17:51:56.722Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897731006515",
+ "handle": "katamari-wide-width-powder-blue-dwtt-74522",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74522",
+ "mfr_sku": "TWW34077",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591195258931",
+ "sku": "DWTT-74522",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34077",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34077",
+ "checked_at": "2026-09-11T17:51:57.500Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897731039283",
+ "handle": "grand-falls-wide-width-spa-blue-dwtt-74523",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74523",
+ "mfr_sku": "TWW34079",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591195324467",
+ "sku": "DWTT-74523",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34079",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34079",
+ "checked_at": "2026-09-11T17:51:57.724Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897743032371",
+ "handle": "grand-falls-wide-width-blue-dwtt-74524",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74524",
+ "mfr_sku": "TWW34078",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591227306035",
+ "sku": "DWTT-74524",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34078",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34078",
+ "checked_at": "2026-09-11T17:51:58.481Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897743065139",
+ "handle": "grand-falls-wide-width-blush-dwtt-74525",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74525",
+ "mfr_sku": "TWW34080",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591227371571",
+ "sku": "DWTT-74525",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34080",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34080",
+ "checked_at": "2026-09-11T17:51:58.664Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897743097907",
+ "handle": "grand-falls-wide-width-beige-dwtt-74526",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74526",
+ "mfr_sku": "TWW34081",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591227437107",
+ "sku": "DWTT-74526",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34081",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34081",
+ "checked_at": "2026-09-11T17:51:59.454Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897790709811",
+ "handle": "grand-falls-wide-width-silver-dwtt-74527",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74527",
+ "mfr_sku": "TWW34083",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591323742259",
+ "sku": "DWTT-74527",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34083",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34083",
+ "checked_at": "2026-09-11T17:51:59.629Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897790775347",
+ "handle": "grand-falls-wide-width-forest-green-dwtt-74528",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74528",
+ "mfr_sku": "TWW34082",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591323840563",
+ "sku": "DWTT-74528",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34082",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34082",
+ "checked_at": "2026-09-11T17:52:00.513Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897790808115",
+ "handle": "grand-falls-wide-width-bark-dwtt-74529",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74529",
+ "mfr_sku": "TWW34084",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591323906099",
+ "sku": "DWTT-74529",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34084",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34084",
+ "checked_at": "2026-09-11T17:52:00.711Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897910575155",
+ "handle": "copenhagen-wide-width-black-dwtt-74530",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74530",
+ "mfr_sku": "TWW34085",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591571075123",
+ "sku": "DWTT-74530",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34085",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34085",
+ "checked_at": "2026-09-11T17:52:01.506Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897910640691",
+ "handle": "copenhagen-wide-width-navy-dwtt-74531",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74531",
+ "mfr_sku": "TWW34086",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591571173427",
+ "sku": "DWTT-74531",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34086",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34086",
+ "checked_at": "2026-09-11T17:52:01.692Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897910673459",
+ "handle": "copenhagen-wide-width-taupe-dwtt-74532",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74532",
+ "mfr_sku": "TWW34087",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591571238963",
+ "sku": "DWTT-74532",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34087",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34087",
+ "checked_at": "2026-09-11T17:52:02.502Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897919422515",
+ "handle": "copenhagen-wide-width-cream-dwtt-74533",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74533",
+ "mfr_sku": "TWW34089",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591597060147",
+ "sku": "DWTT-74533",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34089",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34089",
+ "checked_at": "2026-09-11T17:52:03.556Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897919488051",
+ "handle": "copenhagen-wide-width-wheat-dwtt-74534",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74534",
+ "mfr_sku": "TWW34090",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591597191219",
+ "sku": "DWTT-74534",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34090",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34090",
+ "checked_at": "2026-09-11T17:52:03.554Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897919586355",
+ "handle": "copenhagen-wide-width-off-white-dwtt-74535",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74535",
+ "mfr_sku": "TWW34088",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591597387827",
+ "sku": "DWTT-74535",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34088",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34088",
+ "checked_at": "2026-09-11T17:52:04.542Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897939673139",
+ "handle": "copenhagen-wide-width-light-sage-dwtt-74536",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74536",
+ "mfr_sku": "TWW34091",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591659745331",
+ "sku": "DWTT-74536",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34091",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34091",
+ "checked_at": "2026-09-11T17:52:04.544Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897939705907",
+ "handle": "katamari-bud-wide-width-pewter-and-white-dwtt-74537",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74537",
+ "mfr_sku": "TWW34094",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591659810867",
+ "sku": "DWTT-74537",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34094",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34094",
+ "checked_at": "2026-09-11T17:52:05.569Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897939738675",
+ "handle": "copenhagen-wide-width-lavender-dwtt-74538",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74538",
+ "mfr_sku": "TWW34092",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591659876403",
+ "sku": "DWTT-74538",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34092",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34092",
+ "checked_at": "2026-09-11T17:52:05.506Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897950781491",
+ "handle": "katamari-bud-wide-width-dark-gold-and-white-dwtt-74539",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74539",
+ "mfr_sku": "TWW34093",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591686254643",
+ "sku": "DWTT-74539",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34093",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34093",
+ "checked_at": "2026-09-11T17:52:06.495Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897950814259",
+ "handle": "katamari-bud-wide-width-silver-and-black-dwtt-74540",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74540",
+ "mfr_sku": "TWW34095",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591686320179",
+ "sku": "DWTT-74540",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34095",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34095",
+ "checked_at": "2026-09-11T17:52:06.545Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897950847027",
+ "handle": "katamari-bud-wide-width-pearl-and-white-dwtt-74541",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74541",
+ "mfr_sku": "TWW34096",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591686385715",
+ "sku": "DWTT-74541",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34096",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34096",
+ "checked_at": "2026-09-11T17:52:07.531Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897969066035",
+ "handle": "katamari-bud-wide-width-powder-blue-and-white-dwtt-74542",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74542",
+ "mfr_sku": "TWW34097",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591742025779",
+ "sku": "DWTT-74542",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34097",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34097",
+ "checked_at": "2026-09-11T17:52:07.535Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897969098803",
+ "handle": "palmier-wide-width-citron-and-blue-dwtt-74543",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74543",
+ "mfr_sku": "TWW34098",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591742091315",
+ "sku": "DWTT-74543",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34098",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34098",
+ "checked_at": "2026-09-11T17:52:08.444Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7897969131571",
+ "handle": "palmier-wide-width-spa-blue-dwtt-74544",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74544",
+ "mfr_sku": "TWW34099",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44591742156851",
+ "sku": "DWTT-74544",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW34099",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34099",
+ "checked_at": "2026-09-11T17:52:08.547Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898841579571",
+ "handle": "benfield-blue-dwtt-74545",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74545",
+ "mfr_sku": "TWW365",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44594945163315",
+ "sku": "DWTT-74545",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW365",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW365",
+ "checked_at": "2026-09-11T17:52:10.315Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898841612339",
+ "handle": "benfield-navy-dwtt-74546",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74546",
+ "mfr_sku": "TWW366",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44594945228851",
+ "sku": "DWTT-74546",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW366",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW366",
+ "checked_at": "2026-09-11T17:52:10.797Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898841677875",
+ "handle": "benfield-cream-dwtt-74547",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74547",
+ "mfr_sku": "TWW367",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44594945327155",
+ "sku": "DWTT-74547",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW367",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW367",
+ "checked_at": "2026-09-11T17:52:12.045Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898986086451",
+ "handle": "benfield-aqua-dwtt-74548",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74548",
+ "mfr_sku": "TWW369",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595110674483",
+ "sku": "DWTT-74548",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW369",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW369",
+ "checked_at": "2026-09-11T17:52:12.693Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898986250291",
+ "handle": "benfield-charcoal-dwtt-74549",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74549",
+ "mfr_sku": "TWW368",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595110805555",
+ "sku": "DWTT-74549",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW368",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW368",
+ "checked_at": "2026-09-11T17:52:13.562Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7898986381363",
+ "handle": "benfield-flax-dwtt-74550",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74550",
+ "mfr_sku": "TWW370",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595110969395",
+ "sku": "DWTT-74550",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW370",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW370",
+ "checked_at": "2026-09-11T17:52:13.940Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899158642739",
+ "handle": "taluk-sisal-wide-width-beige-dwtt-74551",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74551",
+ "mfr_sku": "TWW75145",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595501596723",
+ "sku": "DWTT-74551",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75145",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75145",
+ "checked_at": "2026-09-11T17:52:14.723Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899158806579",
+ "handle": "taluk-sisal-wide-width-mushroom-dwtt-74552",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74552",
+ "mfr_sku": "TWW75147",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595501760563",
+ "sku": "DWTT-74552",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75147",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75147",
+ "checked_at": "2026-09-11T17:52:14.873Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899158904883",
+ "handle": "taluk-sisal-wide-width-light-taupe-dwtt-74553",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74553",
+ "mfr_sku": "TWW75146",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595501891635",
+ "sku": "DWTT-74553",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75146",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75146",
+ "checked_at": "2026-09-11T17:52:15.728Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899330379827",
+ "handle": "taluk-sisal-wide-width-grey-dwtt-74554",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74554",
+ "mfr_sku": "TWW75149",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595753615411",
+ "sku": "DWTT-74554",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75149",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75149",
+ "checked_at": "2026-09-11T17:52:16.509Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899330576435",
+ "handle": "taluk-sisal-wide-width-sand-dwtt-74555",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74555",
+ "mfr_sku": "TWW75148",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595753812019",
+ "sku": "DWTT-74555",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75148",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75148",
+ "checked_at": "2026-09-11T17:52:16.846Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Available while supplies last, this item will not be reordered.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899330707507",
+ "handle": "taluk-sisal-wide-width-dark-grey-dwtt-74556",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74556",
+ "mfr_sku": "TWW75150",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595753975859",
+ "sku": "DWTT-74556",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75150",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75150",
+ "checked_at": "2026-09-11T17:52:18.052Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899374551091",
+ "handle": "taluk-sisal-wide-width-black-dwtt-74557",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74557",
+ "mfr_sku": "TWW75152",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595883507763",
+ "sku": "DWTT-74557",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75152",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75152",
+ "checked_at": "2026-09-11T17:52:18.234Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899374583859",
+ "handle": "taluk-sisal-wide-width-charcoal-dwtt-74558",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74558",
+ "mfr_sku": "TWW75151",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595883573299",
+ "sku": "DWTT-74558",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75151",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75151",
+ "checked_at": "2026-09-11T17:52:19.748Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899374649395",
+ "handle": "taluk-sisal-wide-width-willow-dwtt-74559",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74559",
+ "mfr_sku": "TWW75153",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595883966515",
+ "sku": "DWTT-74559",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75153",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75153",
+ "checked_at": "2026-09-11T17:52:19.637Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899386675251",
+ "handle": "taluk-sisal-wide-width-green-dwtt-74560",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74560",
+ "mfr_sku": "TWW75154",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595994329139",
+ "sku": "DWTT-74560",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75154",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75154",
+ "checked_at": "2026-09-11T17:52:21.797Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899386708019",
+ "handle": "taluk-sisal-wide-width-mineral-dwtt-74561",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74561",
+ "mfr_sku": "TWW75155",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595994394675",
+ "sku": "DWTT-74561",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75155",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75155",
+ "checked_at": "2026-09-11T17:52:21.868Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899386740787",
+ "handle": "taluk-sisal-wide-width-blue-dwtt-74562",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74562",
+ "mfr_sku": "TWW75156",
+ "category": "yard_unit_mismatch",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44595994460211",
+ "sku": "DWTT-74562",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75156",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75156",
+ "checked_at": "2026-09-11T17:52:30.882Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ "next_action": "Verify price basis, MOQ/increment and variant options, then correct selling unit; do not invent roll lengths."
+ },
+ {
+ "product_id": "gid://shopify/Product/7899471937587",
+ "handle": "taluk-sisal-wide-width-aqua-dwtt-74564",
+ "vendor": "Thibaut",
+ "dw_sku": "DWTT-74564",
+ "mfr_sku": "TWW75158",
+ "category": "official_source_unresolved",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44596260372531",
+ "sku": "DWTT-74564",
+ "title": "Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": {
+ "sku": "TWW75158",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75158",
+ "checked_at": "2026-09-11T17:52:23.419Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ "next_action": "Retry/resolve exact official SKU source; use existing catalog/vendor evidence where available."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292212576307",
+ "handle": "dwqw-56973-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56973",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319906734131",
+ "sku": "DWQW-56973",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292213067827",
+ "handle": "dwqw-56974-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56974",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319908569139",
+ "sku": "DWQW-56974",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292213952563",
+ "handle": "dwqw-56976-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56976",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319911944243",
+ "sku": "DWQW-56976",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292214476851",
+ "handle": "dwqw-56977-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56977",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319913844787",
+ "sku": "DWQW-56977",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292215099443",
+ "handle": "dwqw-56978-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56978",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319915909171",
+ "sku": "DWQW-56978",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292215885875",
+ "handle": "dwqw-56980-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56980",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319918628915",
+ "sku": "DWQW-56980",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292216344627",
+ "handle": "dwqw-56981-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-56981",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42319919939635",
+ "sku": "DWQW-56981",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292291088435",
+ "handle": "dwqw-57099-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57099",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320151117875",
+ "sku": "DWQW-57099",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292292038707",
+ "handle": "dwqw-57100-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57100",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320153411635",
+ "sku": "DWQW-57100",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292292857907",
+ "handle": "dwqw-57101-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57101",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320155738163",
+ "sku": "DWQW-57101",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292294365235",
+ "handle": "dwqw-57103-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57103",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320159998003",
+ "sku": "DWQW-57103",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292312059955",
+ "handle": "dwqw-57125-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57125",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320213508147",
+ "sku": "DWQW-57125",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292312846387",
+ "handle": "dwqw-57126-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57126",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320215932979",
+ "sku": "DWQW-57126",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292313927731",
+ "handle": "dwqw-57127-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57127",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320218816563",
+ "sku": "DWQW-57127",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292315009075",
+ "handle": "dwqw-57128-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57128",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320221077555",
+ "sku": "DWQW-57128",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292318449715",
+ "handle": "dwqw-57133-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57133",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320230088755",
+ "sku": "DWQW-57133",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292319137843",
+ "handle": "dwqw-57134-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57134",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320231727155",
+ "sku": "DWQW-57134",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292320055347",
+ "handle": "dwqw-57135-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57135",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320233660467",
+ "sku": "DWQW-57135",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292354461747",
+ "handle": "dwqw-57217-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57217",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320312762419",
+ "sku": "DWQW-57217",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292355280947",
+ "handle": "dwqw-57218-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57218",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320314695731",
+ "sku": "DWQW-57218",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292356067379",
+ "handle": "dwqw-57219-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57219",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320316956723",
+ "sku": "DWQW-57219",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292360654899",
+ "handle": "dwqw-57224-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57224",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320328949811",
+ "sku": "DWQW-57224",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292361539635",
+ "handle": "dwqw-57225-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57225",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320330522675",
+ "sku": "DWQW-57225",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292377563187",
+ "handle": "dwqw-57245-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57245",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320368992307",
+ "sku": "DWQW-57245",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292379070515",
+ "handle": "dwqw-57247-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57247",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320372564019",
+ "sku": "DWQW-57247",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292379889715",
+ "handle": "dwqw-57248-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57248",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320374661171",
+ "sku": "DWQW-57248",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292554706995",
+ "handle": "dwqw-57502-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57502",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320776724531",
+ "sku": "DWQW-57502",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292555853875",
+ "handle": "dwqw-57503-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57503",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320779378739",
+ "sku": "DWQW-57503",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292556738611",
+ "handle": "dwqw-57504-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57504",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320781541427",
+ "sku": "DWQW-57504",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292558770227",
+ "handle": "dwqw-57506-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57506",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320786882611",
+ "sku": "DWQW-57506",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292575514675",
+ "handle": "dwqw-57522-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57522",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320827416627",
+ "sku": "DWQW-57522",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292576956467",
+ "handle": "dwqw-57523-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57523",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320830791731",
+ "sku": "DWQW-57523",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292578922547",
+ "handle": "dwqw-57525-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57525",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320835051571",
+ "sku": "DWQW-57525",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292579971123",
+ "handle": "dwqw-57526-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57526",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320837083187",
+ "sku": "DWQW-57526",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7292602482739",
+ "handle": "dwqw-57544-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57544",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42320890691635",
+ "sku": "DWQW-57544",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7317649227827",
+ "handle": "dwqw-57999-handle",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-57999",
+ "mfr_sku": null,
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/42368171507763",
+ "sku": "DWQW-57999",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822321483827",
+ "handle": "coastal-hemp-pavestone-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-59748",
+ "mfr_sku": "BV30416",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44543986368563",
+ "sku": "DWQW-59748",
+ "title": "Sold Per Single Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822360608819",
+ "handle": "tiger-island-peachy-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61157",
+ "mfr_sku": "LN40406",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788354809907",
+ "sku": "DWQW-61157",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365229107",
+ "handle": "geo-inlay-fabric-denim-and-sky-blue-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61291",
+ "mfr_sku": "LW51902F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361068595",
+ "sku": "DWQW-61291",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365261875",
+ "handle": "geo-inlay-fabric-chartreuse-and-basil-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61292",
+ "mfr_sku": "LW51904F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361101363",
+ "sku": "DWQW-61292",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365294643",
+ "handle": "geo-inlay-fabric-saddle-brown-and-steel-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61293",
+ "mfr_sku": "LW51906F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361134131",
+ "sku": "DWQW-61293",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365327411",
+ "handle": "geo-inlay-fabric-cove-gray-and-carrara-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61294",
+ "mfr_sku": "LW51908F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361166899",
+ "sku": "DWQW-61294",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365360179",
+ "handle": "sunset-stripes-fabric-mercury-and-sand-dollar-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61295",
+ "mfr_sku": "LW52000F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361199667",
+ "sku": "DWQW-61295",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365392947",
+ "handle": "sunset-stripes-fabric-moody-blue-and-frost-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61296",
+ "mfr_sku": "LW52002F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361232435",
+ "sku": "DWQW-61296",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365425715",
+ "handle": "sunset-stripes-fabric-blueberry-and-vermillion-orange-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61297",
+ "mfr_sku": "LW52006F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361265203",
+ "sku": "DWQW-61297",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365458483",
+ "handle": "brushmarks-fabric-black-and-white-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61298",
+ "mfr_sku": "LW52100F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361297971",
+ "sku": "DWQW-61298",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365491251",
+ "handle": "brushmarks-fabric-navy-and-white-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61299",
+ "mfr_sku": "LW52102F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361363507",
+ "sku": "DWQW-61299",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365524019",
+ "handle": "brushmarks-fabric-buttercup-and-white-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61300",
+ "mfr_sku": "LW52103F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361429043",
+ "sku": "DWQW-61300",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365556787",
+ "handle": "brushmarks-fabric-teal-and-white-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61301",
+ "mfr_sku": "LW52104F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361461811",
+ "sku": "DWQW-61301",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822365589555",
+ "handle": "brushmarks-fabric-orangesicle-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61302",
+ "mfr_sku": "LW52106F",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788361494579",
+ "sku": "DWQW-61302",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ },
+ {
+ "product_id": "gid://shopify/Product/7822366375987",
+ "handle": "sand-dollar-stripe-coastal-blue-wallcovering-malibu-wallpaper",
+ "vendor": "Malibu Wallpaper",
+ "dw_sku": "DWQW-61325",
+ "mfr_sku": "MB30512",
+ "category": "other_vendor_backlog",
+ "before": {
+ "variants": [
+ {
+ "id": "gid://shopify/ProductVariant/44788362444851",
+ "sku": "DWQW-61325",
+ "title": "Sold Per Roll"
+ }
+ ],
+ "single_roll_length": null,
+ "double_roll_length": null,
+ "order_unit": null,
+ "minimum": "2",
+ "increment": "2"
+ },
+ "official_source": null,
+ "next_action": "Reconcile separate Malibu Wallpaper baseline backlog from its own authoritative catalog."
+ }
+ ]
+}
diff --git a/scripts/thibaut-wide-width-length-gap/out/reconciliation/official-units.json b/scripts/thibaut-wide-width-length-gap/out/reconciliation/official-units.json
new file mode 100644
index 0000000..f99340a
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/out/reconciliation/official-units.json
@@ -0,0 +1,2424 @@
+{
+ "generated_at": "2026-09-11T17:52:31.395Z",
+ "rows": [
+ {
+ "sku": "9020",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/9020",
+ "checked_at": "2026-09-11T17:50:50.143Z",
+ "status": "verified",
+ "u_m": "E",
+ "product_code": "WP-ARM",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Distributed exclusively by Thibaut in North America only. This item is made to order and is drop shipped direct from Italy in 3 weeks from placement of a firm order. All orders are non-cancellable or returnable. CFAs are not available. To place a firm order please contact client experience.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "9022",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/9022",
+ "checked_at": "2026-09-11T17:50:52.221Z",
+ "status": "verified",
+ "u_m": "E",
+ "product_code": "WP-ARM",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Distributed exclusively by Thibaut in North America only. This item is made to order and is drop shipped direct from Italy in 3 weeks from placement of a firm order. All orders are non-cancellable or returnable. CFAs are not available. To place a firm order please contact client experience.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "AF9639",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AF9639",
+ "checked_at": "2026-09-11T17:50:50.377Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "FB-P-AF",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 50,
+ "order_mult": 25
+ },
+ {
+ "sku": "AT1405",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AT1405",
+ "checked_at": "2026-09-11T17:50:51.286Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-AF",
+ "single_roll_length": "11",
+ "SingleRollLength": 5.5,
+ "web_notes": "AVAILABLE WHILE CURRENT SUPPLIES LAST. ITEM WILL NOT BE RE-ORDERED.",
+ "order_min": 150,
+ "order_mult": 24
+ },
+ {
+ "sku": "AT1406",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/AT1406",
+ "checked_at": "2026-09-11T17:50:51.668Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-AF",
+ "single_roll_length": "11",
+ "SingleRollLength": 5.5,
+ "web_notes": "AVAILABLE WHILE CURRENT SUPPLIES LAST. ITEM WILL NOT BE RE-ORDERED.",
+ "order_min": 150,
+ "order_mult": 24
+ },
+ {
+ "sku": "T10446",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10446",
+ "checked_at": "2026-09-11T17:50:38.663Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T10455",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10455",
+ "checked_at": "2026-09-11T17:50:37.924Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T10825",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10825",
+ "checked_at": "2026-09-11T17:50:37.181Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T10869",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T10869",
+ "checked_at": "2026-09-11T17:50:36.485Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T13614",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13614",
+ "checked_at": "2026-09-11T17:50:45.042Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13617",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13617",
+ "checked_at": "2026-09-11T17:50:45.564Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13618",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13618",
+ "checked_at": "2026-09-11T17:50:46.127Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13619",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13619",
+ "checked_at": "2026-09-11T17:50:32.530Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13620",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13620",
+ "checked_at": "2026-09-11T17:50:46.889Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13621",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13621",
+ "checked_at": "2026-09-11T17:50:47.111Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13622",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13622",
+ "checked_at": "2026-09-11T17:50:47.885Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13654",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13654",
+ "checked_at": "2026-09-11T17:50:48.159Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13661",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13661",
+ "checked_at": "2026-09-11T17:50:49.107Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T13665",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T13665",
+ "checked_at": "2026-09-11T17:50:49.149Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T14318",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14318",
+ "checked_at": "2026-09-11T17:50:42.969Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "T14337",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14337",
+ "checked_at": "2026-09-11T17:50:33.914Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "T14339",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14339",
+ "checked_at": "2026-09-11T17:50:35.380Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "T14348",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14348",
+ "checked_at": "2026-09-11T17:50:43.621Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T14366",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T14366",
+ "checked_at": "2026-09-11T17:50:34.884Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "T36415",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36415",
+ "checked_at": "2026-09-11T17:50:43.972Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T36426",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36426",
+ "checked_at": "2026-09-11T17:50:44.571Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T36450",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T36450",
+ "checked_at": "2026-09-11T17:50:32.274Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "8",
+ "SingleRollLength": 4,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T3994",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T3994",
+ "checked_at": "2026-09-11T17:50:39.411Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "8",
+ "SingleRollLength": 4,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 24
+ },
+ {
+ "sku": "T45008",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45008",
+ "checked_at": "2026-09-11T17:50:40.156Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T45010",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45010",
+ "checked_at": "2026-09-11T17:50:41.024Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T45011",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45011",
+ "checked_at": "2026-09-11T17:50:41.209Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "T45012",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/T45012",
+ "checked_at": "2026-09-11T17:50:42.046Z",
+ "status": "verified",
+ "u_m": "S",
+ "product_code": "WP-TBO",
+ "single_roll_length": "9",
+ "SingleRollLength": 4.5,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 24
+ },
+ {
+ "sku": "TWW14525",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14525",
+ "checked_at": "2026-09-11T17:50:52.645Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14528",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14528",
+ "checked_at": "2026-09-11T17:50:53.194Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14534",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14534",
+ "checked_at": "2026-09-11T17:50:53.651Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14535",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14535",
+ "checked_at": "2026-09-11T17:50:54.124Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14537",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14537",
+ "checked_at": "2026-09-11T17:50:55.054Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14538",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14538",
+ "checked_at": "2026-09-11T17:50:54.646Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14539",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14539",
+ "checked_at": "2026-09-11T17:50:55.581Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14540",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14540",
+ "checked_at": "2026-09-11T17:50:55.997Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14541",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14541",
+ "checked_at": "2026-09-11T17:50:56.509Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14542",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14542",
+ "checked_at": "2026-09-11T17:50:57.011Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14543",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14543",
+ "checked_at": "2026-09-11T17:50:57.526Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14544",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14544",
+ "checked_at": "2026-09-11T17:50:58.136Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14545",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14545",
+ "checked_at": "2026-09-11T17:50:58.461Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14546",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14546",
+ "checked_at": "2026-09-11T17:50:59.088Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14547",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14547",
+ "checked_at": "2026-09-11T17:50:59.322Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14548",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14548",
+ "checked_at": "2026-09-11T17:51:00.083Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14549",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14549",
+ "checked_at": "2026-09-11T17:51:00.273Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14550",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14550",
+ "checked_at": "2026-09-11T17:51:00.921Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14551",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14551",
+ "checked_at": "2026-09-11T17:51:01.245Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14552",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14552",
+ "checked_at": "2026-09-11T17:51:01.895Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14553",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14553",
+ "checked_at": "2026-09-11T17:51:02.211Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14554",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14554",
+ "checked_at": "2026-09-11T17:51:02.827Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14555",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14555",
+ "checked_at": "2026-09-11T17:51:03.841Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14556",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14556",
+ "checked_at": "2026-09-11T17:51:02.983Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14557",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14557",
+ "checked_at": "2026-09-11T17:51:04.021Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14558",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14558",
+ "checked_at": "2026-09-11T17:51:04.814Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14559",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14559",
+ "checked_at": "2026-09-11T17:51:04.999Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14560",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14560",
+ "checked_at": "2026-09-11T17:51:05.746Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14561",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14561",
+ "checked_at": "2026-09-11T17:51:05.879Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14562",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14562",
+ "checked_at": "2026-09-11T17:51:06.719Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14564",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14564",
+ "checked_at": "2026-09-11T17:51:06.878Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14565",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14565",
+ "checked_at": "2026-09-11T17:51:07.725Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14566",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14566",
+ "checked_at": "2026-09-11T17:51:07.810Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14567",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14567",
+ "checked_at": "2026-09-11T17:51:08.684Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14568",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14568",
+ "checked_at": "2026-09-11T17:51:08.780Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14569",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14569",
+ "checked_at": "2026-09-11T17:51:09.649Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14570",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14570",
+ "checked_at": "2026-09-11T17:51:09.699Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14571",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14571",
+ "checked_at": "2026-09-11T17:51:10.654Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14572",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14572",
+ "checked_at": "2026-09-11T17:51:10.599Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14573",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14573",
+ "checked_at": "2026-09-11T17:51:11.653Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14574",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14574",
+ "checked_at": "2026-09-11T17:51:11.499Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14575",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14575",
+ "checked_at": "2026-09-11T17:51:12.462Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14576",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14576",
+ "checked_at": "2026-09-11T17:51:12.593Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14578",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14578",
+ "checked_at": "2026-09-11T17:51:13.408Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14579",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14579",
+ "checked_at": "2026-09-11T17:51:13.559Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14580",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14580",
+ "checked_at": "2026-09-11T17:51:14.340Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14581",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14581",
+ "checked_at": "2026-09-11T17:51:14.504Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14582",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14582",
+ "checked_at": "2026-09-11T17:51:15.289Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14583",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14583",
+ "checked_at": "2026-09-11T17:51:15.473Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14584",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14584",
+ "checked_at": "2026-09-11T17:51:16.266Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14587",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14587",
+ "checked_at": "2026-09-11T17:51:16.269Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14588",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14588",
+ "checked_at": "2026-09-11T17:51:17.374Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14589",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14589",
+ "checked_at": "2026-09-11T17:51:17.422Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14590",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14590",
+ "checked_at": "2026-09-11T17:51:18.369Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14591",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14591",
+ "checked_at": "2026-09-11T17:51:18.327Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW14592",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW14592",
+ "checked_at": "2026-09-11T17:51:19.138Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW281",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW281",
+ "checked_at": "2026-09-11T17:51:19.397Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW282",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW282",
+ "checked_at": "2026-09-11T17:51:20.197Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW283",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW283",
+ "checked_at": "2026-09-11T17:51:20.547Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW284",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW284",
+ "checked_at": "2026-09-11T17:51:21.098Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW287",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW287",
+ "checked_at": "2026-09-11T17:51:21.478Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW295",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW295",
+ "checked_at": "2026-09-11T17:51:22.185Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW303",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW303",
+ "checked_at": "2026-09-11T17:51:22.439Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW313",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW313",
+ "checked_at": "2026-09-11T17:51:23.772Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW317",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW317",
+ "checked_at": "2026-09-11T17:51:24.272Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW335",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW335",
+ "checked_at": "2026-09-11T17:51:25.816Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW337",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW337",
+ "checked_at": "2026-09-11T17:51:25.179Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW34008",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34008",
+ "checked_at": "2026-09-11T17:51:27.215Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34009",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34009",
+ "checked_at": "2026-09-11T17:51:26.173Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34026",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34026",
+ "checked_at": "2026-09-11T17:51:27.279Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34027",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34027",
+ "checked_at": "2026-09-11T17:51:28.164Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34028",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34028",
+ "checked_at": "2026-09-11T17:51:28.223Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34029",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34029",
+ "checked_at": "2026-09-11T17:51:29.100Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34030",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34030",
+ "checked_at": "2026-09-11T17:51:29.105Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34031",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34031",
+ "checked_at": "2026-09-11T17:51:30.097Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34033",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34033",
+ "checked_at": "2026-09-11T17:51:30.095Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34034",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34034",
+ "checked_at": "2026-09-11T17:51:31.202Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34035",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34035",
+ "checked_at": "2026-09-11T17:51:31.219Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34036",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34036",
+ "checked_at": "2026-09-11T17:51:32.302Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34037",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34037",
+ "checked_at": "2026-09-11T17:51:32.368Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34038",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34038",
+ "checked_at": "2026-09-11T17:51:33.333Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34039",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34039",
+ "checked_at": "2026-09-11T17:51:36.880Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34040",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34040",
+ "checked_at": "2026-09-11T17:51:34.324Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34041",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34041",
+ "checked_at": "2026-09-11T17:51:35.228Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34042",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34042",
+ "checked_at": "2026-09-11T17:51:36.289Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34043",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34043",
+ "checked_at": "2026-09-11T17:51:37.907Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34044",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34044",
+ "checked_at": "2026-09-11T17:51:37.291Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34045",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34045",
+ "checked_at": "2026-09-11T17:51:38.318Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34046",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34046",
+ "checked_at": "2026-09-11T17:51:38.881Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 500 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34047",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34047",
+ "checked_at": "2026-09-11T17:51:39.769Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34048",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34048",
+ "checked_at": "2026-09-11T17:51:39.176Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34049",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34049",
+ "checked_at": "2026-09-11T17:51:40.728Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34050",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34050",
+ "checked_at": "2026-09-11T17:51:40.174Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34051",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34051",
+ "checked_at": "2026-09-11T17:51:41.255Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34052",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34052",
+ "checked_at": "2026-09-11T17:51:46.268Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34053",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34053",
+ "checked_at": "2026-09-11T17:51:42.260Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34054",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34054",
+ "checked_at": "2026-09-11T17:51:43.261Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34055",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34055",
+ "checked_at": "2026-09-11T17:51:44.229Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34056",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34056",
+ "checked_at": "2026-09-11T17:51:47.284Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34057",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34057",
+ "checked_at": "2026-09-11T17:51:45.197Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34058",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34058",
+ "checked_at": "2026-09-11T17:51:46.225Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34059",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34059",
+ "checked_at": "2026-09-11T17:51:47.169Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34060",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34060",
+ "checked_at": "2026-09-11T17:51:48.136Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34061",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34061",
+ "checked_at": "2026-09-11T17:51:48.343Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34062",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34062",
+ "checked_at": "2026-09-11T17:51:49.292Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34063",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34063",
+ "checked_at": "2026-09-11T17:51:49.115Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34064",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34064",
+ "checked_at": "2026-09-11T17:51:50.250Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34065",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34065",
+ "checked_at": "2026-09-11T17:51:50.059Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34066",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34066",
+ "checked_at": "2026-09-11T17:51:50.845Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34067",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34067",
+ "checked_at": "2026-09-11T17:51:51.231Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34068",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34068",
+ "checked_at": "2026-09-11T17:51:52.274Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34069",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34069",
+ "checked_at": "2026-09-11T17:51:51.714Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34070",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34070",
+ "checked_at": "2026-09-11T17:51:52.562Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34071",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34071",
+ "checked_at": "2026-09-11T17:51:55.772Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34072",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34072",
+ "checked_at": "2026-09-11T17:51:53.488Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34073",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34073",
+ "checked_at": "2026-09-11T17:51:55.434Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34074",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34074",
+ "checked_at": "2026-09-11T17:51:56.546Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34075",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34075",
+ "checked_at": "2026-09-11T17:51:54.468Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34076",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34076",
+ "checked_at": "2026-09-11T17:51:56.722Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34077",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34077",
+ "checked_at": "2026-09-11T17:51:57.500Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34078",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34078",
+ "checked_at": "2026-09-11T17:51:58.481Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34079",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34079",
+ "checked_at": "2026-09-11T17:51:57.724Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34080",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34080",
+ "checked_at": "2026-09-11T17:51:58.664Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34081",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34081",
+ "checked_at": "2026-09-11T17:51:59.454Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34082",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34082",
+ "checked_at": "2026-09-11T17:52:00.513Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34083",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34083",
+ "checked_at": "2026-09-11T17:51:59.629Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34084",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34084",
+ "checked_at": "2026-09-11T17:52:00.711Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34085",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34085",
+ "checked_at": "2026-09-11T17:52:01.506Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34086",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34086",
+ "checked_at": "2026-09-11T17:52:01.692Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34087",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34087",
+ "checked_at": "2026-09-11T17:52:02.502Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34088",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34088",
+ "checked_at": "2026-09-11T17:52:04.542Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34089",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34089",
+ "checked_at": "2026-09-11T17:52:03.556Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34090",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34090",
+ "checked_at": "2026-09-11T17:52:03.554Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34091",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34091",
+ "checked_at": "2026-09-11T17:52:04.544Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34092",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34092",
+ "checked_at": "2026-09-11T17:52:05.506Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34093",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34093",
+ "checked_at": "2026-09-11T17:52:06.495Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34094",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34094",
+ "checked_at": "2026-09-11T17:52:05.569Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34095",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34095",
+ "checked_at": "2026-09-11T17:52:06.545Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34096",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34096",
+ "checked_at": "2026-09-11T17:52:07.531Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34097",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34097",
+ "checked_at": "2026-09-11T17:52:07.535Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34098",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34098",
+ "checked_at": "2026-09-11T17:52:08.444Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW34099",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW34099",
+ "checked_at": "2026-09-11T17:52:08.547Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": null,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW365",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW365",
+ "checked_at": "2026-09-11T17:52:10.315Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW366",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW366",
+ "checked_at": "2026-09-11T17:52:10.797Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW367",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW367",
+ "checked_at": "2026-09-11T17:52:12.045Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW368",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW368",
+ "checked_at": "2026-09-11T17:52:13.562Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW369",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW369",
+ "checked_at": "2026-09-11T17:52:12.693Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW370",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW370",
+ "checked_at": "2026-09-11T17:52:13.940Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 60,
+ "order_mult": 30
+ },
+ {
+ "sku": "TWW75145",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75145",
+ "checked_at": "2026-09-11T17:52:14.723Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75146",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75146",
+ "checked_at": "2026-09-11T17:52:15.728Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75147",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75147",
+ "checked_at": "2026-09-11T17:52:14.873Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75148",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75148",
+ "checked_at": "2026-09-11T17:52:16.846Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Available while supplies last, this item will not be reordered.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75149",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75149",
+ "checked_at": "2026-09-11T17:52:16.509Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW75150",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75150",
+ "checked_at": "2026-09-11T17:52:18.052Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW75151",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75151",
+ "checked_at": "2026-09-11T17:52:19.748Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW75152",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75152",
+ "checked_at": "2026-09-11T17:52:18.234Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75153",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75153",
+ "checked_at": "2026-09-11T17:52:19.637Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": null,
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75154",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75154",
+ "checked_at": "2026-09-11T17:52:21.797Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW75155",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75155",
+ "checked_at": "2026-09-11T17:52:21.868Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ },
+ {
+ "sku": "TWW75156",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75156",
+ "checked_at": "2026-09-11T17:52:30.882Z",
+ "status": "verified",
+ "u_m": "Y",
+ "product_code": "WP-WW-TBO",
+ "single_roll_length": "0",
+ "SingleRollLength": 0,
+ "web_notes": "Wide width vinyl wallcovering requires a minimum 30 yd non cancellable order. CFA and reserves not available. Delivery is 4 to 6 weeks or sooner if in stock. This item is also available in standard width.",
+ "order_min": 0,
+ "order_mult": 0
+ },
+ {
+ "sku": "TWW75158",
+ "url": "https://www.thibautdesign.com/products/wallcoverings/TWW75158",
+ "checked_at": "2026-09-11T17:52:23.419Z",
+ "status": "unresolved",
+ "error": "Exact SKU object absent"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/scripts/thibaut-wide-width-length-gap/reconcile-canary.mjs b/scripts/thibaut-wide-width-length-gap/reconcile-canary.mjs
new file mode 100644
index 0000000..2b9ba54
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/reconcile-canary.mjs
@@ -0,0 +1,52 @@
+// Read-only reproduction of the installed canary population; never runs its alert wrapper.
+import fs from 'node:fs';
+import {execFileSync} from 'node:child_process';
+const env=fs.readFileSync('/Users/macstudio3/Projects/secrets-manager/.env','utf8');
+const token=env.split('\n').find(x=>x.startsWith('SHOPIFY_ADMIN_TOKEN=')).split('=').slice(1).join('=').trim();
+const vendors=['Thibaut','Malibu Wallpaper','Malibu Walls','York'];
+const query=`query($q:String!,$c:String){products(first:60,after:$c,query:$q){pageInfo{hasNextPage endCursor} nodes{id handle title createdAt updatedAt
+sr:metafield(namespace:"global",key:"single_roll_length"){value}
+dr:metafield(namespace:"global",key:"double_roll_length"){value}
+pmin:metafield(namespace:"global",key:"v_prods_quantity_order_min"){value}
+pun:metafield(namespace:"global",key:"v_prods_quantity_order_units"){value}
+dwsku:metafield(namespace:"global",key:"dw_sku"){value}
+customsku:metafield(namespace:"custom",key:"dw_sku"){value}
+mfr:metafield(namespace:"custom",key:"manufacturer_sku"){value}
+orderunit:metafield(namespace:"dwc",key:"order_unit"){value}
+variants(first:20){nodes{id sku title}}}}}`;
+const sleep=ms=>new Promise(r=>setTimeout(r,ms));
+async function gql(variables){
+ for(let attempt=0;attempt<6;attempt++){
+ const r=await fetch('https://designer-laboratory-sandbox.myshopify.com/admin/api/2024-10/graphql.json',{method:'POST',headers:{'X-Shopify-Access-Token':token,'Content-Type':'application/json'},body:JSON.stringify({query,variables})});
+ const d=await r.json();
+ if(d.errors?.some(e=>e.extensions?.code==='THROTTLED')){await sleep(2500);continue;}
+ if(!r.ok||d.errors||!d.data?.products)throw new Error(`Shopify query failed: HTTP ${r.status}`);
+ return d.data.products;
+ }throw new Error('Shopify retry budget exhausted');
+}
+const metrics={};const missing=[];const wideWidth=[];
+for(const vendor of vendors){
+ let cursor=null;const m={products:0,roll:0,missing:0};
+ do{
+ const pg=await gql({q:`vendor:'${vendor}' status:active`,c:cursor});
+ for(const p of pg.nodes){
+ m.products++;
+ const rollVars=p.variants.nodes.filter(v=>/\broll\b/i.test(v.title||'')&&!/sold per\s*\(|per yard|yard|sample|memo|mural|panel/i.test(v.title||''));
+ const row={vendor,...p,dw_sku:p.dwsku?.value||p.customsku?.value||p.variants.nodes.find(v=>!(/sample|memo/i.test(v.title)))?.sku,roll_variants:rollVars};
+ if(vendor==='Thibaut'&&/wide width/i.test(p.title))wideWidth.push(row);
+ if(!rollVars.length)continue;
+ m.roll++;if(!(p.sr?.value&&p.dr?.value)){m.missing++;missing.push(row);}
+ }
+ cursor=pg.pageInfo.hasNextPage?pg.pageInfo.endCursor:null;
+ if(cursor)await sleep(200);
+ }while(cursor);
+ metrics[vendor]=m;console.log(vendor,JSON.stringify(m));
+}
+const skus=[...new Set([...missing,...wideWidth].filter(p=>p.vendor==='Thibaut').map(p=>p.dw_sku).filter(Boolean))];
+const sql=`SELECT COALESCE(json_agg(t),'[]'::json) FROM (SELECT dw_sku,mfr_sku,pattern_name,color_name,width,roll_length,specs FROM thibaut_catalog WHERE dw_sku IN (${skus.map(s=>"'"+s.replaceAll("'","''")+"'").join(',')})) t;`;
+const catalog=JSON.parse(execFileSync('psql',['host=/tmp dbname=dw_unified','-X','-t','-A','-v','ON_ERROR_STOP=1','-c',sql],{encoding:'utf8',maxBuffer:20*1024*1024}));
+const bysku=Object.fromEntries(catalog.map(r=>[r.dw_sku,r]));
+for(const p of [...missing,...wideWidth])if(p.vendor==='Thibaut')p.catalog=bysku[p.dw_sku]||null;
+const report={generated_at:new Date().toISOString(),predicate:'Exact installed canary: first 20 variants; roll word excluding yard/sample/memo/mural/panel; active products',metrics,missing,wide_width:wideWidth};
+fs.writeFileSync(new URL('./out/reconciliation/live-canary-membership.json',import.meta.url),JSON.stringify(report,null,2));
+console.log(JSON.stringify({missing:missing.length,wide_width:wideWidth.length,wide_width_flagged:wideWidth.filter(p=>p.roll_variants.length&&!(p.sr?.value&&p.dr?.value)).length}));
diff --git a/verification/TK-11358/dtd-source-recheck/VERDICT.md b/verification/TK-11358/dtd-source-recheck/VERDICT.md
new file mode 100644
index 0000000..8d10c85
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/VERDICT.md
@@ -0,0 +1 @@
+Decision A: withdraw blanket external-wait. Codex and Qwen voted A; Claude disabled by zero-cost mode; Grok, Kimi, Muse unavailable (four abstentions). No minority vote. Read codex-debate.txt for adversarial result and validation constraints. This is a diagnostic decision, not permission to execute unsupported catalog changes.
diff --git a/verification/TK-11358/dtd-source-recheck/claude.txt b/verification/TK-11358/dtd-source-recheck/claude.txt
new file mode 100644
index 0000000..19b5d16
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/claude.txt
@@ -0,0 +1 @@
+[claude disabled: DTD_ZERO_COST=1]
diff --git a/verification/TK-11358/dtd-source-recheck/codex-debate.txt b/verification/TK-11358/dtd-source-recheck/codex-debate.txt
new file mode 100644
index 0000000..ede9df6
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/codex-debate.txt
@@ -0,0 +1,9 @@
+**PROSECUTOR:** A overstates what the evidence permits. Newly available scans do not establish that all 244 records can receive exact candidates. The 4.5-versus-9 conflict could reflect different packaging conventions; selecting either value without authoritative interpretation risks corrupting dimensions and pricing together. Withdrawing an external-wait claim before proving internal resolvability could disguise a real dependency. Qwen’s argument also presents a false choice: prohibited vendor emails do not make unresolved facts knowable. Only two models voted; their agreement supplies no additional source evidence.
+
+**DEFENDER:** Those objections defeat guaranteed completion and speculative writes, neither of which A authorizes. A expressly requires resolving field precedence, units, and pricing per record while keeping unresolved records gated. Examining all 244 records does not require inventing a candidate for each: missing support remains an explicit unresolved result. A blanket external dependency is stronger than the evidence warrants when available sources still require examination. Record-specific external dependencies can remain after that examination. No emails or unsupported mutations are necessary to perform this work.
+
+**JUDGE:** The prosecutor establishes a real risk of overstating completeness, but does not establish that all records must await external input. A’s explicit evidence requirements and unresolved-record gates control its execution. The argument for keeping A rests on those constraints, not the vote count or a promise that every record is internally resolvable.
+
+FINAL: KEEP
+
+A permits evidence gathering without authorizing unsupported conclusions. Review all 244 records, produce exact candidates only where sources resolve the relevant fields, and retain explicit blockers elsewhere. The controlling distinction is between withdrawing an unproven blanket dependency and declaring every dependency resolved; only the former is justified.
\ No newline at end of file
diff --git a/verification/TK-11358/dtd-source-recheck/codex.txt b/verification/TK-11358/dtd-source-recheck/codex.txt
new file mode 100644
index 0000000..36272a2
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/codex.txt
@@ -0,0 +1 @@
+VERDICT: A. Withdraw the blanket external-wait claim and build exact, source-backed candidates for each of the 244 records (193 Thibaut, 51 Malibu). Validate field precedence, units, and pricing per record: roll labels do not establish roll length, `u_m=Y` and a 30-yard minimum do not prove roll dimensions, and conflicting `SingleRollLength=4.5` versus `single_roll_length=9` values require resolution. Keep unresolved records gated, execute no unsupported mutations, and send no emails.
\ No newline at end of file
diff --git a/verification/TK-11358/dtd-source-recheck/grok.txt b/verification/TK-11358/dtd-source-recheck/grok.txt
new file mode 100644
index 0000000..7b3ad95
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/grok.txt
@@ -0,0 +1 @@
+[grok unavailable]
diff --git a/verification/TK-11358/dtd-source-recheck/kimi.txt b/verification/TK-11358/dtd-source-recheck/kimi.txt
new file mode 100644
index 0000000..ea4b5a5
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/kimi.txt
@@ -0,0 +1 @@
+[kimi unavailable]
diff --git a/verification/TK-11358/dtd-source-recheck/muse.txt b/verification/TK-11358/dtd-source-recheck/muse.txt
new file mode 100644
index 0000000..3a84ae1
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/muse.txt
@@ -0,0 +1 @@
+[muse unavailable]
diff --git a/verification/TK-11358/dtd-source-recheck/question.txt b/verification/TK-11358/dtd-source-recheck/question.txt
new file mode 100644
index 0000000..d3634c9
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/question.txt
@@ -0,0 +1 @@
+Ticket previously parked waiting for vendor roll specifications. New exact read-only scan reproduces 244 missing-length records: 193 Thibaut, 51 Malibu. Current vendor SKU payloads identify some roll-labeled storefront products with u_m=Y (one explicitly 30 yd minimum), and some u_m=S products with positive lengths. Source has both SingleRollLength=4.5 and single_roll_length=9 for some products, so mapping fields blindly is unsafe. Choose A: withdraw blanket external-wait claim, build exact source-backed per-record candidates, preserve unresolved field/unit/price validation and do not execute unsupported mutations. B: keep entire ticket blocked awaiting vendor email. All emails prohibited. Pick exactly one option. Begin VERDICT: A or VERDICT: B and give one paragraph; no tools or action.
\ No newline at end of file
diff --git a/verification/TK-11358/dtd-source-recheck/qwen.txt b/verification/TK-11358/dtd-source-recheck/qwen.txt
new file mode 100644
index 0000000..db4affa
--- /dev/null
+++ b/verification/TK-11358/dtd-source-recheck/qwen.txt
@@ -0,0 +1,2 @@
+VERDICT: A
+The situation necessitates proactive resolution rather than indefinite stasis. Withholding the blanket external-wait claim allows leveraging the newly available scan data to construct precise, source-backed candidates for the 244 missing records, addressing discrepancies like conflicting SingleRollLength values (4.5 vs. 9) and unit mismatches (u_m=Y/S) without assuming invalid mappings. Preserving unresolved validations ensures transparency about data gaps, while avoiding unsupported mutations prevents escalation of errors. Blocking the ticket indefinitely (B) is untenable given the prohibition on vendor emails, leaving no viable path forward. Proceeding with A aligns with data integrity and operational continuity.
diff --git a/verification/TK-11358/reconciliation-proof.json b/verification/TK-11358/reconciliation-proof.json
new file mode 100644
index 0000000..b19aa97
--- /dev/null
+++ b/verification/TK-11358/reconciliation-proof.json
@@ -0,0 +1,45 @@
+{
+ "ticket": "TK-11358",
+ "verified_at": "2026-09-11T18:08:37.613381+00:00",
+ "risk_tier": "R1 read-only diagnostic",
+ "commands": [
+ "node --check reconcile-canary.mjs",
+ "node reconcile-canary.mjs",
+ "node --check check-official-units.mjs",
+ "node check-official-units.mjs",
+ "Python independent candidate assertions"
+ ],
+ "checks": [
+ {
+ "verdict": "PASS",
+ "check": "exact 244 unique product identities reproduce current canary counts"
+ },
+ {
+ "verdict": "PASS",
+ "check": "193 Thibaut identities queried; 178 source pages verified, 15 explicitly unresolved"
+ },
+ {
+ "verdict": "PASS",
+ "check": "153+23+2+15+51=244; 23 positive length pairs all satisfy 2:1"
+ },
+ {
+ "verdict": "PASS",
+ "check": "per-row before-values, variant IDs, source URLs and timestamps persisted"
+ },
+ {
+ "verdict": "SKIP",
+ "check": "catalog correction / customer journey",
+ "reason": "Price basis, ordering rules and field mapping validation remain; no apply attempted"
+ }
+ ],
+ "source_count": 193,
+ "counts": {
+ "published_roll_lengths": 23,
+ "official_source_unresolved": 15,
+ "yard_unit_mismatch": 153,
+ "other_source_unit": 2,
+ "other_vendor_backlog": 51
+ },
+ "outcome": "Blanket external-wait disproved; exact correction candidates prepared; original remediation incomplete",
+ "side_effects": "Local artifacts and ticket updates only; vendor HTTP GETs, Shopify queries and local SQL SELECT; no email or catalog writes"
+}
← 3994a21 auto-data-snapshot: 2026-09-11T10:49:53 (1 data files) — scr
·
back to Designerwallcoverings
·
TK-11301: read-only post-revoke recurrence watch + negative 3347aa6 →