← back to Dw Five Field Step0
Part B: batch-2 fuzzy relink dry-run over 28 vendors (1491 raw / 536 net-new hi-conf), read-only
86779474bb37592a1c6eb50d9e871a7b4487c7c8 · 2026-06-21 19:19:07 -0700 · Steve
Files touched
A cost-relink-dryrun-batch2.pyA out/cost-relink-batch2-summary.mdA out/cost-relink-diff-batch2.json
Diff
commit 86779474bb37592a1c6eb50d9e871a7b4487c7c8
Author: Steve <steve@designerwallcoverings.com>
Date: Sun Jun 21 19:19:07 2026 -0700
Part B: batch-2 fuzzy relink dry-run over 28 vendors (1491 raw / 536 net-new hi-conf), read-only
---
cost-relink-dryrun-batch2.py | 205 +
out/cost-relink-batch2-summary.md | 49 +
out/cost-relink-diff-batch2.json | 53612 ++++++++++++++++++++++++++++++++++++
3 files changed, 53866 insertions(+)
diff --git a/cost-relink-dryrun-batch2.py b/cost-relink-dryrun-batch2.py
new file mode 100644
index 0000000..7424587
--- /dev/null
+++ b/cost-relink-dryrun-batch2.py
@@ -0,0 +1,205 @@
+#!/usr/bin/env python3
+"""
+Part B — BATCH 2 cost-relink dry-run for the 28 'join-bug-relink (fuzzy-heavy)'
+vendors. READ-ONLY. NO dw_unified writes. Owner: vp-dw-commerce, 2026-06-21.
+
+Same DTD A+B+C confidence scheme as Part A (cost-relink-dryrun.py Steps 4-5):
+ exact = exact mfr_sku join to catalog cost col (>0)
+ fuzzy-high = Rule C: flagged pattern matches a catalog pattern whose colorways
+ ALL share ONE distinct cost -> unambiguous pattern->cost
+ review = Rule B: flagged pattern matches a catalog pattern with >1 distinct
+ cost -> ambiguous, surfaced as a range for human review
+ unresolved = no pattern match
+
+Pricing mirrors the live drain:
+ Kravet-family -> MAP as-is (cost col already MAP/price_trade for those)
+ all others -> round(cost / 0.65 / 0.85, 2)
+
+The catalog table + cost column per vendor come from out/vendor-classification.json
+(the same auto-classifier that bucketed them). Produces:
+ out/cost-relink-diff-batch2.json full diff
+ out/cost-relink-batch2-summary.md per-vendor recoverable counts
+"""
+import json, os, re, subprocess, sys, datetime
+from collections import defaultdict
+
+ROOT = os.path.dirname(os.path.abspath(__file__))
+OUT = os.path.join(ROOT, "out")
+CLASS = os.path.join(OUT, "vendor-classification.json")
+
+def psql(sql):
+ env = dict(os.environ); env.pop("PGPASSWORD", None); env.pop("DATABASE_URL", None)
+ r = subprocess.run(["psql", "-d", "dw_unified", "-tAF", "\t", "-f", "-"],
+ input=sql, capture_output=True, text=True, env=env)
+ if r.returncode != 0:
+ raise RuntimeError(f"psql failed: {r.stderr.strip()[:400]}")
+ return [ln.split("\t") for ln in r.stdout.split("\n") if ln != ""]
+
+def q(v):
+ return "'" + str(v).replace("'", "''") + "'"
+
+KRAVET_FAM = {
+ 'Kravet','Kravet Couture','Kravet Design','Kravet Contract','Kravet Basics',
+ 'Lee Jofa','Lee Jofa Modern','Groundworks','Brunschwig & Fils','Cole & Son',
+ 'GP & J Baker','Colefax And Fowler','Colefax and Fowler','Clarke And Clarke',
+ 'Clarke & Clarke','Mulberry','Mulberry Home','Threads','Baker Lifestyle',
+ 'Andrew Martin','Nicolette Mayer','Aerin','Barclay Butera','Thom Filicia',
+ 'Gaston Y Daniela','Gaston y Daniela','Donghia'}
+
+def norm(s):
+ if s is None: return ''
+ s = s.lower().strip()
+ s = re.sub(r'\bcolou?rway\b', '', s)
+ s = re.sub(r'[^a-z0-9]+', ' ', s).strip()
+ return s
+
+def roll_price(cost):
+ return round(cost / 0.65 / 0.85, 2)
+
+def relink_vendor(vendor, table, col):
+ kf = vendor in KRAVET_FAM
+ flagged = psql(f"""
+ SELECT COALESCE(NULLIF(g.dw_sku,''), g.mfr_sku), g.mfr_sku,
+ replace(COALESCE(sp.pattern_name,''), E'\\t', ' '),
+ replace(COALESCE(sp.title,''), E'\\t', ' ')
+ FROM active_five_field_gaps g
+ LEFT JOIN shopify_products sp ON sp.dw_sku=g.dw_sku AND NULLIF(g.dw_sku,'') IS NOT NULL
+ WHERE g.priceable IS NOT TRUE AND g.vendor={q(vendor)};""")
+ cat = psql(f"""
+ SELECT upper(mfr_sku),
+ replace(COALESCE(pattern_name,''), E'\\t', ' '),
+ replace(COALESCE(color_name,''), E'\\t', ' '),
+ {col}
+ FROM {table} WHERE ({col})::numeric > 0;""")
+ cat_by_mfr = {}
+ pat_costs = defaultdict(set)
+ for row in cat:
+ if len(row) < 4: continue
+ mfr, pat, colr, cost = row[0], row[1], row[2], row[3]
+ try: cost = float(cost)
+ except: continue
+ cat_by_mfr[mfr] = (cost, pat, colr)
+ pat_costs[norm(pat)].add(round(cost, 2))
+
+ diff = []
+ n_exact = n_high = n_review = n_unres = 0
+ for fr in flagged:
+ if len(fr) < 4: continue
+ dw, mfr, pat, title = fr[0], fr[1], fr[2], fr[3]
+ np_ = norm(pat)
+ row = {'dw_sku': dw, 'vendor': vendor, 'mfr_sku': mfr, 'flagged_pattern': pat}
+ ex = cat_by_mfr.get((mfr or '').upper())
+ if ex:
+ cost, cpat, ccolr = ex
+ price = cost if kf else roll_price(cost)
+ row.update({'match_confidence': 'exact', 'matched_pattern': cpat,
+ 'matched_color': ccolr, 'sourced_cost': round(cost, 2),
+ 'computed_price': price,
+ 'price_basis': 'MAP' if kf else 'cost/0.65/0.85'})
+ diff.append(row); n_exact += 1; continue
+ if np_ and np_ in pat_costs:
+ costs = pat_costs[np_]
+ if len(costs) == 1:
+ cost = next(iter(costs))
+ price = cost if kf else roll_price(cost)
+ row.update({'match_confidence': 'fuzzy-high', 'matched_pattern': pat,
+ 'matched_color': '(pattern-consistent cost)',
+ 'sourced_cost': round(cost, 2), 'computed_price': price,
+ 'price_basis': 'MAP' if kf else 'cost/0.65/0.85',
+ 'rule': 'C: single cost across colorways'})
+ diff.append(row); n_high += 1; continue
+ else:
+ lo, hi = min(costs), max(costs)
+ plo = lo if kf else roll_price(lo)
+ phi = hi if kf else roll_price(hi)
+ row.update({'match_confidence': 'review', 'matched_pattern': pat,
+ 'matched_color': '(multi-cost pattern)',
+ 'sourced_cost_range': [round(lo, 2), round(hi, 2)],
+ 'computed_price_range': [plo, phi],
+ 'price_basis': 'MAP' if kf else 'cost/0.65/0.85',
+ 'rule': 'B: pattern has >1 distinct cost'})
+ diff.append(row); n_review += 1; continue
+ row.update({'match_confidence': 'unresolved', 'matched_pattern': None,
+ 'sourced_cost': None, 'computed_price': None})
+ diff.append(row); n_unres += 1
+ return diff, {'flagged': len(flagged), 'exact': n_exact, 'fuzzy_high': n_high,
+ 'review': n_review, 'unresolved': n_unres,
+ 'catalog_cost_col': f'{table}.{col}', 'kravet_family': kf}
+
+def main():
+ cls = json.load(open(CLASS))
+ vendors = [v for v in cls['vendors'] if v['bucket'] == 'join-bug-relink (fuzzy-heavy)']
+ assert len(vendors) == 28, f"expected 28 fuzzy-heavy, got {len(vendors)}"
+
+ all_diff = []
+ summary = {}
+ for v in vendors:
+ vendor, table, col = v['vendor'], v['catalog_table'], v['cost_col']
+ if not table or not col:
+ summary[vendor] = {'error': 'no catalog table/col', 'flagged': v['flagged']}
+ continue
+ try:
+ diff, s = relink_vendor(vendor, table, col)
+ except Exception as e:
+ summary[vendor] = {'error': str(e)[:200], 'flagged': v['flagged']}
+ continue
+ for d in diff: all_diff.append(d)
+ summary[vendor] = s
+ print(f" {vendor:<30} exact={s['exact']:<4} fuzzy-high={s['fuzzy_high']:<4} "
+ f"review={s['review']:<4} unres={s['unresolved']}", file=sys.stderr)
+
+ tot = {
+ 'exact': sum(1 for d in all_diff if d.get('match_confidence') == 'exact'),
+ 'fuzzy_high': sum(1 for d in all_diff if d.get('match_confidence') == 'fuzzy-high'),
+ 'review': sum(1 for d in all_diff if d.get('match_confidence') == 'review'),
+ 'unresolved': sum(1 for d in all_diff if d.get('match_confidence') == 'unresolved'),
+ 'rows': len(all_diff),
+ }
+ tot['recoverable_high_confidence'] = tot['exact'] + tot['fuzzy_high']
+ payload = {
+ 'generatedAt': datetime.datetime.now(datetime.timezone.utc).isoformat(),
+ 'note': 'READ-ONLY dry-run. NO dw_unified writes. Batch-2 review diff.',
+ 'confidence_scheme': 'DTD A+B+C (same as Part A batch 1)',
+ 'pricing': 'Kravet-family -> MAP; others -> round(cost/0.65/0.85, 2)',
+ 'vendor_count': len(vendors),
+ 'totals': tot,
+ 'per_vendor': summary,
+ 'diff': all_diff,
+ }
+ json.dump(payload, open(os.path.join(OUT, 'cost-relink-diff-batch2.json'), 'w'), indent=2)
+
+ # ---- markdown summary ----
+ lines = []
+ lines.append("# Cost-Relink BATCH 2 — Fuzzy-Heavy Vendors Review Diff")
+ lines.append("")
+ lines.append(f"Generated: {payload['generatedAt']} · READ-ONLY · $0 (local SQL) · NO writes")
+ lines.append(f"Confidence: DTD A+B+C (same scheme as batch 1)")
+ lines.append("")
+ lines.append("## Headline")
+ lines.append(f"- Vendors: {len(vendors)} (the 'join-bug-relink fuzzy-heavy' bucket).")
+ lines.append(f"- Rows examined: {tot['rows']}.")
+ lines.append(f"- RECOVERABLE high-confidence: **{tot['recoverable_high_confidence']}** "
+ f"(exact {tot['exact']} + fuzzy-high {tot['fuzzy_high']}).")
+ lines.append(f"- Review (ambiguous, needs human): {tot['review']}.")
+ lines.append(f"- Unresolved (rescrape, not relink): {tot['unresolved']}.")
+ lines.append("")
+ lines.append("## Per-vendor (sorted by recoverable)")
+ lines.append("| Vendor | Flagged | Exact | Fuzzy-High | Recoverable | Review | Unresolved | Kravet? |")
+ lines.append("|---|---|---|---|---|---|---|---|")
+ rows = []
+ for vendor, s in summary.items():
+ if 'error' in s:
+ rows.append((0, f"| {vendor} | {s.get('flagged','?')} | ERR | ERR | 0 | 0 | 0 | — |"))
+ continue
+ rec = s['exact'] + s['fuzzy_high']
+ rows.append((rec, f"| {vendor} | {s['flagged']} | {s['exact']} | {s['fuzzy_high']} | "
+ f"**{rec}** | {s['review']} | {s['unresolved']} | "
+ f"{'yes' if s['kravet_family'] else 'no'} |"))
+ for _, line in sorted(rows, key=lambda x: -x[0]):
+ lines.append(line)
+ open(os.path.join(OUT, 'cost-relink-batch2-summary.md'), 'w').write("\n".join(lines) + "\n")
+
+ print(json.dumps(tot, indent=2))
+
+if __name__ == "__main__":
+ main()
diff --git a/out/cost-relink-batch2-summary.md b/out/cost-relink-batch2-summary.md
new file mode 100644
index 0000000..c1e51c3
--- /dev/null
+++ b/out/cost-relink-batch2-summary.md
@@ -0,0 +1,49 @@
+# Cost-Relink BATCH 2 — Fuzzy-Heavy Vendors Review Diff
+
+Generated: 2026-06-22T02:18:36.262264+00:00 · READ-ONLY · $0 (local SQL) · NO writes
+Confidence: DTD A+B+C (same scheme as batch 1)
+
+## Headline
+- Vendors: 28 (the 'join-bug-relink fuzzy-heavy' bucket).
+- Rows examined: 4854.
+- RECOVERABLE high-confidence: **1491** (exact 235 + fuzzy-high 1256).
+- Review (ambiguous, needs human): 61.
+- Unresolved (rescrape, not relink): 3302.
+
+## Per-vendor (sorted by recoverable)
+| Vendor | Flagged | Exact | Fuzzy-High | Recoverable | Review | Unresolved | Kravet? |
+|---|---|---|---|---|---|---|---|
+| Rebel Walls | 1181 | 27 | 619 | **646** | 3 | 532 | no |
+| Scalamandre Wallpaper | 960 | 15 | 407 | **422** | 57 | 481 | no |
+| Wolf Gordon | 269 | 0 | 223 | **223** | 0 | 46 | no |
+| Marburg | 112 | 90 | 0 | **90** | 0 | 22 | no |
+| Innovations USA | 105 | 49 | 1 | **50** | 0 | 55 | no |
+| Versace | 67 | 40 | 0 | **40** | 0 | 27 | no |
+| Nina Campbell | 557 | 8 | 0 | **8** | 0 | 549 | no |
+| Schumacher | 537 | 0 | 4 | **4** | 0 | 533 | no |
+| Romo | 11 | 3 | 0 | **3** | 0 | 8 | no |
+| Thibaut | 246 | 1 | 1 | **2** | 0 | 244 | no |
+| Malibu Wallpaper | 70 | 2 | 0 | **2** | 0 | 68 | no |
+| Anna French | 357 | 0 | 1 | **1** | 0 | 356 | no |
+| Sandberg | 154 | 0 | 0 | **0** | 0 | 154 | no |
+| Roberto Cavalli Wallpaper | 149 | 0 | 0 | **0** | 0 | 149 | no |
+| Dolce & Gabbana | 27 | 0 | 0 | **0** | 0 | 27 | no |
+| William Morris | 13 | 0 | 0 | **0** | 0 | 13 | no |
+| Hygge & West | 10 | 0 | 0 | **0** | 0 | 10 | no |
+| NLXL | 9 | 0 | 0 | **0** | 0 | 9 | no |
+| Jeffrey Stevens | 6 | 0 | 0 | **0** | 0 | 6 | no |
+| Malibu | 6 | 0 | 0 | **0** | 0 | 6 | no |
+| Zoffany | 1 | 0 | 0 | **0** | 0 | 1 | no |
+| Scalamandre Fabrics | 1 | 0 | 0 | **0** | 0 | 1 | no |
+| Farrow & Ball | 1 | 0 | 0 | **0** | 0 | 1 | no |
+| Studio Ditte | 1 | 0 | 0 | **0** | 0 | 1 | no |
+| Threads | 1 | 0 | 0 | **0** | 1 | 0 | yes |
+| Rebel Studio | 1 | 0 | 0 | **0** | 0 | 1 | no |
+| Clarke And Clarke | 1 | 0 | 0 | **0** | 0 | 1 | yes |
+| Contrado | 1 | 0 | 0 | **0** | 0 | 1 | no |
+
+## Net-new vs batch 1
+- Raw recoverable high-confidence: **1491**.
+- NET-NEW high-confidence (excluding the 1086 dw_skus already loaded by Part A batch 1): **536**.
+ - The ~955 overlap is Rebel Walls + part of Scalamandre, already loaded + queued in batch 1.
+- Net-new by vendor: Wolf Gordon 223, Scalamandre Wallpaper 113, Marburg 90, Innovations USA 50, Versace 40, Nina Campbell 8, Schumacher 4, Romo 3, Thibaut 2, Malibu Wallpaper 2.
diff --git a/out/cost-relink-diff-batch2.json b/out/cost-relink-diff-batch2.json
new file mode 100644
index 0000000..3f98816
--- /dev/null
+++ b/out/cost-relink-diff-batch2.json
@@ -0,0 +1,53612 @@
+{
+ "generatedAt": "2026-06-22T02:18:36.262264+00:00",
+ "note": "READ-ONLY dry-run. NO dw_unified writes. Batch-2 review diff.",
+ "confidence_scheme": "DTD A+B+C (same as Part A batch 1)",
+ "pricing": "Kravet-family -> MAP; others -> round(cost/0.65/0.85, 2)",
+ "vendor_count": 28,
+ "totals": {
+ "exact": 235,
+ "fuzzy_high": 1256,
+ "review": 61,
+ "unresolved": 3302,
+ "rows": 4854,
+ "recoverable_high_confidence": 1491,
+ "net_new_high_confidence_excl_batch1": 536,
+ "net_new_by_vendor": {
+ "Wolf Gordon": 223,
+ "Scalamandre Wallpaper": 113,
+ "Marburg": 90,
+ "Innovations USA": 50,
+ "Versace": 40,
+ "Nina Campbell": 8,
+ "Schumacher": 4,
+ "Romo": 3,
+ "Thibaut": 2,
+ "Malibu Wallpaper": 2,
+ "Anna French": 1
+ }
+ },
+ "per_vendor": {
+ "Rebel Walls": {
+ "flagged": 1181,
+ "exact": 27,
+ "fuzzy_high": 619,
+ "review": 3,
+ "unresolved": 532,
+ "catalog_cost_col": "rebel_walls_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Scalamandre Wallpaper": {
+ "flagged": 960,
+ "exact": 15,
+ "fuzzy_high": 407,
+ "review": 57,
+ "unresolved": 481,
+ "catalog_cost_col": "scalamandre_catalog.price_trade",
+ "kravet_family": false
+ },
+ "Nina Campbell": {
+ "flagged": 557,
+ "exact": 8,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 549,
+ "catalog_cost_col": "nina_campbell_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Schumacher": {
+ "flagged": 537,
+ "exact": 0,
+ "fuzzy_high": 4,
+ "review": 0,
+ "unresolved": 533,
+ "catalog_cost_col": "schumacher_catalog.retail_price",
+ "kravet_family": false
+ },
+ "Anna French": {
+ "flagged": 357,
+ "exact": 0,
+ "fuzzy_high": 1,
+ "review": 0,
+ "unresolved": 356,
+ "catalog_cost_col": "anna_french_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Wolf Gordon": {
+ "flagged": 269,
+ "exact": 0,
+ "fuzzy_high": 223,
+ "review": 0,
+ "unresolved": 46,
+ "catalog_cost_col": "wolf_gordon_catalog.price_trade",
+ "kravet_family": false
+ },
+ "Thibaut": {
+ "flagged": 246,
+ "exact": 1,
+ "fuzzy_high": 1,
+ "review": 0,
+ "unresolved": 244,
+ "catalog_cost_col": "thibaut_catalog.our_price",
+ "kravet_family": false
+ },
+ "Sandberg": {
+ "flagged": 154,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 154,
+ "catalog_cost_col": "sandberg_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Roberto Cavalli Wallpaper": {
+ "flagged": 149,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 149,
+ "catalog_cost_col": "roberto_cavalli_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Marburg": {
+ "flagged": 112,
+ "exact": 90,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 22,
+ "catalog_cost_col": "marburg_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Innovations USA": {
+ "flagged": 105,
+ "exact": 49,
+ "fuzzy_high": 1,
+ "review": 0,
+ "unresolved": 55,
+ "catalog_cost_col": "innovations_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Malibu Wallpaper": {
+ "flagged": 70,
+ "exact": 2,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 68,
+ "catalog_cost_col": "malibu_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Versace": {
+ "flagged": 67,
+ "exact": 40,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 27,
+ "catalog_cost_col": "versace_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Dolce & Gabbana": {
+ "flagged": 27,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 27,
+ "catalog_cost_col": "dolce_gabbana_catalog.price_retail",
+ "kravet_family": false
+ },
+ "William Morris": {
+ "flagged": 13,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 13,
+ "catalog_cost_col": "william_morris_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Romo": {
+ "flagged": 11,
+ "exact": 3,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 8,
+ "catalog_cost_col": "romo_catalog.net_cost",
+ "kravet_family": false
+ },
+ "Hygge & West": {
+ "flagged": 10,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 10,
+ "catalog_cost_col": "hygge_catalog.price_retail",
+ "kravet_family": false
+ },
+ "NLXL": {
+ "flagged": 9,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 9,
+ "catalog_cost_col": "nlxl_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Jeffrey Stevens": {
+ "flagged": 6,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 6,
+ "catalog_cost_col": "jeffrey_stevens_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Malibu": {
+ "flagged": 6,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 6,
+ "catalog_cost_col": "malibu_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Zoffany": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "zoffany_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Scalamandre Fabrics": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "scalamandre_catalog.price_trade",
+ "kravet_family": false
+ },
+ "Farrow & Ball": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "farrow_ball_catalog.price_gbp",
+ "kravet_family": false
+ },
+ "Studio Ditte": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "studio_printworks_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Threads": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 1,
+ "unresolved": 0,
+ "catalog_cost_col": "threads_catalog.price_trade",
+ "kravet_family": true
+ },
+ "Rebel Studio": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "rebel_walls_catalog.price_retail",
+ "kravet_family": false
+ },
+ "Clarke And Clarke": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "clarke_clarke_catalog.price_retail",
+ "kravet_family": true
+ },
+ "Contrado": {
+ "flagged": 1,
+ "exact": 0,
+ "fuzzy_high": 0,
+ "review": 0,
+ "unresolved": 1,
+ "catalog_cost_col": "contrado_catalog.price_retail",
+ "kravet_family": false
+ }
+ },
+ "diff": [
+ {
+ "dw_sku": "DWRW-74115",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "S10178",
+ "flagged_pattern": "Sundborn winter",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74423",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13021-8",
+ "flagged_pattern": "Old Pine Trees",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Old Pine Trees",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74425",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13031-8",
+ "flagged_pattern": "Birch Trunks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Birch Trunks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74427",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13041-5",
+ "flagged_pattern": "Welcome To The Jungle",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74428",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13041-8",
+ "flagged_pattern": "Welcome To The Jungle",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74431",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13051-8",
+ "flagged_pattern": "Bellewood",
+ "match_confidence": "review",
+ "matched_pattern": "Bellewood",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 64.9,
+ 76.4
+ ],
+ "computed_price_range": [
+ 117.47,
+ 138.28
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWRW-74433",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13052-8",
+ "flagged_pattern": "Bellewood, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74435",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13053-8",
+ "flagged_pattern": "Bellewood Black Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74437",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13054-8",
+ "flagged_pattern": "Bellewood Grey Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74439",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13055-8",
+ "flagged_pattern": "Bellewood Porcelain Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74441",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13056-8",
+ "flagged_pattern": "Bellewood Crimson Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74444",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13061-4",
+ "flagged_pattern": "La Vie En Tulipe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "La Vie En Tulipe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74446",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13062-4",
+ "flagged_pattern": "La Vie En Tulipe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "La Vie En Tulipe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74448",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13071-5",
+ "flagged_pattern": "Rosegarden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rosegarden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74450",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13072-5",
+ "flagged_pattern": "Rosegarden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rosegarden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74452",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13073-4",
+ "flagged_pattern": "Thorn Rose",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Thorn Rose",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74456",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13081-8",
+ "flagged_pattern": "Concrete Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74458",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13091-8",
+ "flagged_pattern": "Summer Wind",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Summer Wind",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74460",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13092-8",
+ "flagged_pattern": "Summer Wind",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Summer Wind",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74462",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13101-6",
+ "flagged_pattern": "Flower Dot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flower Dot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74464",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13102-6",
+ "flagged_pattern": "Flower Dot Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74466",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13111-6",
+ "flagged_pattern": "Make It Bloom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Make It Bloom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74468",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13121-6",
+ "flagged_pattern": "Lily Pond",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lily Pond",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74470",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13122-6",
+ "flagged_pattern": "Lily Pond",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lily Pond",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74472",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13123-6",
+ "flagged_pattern": "Lily Pond",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lily Pond",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74474",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13131-4",
+ "flagged_pattern": "Flowerbed",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flowerbed",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74476",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13132-4",
+ "flagged_pattern": "Flowerbed Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74478",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13141-6",
+ "flagged_pattern": "Meadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Meadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74481",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13151-4",
+ "flagged_pattern": "Poppy Art Andy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poppy Art Andy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74483",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13161-8",
+ "flagged_pattern": "Poppy Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poppy Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74485",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13171-4",
+ "flagged_pattern": "Fruit & Flora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74487",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13172-4",
+ "flagged_pattern": "Fruit & Flora Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74489",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13181-4",
+ "flagged_pattern": "Wall Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wall Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74490",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13181-8",
+ "flagged_pattern": "Wall Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wall Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74497",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13201-5",
+ "flagged_pattern": "Florigami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Florigami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74499",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13202-5",
+ "flagged_pattern": "Florigami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Florigami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74503",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13211-5",
+ "flagged_pattern": "Growing Wild",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Growing Wild",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74505",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13212-4",
+ "flagged_pattern": "Growing Wilderness",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Growing Wilderness",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74508",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13221-6",
+ "flagged_pattern": "Winding Spring",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74510",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13222-6",
+ "flagged_pattern": "Winding Spring",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74512",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13231-8",
+ "flagged_pattern": "Harlequin Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Harlequin Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74514",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13241-5",
+ "flagged_pattern": "Garden Gate",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Garden Gate",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74521",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13271-6",
+ "flagged_pattern": "Color Clouds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Color Clouds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74523",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13272-6",
+ "flagged_pattern": "Color Clouds, chili",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74527",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13281-9",
+ "flagged_pattern": "Gradient Mountains",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gradient Mountains",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74529",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13291-6",
+ "flagged_pattern": "Neon City",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Neon City",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74531",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13292-6",
+ "flagged_pattern": "Neon City, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74534",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13311-9",
+ "flagged_pattern": "Graceful Sea",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graceful Sea",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74536",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13321-9",
+ "flagged_pattern": "Paradise Breeze",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paradise Breeze",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74538",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13331-8",
+ "flagged_pattern": "Elevation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Elevation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74540",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13332-8",
+ "flagged_pattern": "Elevation, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74543",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13341-6",
+ "flagged_pattern": "Chalkboard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Chalkboard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74545",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13351-8",
+ "flagged_pattern": "Geometric Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74547",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13361-4",
+ "flagged_pattern": "City Field",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "City Field",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74549",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13371-6",
+ "flagged_pattern": "Marble",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marble",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74554",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13391-4",
+ "flagged_pattern": "Pom Pom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pom Pom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74556",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13392-4",
+ "flagged_pattern": "Pom Pom, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74558",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13393-4",
+ "flagged_pattern": "Pom Pom, mint",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74560",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13401-6",
+ "flagged_pattern": "Colour Rain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colour Rain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74567",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13431-8",
+ "flagged_pattern": "Rainbow World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainbow World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74569",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13432-8",
+ "flagged_pattern": "Dusky World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dusky World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74571",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13441-5",
+ "flagged_pattern": "Colour Boxes",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74573",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13451-8",
+ "flagged_pattern": "Adventure",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Adventure",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74576",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13481-4",
+ "flagged_pattern": "Colour Stream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colour Stream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74578",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13482-4",
+ "flagged_pattern": "Colour Stream, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74580",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13491-4",
+ "flagged_pattern": "Textile Graffiti",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Textile Graffiti",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74582",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13492-4",
+ "flagged_pattern": "Textile Graffiti, dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74584",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13501-4",
+ "flagged_pattern": "From Red to Pink",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "From Red to Pink",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74586",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13502-4",
+ "flagged_pattern": "From Dawn to Night",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "From Dawn to Night",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74590",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13521-9",
+ "flagged_pattern": "Doorway",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Doorway",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74592",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13531-9",
+ "flagged_pattern": "Lingering Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lingering Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74594",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13541-9",
+ "flagged_pattern": "Enchanting Blue",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Enchanting Blue",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74597",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13561-4",
+ "flagged_pattern": "Denim Trellis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Denim Trellis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74599",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13562-4",
+ "flagged_pattern": "Denim Trellis, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74643",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13931-4",
+ "flagged_pattern": "Birch Bark Braids",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Birch Bark Braids",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74645",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13932-4",
+ "flagged_pattern": "Birch Bark Braids, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74648",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13941-4",
+ "flagged_pattern": "Sassy Zigzag",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sassy Zigzag",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74650",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13951-4",
+ "flagged_pattern": "Lenses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lenses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74652",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13952-4",
+ "flagged_pattern": "Lenses, Peach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74654",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13961-4",
+ "flagged_pattern": "Rainbow Palette",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainbow Palette",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74656",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13971-4",
+ "flagged_pattern": "Typomania",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Typomania",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74658",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13991-4",
+ "flagged_pattern": "Climbing Clorofyl, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74660",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13992-4",
+ "flagged_pattern": "Climbing Clorofyl, Wood",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74662",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13993-4",
+ "flagged_pattern": "Climbing Clorofyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Climbing Clorofyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74665",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14001-9",
+ "flagged_pattern": "Leaf Love",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Leaf Love",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74668",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14011-8",
+ "flagged_pattern": "Cuddle Clouds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cuddle Clouds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74673",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14021-4",
+ "flagged_pattern": "Note Sheets",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Note Sheets",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74675",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14022-4",
+ "flagged_pattern": "Note Sheets, Baby Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74677",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14023-4",
+ "flagged_pattern": "Note Sheets, Soft Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74679",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14024-4",
+ "flagged_pattern": "Note Sheets, Denim",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74681",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14031-9",
+ "flagged_pattern": "In the Spotlight",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "In the Spotlight",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74683",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14041-4",
+ "flagged_pattern": "Patchwork Play",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patchwork Play",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74685",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14042-4",
+ "flagged_pattern": "Patchwork Play, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74687",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14061-9",
+ "flagged_pattern": "Stacked Suitcases",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stacked Suitcases",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74689",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14062-6",
+ "flagged_pattern": "Stacked Suitcases, Heap",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74691",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14063-4",
+ "flagged_pattern": "Stacked Suitcases, Pile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74693",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14064-4",
+ "flagged_pattern": "Stacked Suitcases, Boards",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74695",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14071-9",
+ "flagged_pattern": "Elevation Lines, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74697",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14072-9",
+ "flagged_pattern": "Elevation Lines, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74699",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14073-9",
+ "flagged_pattern": "Elevation Lines",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Elevation Lines",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74701",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14091-4",
+ "flagged_pattern": "Pulse of Passion",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pulse of Passion",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74703",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14092-4",
+ "flagged_pattern": "Pulse of Passion, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74707",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14101-9",
+ "flagged_pattern": "Up",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74709",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14111-4",
+ "flagged_pattern": "Perfect Fit, Soft Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74711",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14112-4",
+ "flagged_pattern": "Perfect Fit, Mint green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74713",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14113-4",
+ "flagged_pattern": "Perfect Fit, Powder Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74716",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14121-4",
+ "flagged_pattern": "Leather Rhombs",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Leather Rhombs",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-74718",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14122-4",
+ "flagged_pattern": "Leather Rhombs, vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-74894",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R15402",
+ "flagged_pattern": "Mixed Memories, dusty pink",
+ "match_confidence": "exact",
+ "matched_pattern": "Mixed Memories",
+ "matched_color": "Dusty Pink",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-74916-Sold Per Square Meter",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "r15513",
+ "flagged_pattern": "Ink Colossal, Retro",
+ "match_confidence": "exact",
+ "matched_pattern": "Ink Colossal",
+ "matched_color": "Retro",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75257",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R17783",
+ "flagged_pattern": "Ravenna, Cloud",
+ "match_confidence": "exact",
+ "matched_pattern": "Ravenna",
+ "matched_color": "Cloud",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75513",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R50201",
+ "flagged_pattern": "Befoul",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75518",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R50206",
+ "flagged_pattern": "Bj\u00f6rnkram",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75530",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R50601",
+ "flagged_pattern": "Colorbomb",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75537",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R50704",
+ "flagged_pattern": "Rusty X-Ray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75558",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R51003",
+ "flagged_pattern": "Natural Roof",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75563",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R51008",
+ "flagged_pattern": "Structure",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Structure",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 88.3,
+ "computed_price": 159.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75575",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R95",
+ "flagged_pattern": "Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75576",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10101",
+ "flagged_pattern": "Deciduous Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Deciduous Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75577",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10121",
+ "flagged_pattern": "Branches",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Branches",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75578",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10131",
+ "flagged_pattern": "Wave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75579",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10141",
+ "flagged_pattern": "Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75580",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10151",
+ "flagged_pattern": "Free as a Bird",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Free as a Bird",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75581",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10161",
+ "flagged_pattern": "Pier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75582",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10171",
+ "flagged_pattern": "Sunrise",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sunrise",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75583",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10181",
+ "flagged_pattern": "Maple Leaves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Maple Leaves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75584",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10191",
+ "flagged_pattern": "Yellow Leafy Trees",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75585",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10201",
+ "flagged_pattern": "Horses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75587",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10311",
+ "flagged_pattern": "Black board",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Black board",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75588",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R21782",
+ "flagged_pattern": "Soccer Field",
+ "match_confidence": "exact",
+ "matched_pattern": "Soccer",
+ "matched_color": "Sand",
+ "sourced_cost": 88.3,
+ "computed_price": 159.82,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75589",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10361",
+ "flagged_pattern": "Worn Wall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75590",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10362",
+ "flagged_pattern": "Worn Wall, Multi Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75591",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10371",
+ "flagged_pattern": "Tours and Travels",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tours and Travels",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75592",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10391",
+ "flagged_pattern": "Paradise",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75593",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10421",
+ "flagged_pattern": "Highway",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Highway",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75594",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10431",
+ "flagged_pattern": "Monument Valley",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Monument Valley",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75595",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10441",
+ "flagged_pattern": "Road",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Road",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75596",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10451",
+ "flagged_pattern": "Venezia",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venezia",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75597",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10461",
+ "flagged_pattern": "One Dollar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "One Dollar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75598",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R10471",
+ "flagged_pattern": "Aircraft",
+ "match_confidence": "exact",
+ "matched_pattern": "Aircraft",
+ "matched_color": "Light Gray",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75599",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10481",
+ "flagged_pattern": "Magazine Letters",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Magazine Letters",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75600",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10491",
+ "flagged_pattern": "Woodcut, CMYK",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75601",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10501",
+ "flagged_pattern": "Graphic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75602",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10511",
+ "flagged_pattern": "Woodcut, Design",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75603",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10521",
+ "flagged_pattern": "Big Apple",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Apple",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75604",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10522",
+ "flagged_pattern": "Stone Apple",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stone Apple",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75605",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10531",
+ "flagged_pattern": "Sum of Numbers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sum of Numbers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75606",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10541",
+ "flagged_pattern": "Clockwork",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Clockwork",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75607",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10551",
+ "flagged_pattern": "The Experienced Car",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Experienced Car",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75608",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10571",
+ "flagged_pattern": "Street Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Street Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75609",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10572",
+ "flagged_pattern": "Street Art, brick wall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75610",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10581",
+ "flagged_pattern": "Kaleidoscope",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kaleidoscope",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75611",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10591",
+ "flagged_pattern": "Magnolia",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Magnolia",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75612",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10601",
+ "flagged_pattern": "Dahlia",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dahlia",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75613",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10611",
+ "flagged_pattern": "Flower",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flower",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75614",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10621",
+ "flagged_pattern": "Cartoon City",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75615",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10622",
+ "flagged_pattern": "Cartoon City, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75616",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10623",
+ "flagged_pattern": "Cartoon City, graffiti",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75617",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10631",
+ "flagged_pattern": "Panorama",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Panorama",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75618",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10632",
+ "flagged_pattern": "Panorama",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Panorama",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75619",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10651",
+ "flagged_pattern": "Statue of Liberty",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Statue of Liberty",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75620",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10661",
+ "flagged_pattern": "Paris",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paris",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75621",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10671",
+ "flagged_pattern": "London Calling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "London Calling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75622",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10681",
+ "flagged_pattern": "Big Blue Apple",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Blue Apple",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75623",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10682",
+ "flagged_pattern": "Big Apple Squares",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Apple Squares",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75624",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10684",
+ "flagged_pattern": "New York at Night",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "New York at Night",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75625",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R10691",
+ "flagged_pattern": "Arc de Triomphe",
+ "match_confidence": "exact",
+ "matched_pattern": "Arc de Triomphe",
+ "matched_color": "White",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75626",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10701",
+ "flagged_pattern": "Night Light",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Night Light",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75627",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10711",
+ "flagged_pattern": "N.Y. Cab",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "N.Y. Cab",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75628",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10741",
+ "flagged_pattern": "Flags of Sovereign States",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75629",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10751",
+ "flagged_pattern": "Stars and Stripes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stars and Stripes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75630",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10761",
+ "flagged_pattern": "Du Globe Terres",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Du Globe Terres",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75631",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10771",
+ "flagged_pattern": "World Map",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75632",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10772",
+ "flagged_pattern": "World Map, brown",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75633",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10773",
+ "flagged_pattern": "World Map, blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75634",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10781",
+ "flagged_pattern": "Union Jack",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75635",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10831",
+ "flagged_pattern": "Classical",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75636",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10841",
+ "flagged_pattern": "Dusty Rubber Stamp",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dusty Rubber Stamp",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75637",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10851",
+ "flagged_pattern": "Blackboard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Blackboard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75638",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10861",
+ "flagged_pattern": "Pulp",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pulp",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75639",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10862",
+ "flagged_pattern": "Pulp, grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75640",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10863",
+ "flagged_pattern": "Pulp, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75641",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10871",
+ "flagged_pattern": "Stonewall, brown",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75642",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10872",
+ "flagged_pattern": "Stonewall, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75643",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10891",
+ "flagged_pattern": "Map Alphabet",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Map Alphabet",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75644",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R10901",
+ "flagged_pattern": "Map of Dreams",
+ "match_confidence": "exact",
+ "matched_pattern": "Map of Dreams",
+ "matched_color": "Black",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75645",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10903",
+ "flagged_pattern": "Map of NY",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Map of NY",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75646",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10911",
+ "flagged_pattern": "Rectangular Concrete Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rectangular Concrete Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75647",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10921",
+ "flagged_pattern": "Plain Concrete, light grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75648",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10931",
+ "flagged_pattern": "Concrete Tile",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Tile",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75649",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10951",
+ "flagged_pattern": "Stonework",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stonework",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75650",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10961",
+ "flagged_pattern": "Brick Wall, red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75651",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10962",
+ "flagged_pattern": "Brick Wall, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75652",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10963",
+ "flagged_pattern": "Brick Wall, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75653",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10964",
+ "flagged_pattern": "Brick Wall, old style",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75654",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10971",
+ "flagged_pattern": "Wooden Frames",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75655",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10981",
+ "flagged_pattern": "Squares of Concrete",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Squares of Concrete",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75656",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS10991",
+ "flagged_pattern": "Concrete Slabs",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Slabs",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75657",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11001",
+ "flagged_pattern": "Lime Washed Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lime Washed Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75658",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11011",
+ "flagged_pattern": "Wooden Slats",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75659",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11021",
+ "flagged_pattern": "Boards",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Boards",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75660",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11031",
+ "flagged_pattern": "Watery Wall, midnight blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75661",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11032",
+ "flagged_pattern": "Watery Wall, grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75662",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11042",
+ "flagged_pattern": "Mixed Tape",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mixed Tape",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75663",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11061",
+ "flagged_pattern": "Letterpress, metal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75664",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11081",
+ "flagged_pattern": "Philatelist",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Philatelist",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75665",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11091",
+ "flagged_pattern": "Striped Curtain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Striped Curtain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75666",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11101",
+ "flagged_pattern": "Lion",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lion",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75667",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11131",
+ "flagged_pattern": "Cave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75668",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11141",
+ "flagged_pattern": "Moon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Moon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75669",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11151",
+ "flagged_pattern": "Baroque",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baroque",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75670",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11161",
+ "flagged_pattern": "Happy Cloud",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Happy Cloud",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75671",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11171",
+ "flagged_pattern": "Dusky Pigment",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dusky Pigment",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75672",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11181",
+ "flagged_pattern": "Leaves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Leaves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75673",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11191",
+ "flagged_pattern": "Snowboard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Snowboard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75674",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11201",
+ "flagged_pattern": "Newspaper Clippings",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newspaper Clippings",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75675",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R11211",
+ "flagged_pattern": "Apple Blossom",
+ "match_confidence": "exact",
+ "matched_pattern": "Apple Blossom",
+ "matched_color": "White",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75676",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11221",
+ "flagged_pattern": "Pleated Paper",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pleated Paper",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75677",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11231",
+ "flagged_pattern": "Street Lights",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Street Lights",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75678",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11241",
+ "flagged_pattern": "Block Letters",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Block Letters",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75679",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11251",
+ "flagged_pattern": "Nostalgia",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Nostalgia",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75680",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11261",
+ "flagged_pattern": "Night in Shanghai",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Night in Shanghai",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75681",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11271",
+ "flagged_pattern": "Carpenter's Delight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75682",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11291",
+ "flagged_pattern": "Carved Wood",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Carved Wood",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75683",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11301",
+ "flagged_pattern": "Big Ben",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Ben",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75684",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11321",
+ "flagged_pattern": "See the light",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "See the light",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75685",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11331",
+ "flagged_pattern": "Garden Sculpture",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Garden Sculpture",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75686",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11351",
+ "flagged_pattern": "Memories of Venice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Memories of Venice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75687",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11361",
+ "flagged_pattern": "Ratio",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ratio",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75688",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11371",
+ "flagged_pattern": "Fireworks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fireworks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75689",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11381",
+ "flagged_pattern": "Tropical America",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75690",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11391",
+ "flagged_pattern": "East River",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "East River",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75691",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11401",
+ "flagged_pattern": "City",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75692",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11411",
+ "flagged_pattern": "Patinated Diamonds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patinated Diamonds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75693",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11412",
+ "flagged_pattern": "PATINATED DIAMONDS, SAND",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75694",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11421",
+ "flagged_pattern": "Screen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Screen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75695",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11431",
+ "flagged_pattern": "Pictorial Map of the U.S.",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pictorial Map of the U.S.",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75696",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11441",
+ "flagged_pattern": "The old Car",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The old Car",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75697",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11451",
+ "flagged_pattern": "Cloud Puff",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cloud Puff",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75698",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11461",
+ "flagged_pattern": "Italian Speed",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Italian Speed",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75699",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11481",
+ "flagged_pattern": "NY",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "NY",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75700",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11501",
+ "flagged_pattern": "Radio",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Radio",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75701",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11511",
+ "flagged_pattern": "Books",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Books",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75702",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11513",
+ "flagged_pattern": "Books, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75703",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11521",
+ "flagged_pattern": "Wrinkled Paper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75704",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11531",
+ "flagged_pattern": "Maze",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Maze",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75705",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11541",
+ "flagged_pattern": "Correspondence",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75706",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11551",
+ "flagged_pattern": "Speed of Light",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Speed of Light",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75707",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R11561",
+ "flagged_pattern": "Africa",
+ "match_confidence": "exact",
+ "matched_pattern": "Africa",
+ "matched_color": "White",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75708",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11571",
+ "flagged_pattern": "Winter",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75709",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11581",
+ "flagged_pattern": "Recycling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Recycling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75710",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R19907",
+ "flagged_pattern": "Abstract News",
+ "match_confidence": "exact",
+ "matched_pattern": "Abstract",
+ "matched_color": "Beige",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75711",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11601",
+ "flagged_pattern": "By the Sea",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75712",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11621",
+ "flagged_pattern": "Route 66",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Route 66",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75713",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11631",
+ "flagged_pattern": "Old Romance",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Old Romance",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75714",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11641",
+ "flagged_pattern": "Tower Bridge",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tower Bridge",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75715",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11651",
+ "flagged_pattern": "Brooklyn Bridge",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brooklyn Bridge",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75716",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11691",
+ "flagged_pattern": "Underworld",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Underworld",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75717",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11701",
+ "flagged_pattern": "Arizona",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Arizona",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75718",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11711",
+ "flagged_pattern": "Cumulus",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cumulus",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75719",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11721",
+ "flagged_pattern": "Water World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Water World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75720",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11731",
+ "flagged_pattern": "Angel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Angel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75721",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11751",
+ "flagged_pattern": "As time goes by",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "As time goes by",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75722",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11761",
+ "flagged_pattern": "Ornaments",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ornaments",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75723",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11791",
+ "flagged_pattern": "Cutlery",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cutlery",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75724",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11821",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75725",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11841",
+ "flagged_pattern": "Nomad Diner",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Nomad Diner",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75726",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11851",
+ "flagged_pattern": "Typewriter",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Typewriter",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75727",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11861",
+ "flagged_pattern": "Scooter",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Scooter",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75728",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11871",
+ "flagged_pattern": "Cityscape",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cityscape",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75729",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11881",
+ "flagged_pattern": "Carousel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Carousel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75730",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11891",
+ "flagged_pattern": "Smoke",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smoke",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75731",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11901",
+ "flagged_pattern": "Train",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Train",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75732",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11911",
+ "flagged_pattern": "Grand Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grand Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75733",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11921",
+ "flagged_pattern": "Gentle Flow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gentle Flow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75734",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11931",
+ "flagged_pattern": "Autumn Leaves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Autumn Leaves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75735",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11941",
+ "flagged_pattern": "Beach",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75736",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11951",
+ "flagged_pattern": "Asia in Bloom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Asia in Bloom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75737",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11961",
+ "flagged_pattern": "Oxalis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Oxalis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75738",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11971",
+ "flagged_pattern": "Ice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75739",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11981",
+ "flagged_pattern": "Urban",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Urban",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75740",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS11991",
+ "flagged_pattern": "Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75741",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12001",
+ "flagged_pattern": "Marble Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marble Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75742",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12011",
+ "flagged_pattern": "Frontage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Frontage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75743",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12021",
+ "flagged_pattern": "Jelly Belly Plants",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jelly Belly Plants",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75744",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12022",
+ "flagged_pattern": "Jelly Belly Plants, green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75745",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12023",
+ "flagged_pattern": "Jelly Belly Plants, black & white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75746",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12032",
+ "flagged_pattern": "Wooden Slats, colourful",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75748",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12042",
+ "flagged_pattern": "Great Wall of China",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Great Wall of China",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75749",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12051",
+ "flagged_pattern": "Plain Concrete, dark grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75750",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12061",
+ "flagged_pattern": "Garden of Dreams",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Garden of Dreams",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75751",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12062",
+ "flagged_pattern": "Garden of Dreams, black & white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75752",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12063",
+ "flagged_pattern": "Garden of Dreams, red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75753",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12071",
+ "flagged_pattern": "Plaster",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Plaster",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75754",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12081",
+ "flagged_pattern": "The Lonely Tree",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Lonely Tree",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75755",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12091",
+ "flagged_pattern": "Sea",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sea",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75756",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12101",
+ "flagged_pattern": "Three Trees",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Three Trees",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75757",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12111",
+ "flagged_pattern": "Watch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Watch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75759",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12131",
+ "flagged_pattern": "Graffiti on Boards",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graffiti on Boards",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75760",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12141",
+ "flagged_pattern": "Steel Plates",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Steel Plates",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75761",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12161",
+ "flagged_pattern": "Newspaper Letters",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newspaper Letters",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75762",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12171",
+ "flagged_pattern": "Reflections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Reflections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75763",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12181",
+ "flagged_pattern": "Rushmore",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rushmore",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75764",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12191",
+ "flagged_pattern": "Vortex",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vortex",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75765",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12201",
+ "flagged_pattern": "Foliage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Foliage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75766",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12211",
+ "flagged_pattern": "Railroad",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Railroad",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75767",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12221",
+ "flagged_pattern": "Well-Worn Brick Wall, red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75768",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12222",
+ "flagged_pattern": "Well-Worn Brick Wall, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75769",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12223",
+ "flagged_pattern": "Well-worn Brick Wall, old style",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75770",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12224",
+ "flagged_pattern": "Well-Worn Brick Wall, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75775",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12251",
+ "flagged_pattern": "Bricks of Liberty",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bricks of Liberty",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75776",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12261",
+ "flagged_pattern": "Rubber Stamp, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75777",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12262",
+ "flagged_pattern": "Rubber Stamp",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rubber Stamp",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75778",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12263",
+ "flagged_pattern": "Rubber Stamp, wide",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75779",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12271",
+ "flagged_pattern": "Cogwheel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cogwheel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75780",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12281",
+ "flagged_pattern": "Feathers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Feathers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75781",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12291",
+ "flagged_pattern": "Screen, emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75782",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12301",
+ "flagged_pattern": "From Paris with Love",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "From Paris with Love",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75783",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12311",
+ "flagged_pattern": "Fractal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fractal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75784",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12312",
+ "flagged_pattern": "Fractal, blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75785",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12313",
+ "flagged_pattern": "Fractal, red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75786",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12314",
+ "flagged_pattern": "Fractal, green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75787",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12321",
+ "flagged_pattern": "Virgin Mary, concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75788",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12331",
+ "flagged_pattern": "House Numbers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "House Numbers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75789",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12341",
+ "flagged_pattern": "Las Vegas",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Las Vegas",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75790",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12351",
+ "flagged_pattern": "Ribbon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ribbon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75791",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12352",
+ "flagged_pattern": "Ribbon, dirty pastels",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75792",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12353",
+ "flagged_pattern": "Ribbon, black&white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75793",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12361",
+ "flagged_pattern": "Squared Painting",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Squared Painting",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75794",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12371",
+ "flagged_pattern": "Angel, concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75795",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12381",
+ "flagged_pattern": "Destinations",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75796",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12391",
+ "flagged_pattern": "Departure Alphabet",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Departure Alphabet",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75797",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12401",
+ "flagged_pattern": "Poster, Concrete",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poster, Concrete",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75798",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12402",
+ "flagged_pattern": "Quotes, concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75799",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12403",
+ "flagged_pattern": "Quotes, wood wall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75800",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12404",
+ "flagged_pattern": "Poster, brick wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poster, brick wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75801",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12411",
+ "flagged_pattern": "Rainbowwave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainbowwave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75802",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12421",
+ "flagged_pattern": "Snapshot Memories",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Snapshot Memories",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75803",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12431",
+ "flagged_pattern": "Roadways",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75804",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12432",
+ "flagged_pattern": "Roadways, black&white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75805",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12441",
+ "flagged_pattern": "Golden Flakes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Golden Flakes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75806",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12461",
+ "flagged_pattern": "Waterside",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Waterside",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75807",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12471",
+ "flagged_pattern": "Forest Path",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest Path",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75808",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12481",
+ "flagged_pattern": "Fairy Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fairy Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75809",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12491",
+ "flagged_pattern": "Ink Letters",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ink Letters",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75810",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12492",
+ "flagged_pattern": "Ink Letter, rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75811",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12501",
+ "flagged_pattern": "Buddha",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Buddha",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75812",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12521",
+ "flagged_pattern": "Quadrangle, blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75813",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12522",
+ "flagged_pattern": "Quadrangle",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Quadrangle",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75818",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12541",
+ "flagged_pattern": "Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75819",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12571",
+ "flagged_pattern": "Flow, Dark Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75820",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12572",
+ "flagged_pattern": "Flow, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75821",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12581",
+ "flagged_pattern": "Horizontal Boards",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horizontal Boards",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75822",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12582",
+ "flagged_pattern": "Horizontal Boards, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75823",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12583",
+ "flagged_pattern": "Horizontal Boards, brown",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75824",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12584",
+ "flagged_pattern": "Horizontal Boards, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75825",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12591",
+ "flagged_pattern": "Geometric Pattern",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75826",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12601",
+ "flagged_pattern": "Lush",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lush",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75827",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12611",
+ "flagged_pattern": "Radient",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Radient",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75828",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12621",
+ "flagged_pattern": "Slanted",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Slanted",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75829",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12631",
+ "flagged_pattern": "Old Glory",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Old Glory",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75830",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12641",
+ "flagged_pattern": "Flor\u00e9al",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75831",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12642",
+ "flagged_pattern": "Flor\u00e9al, black&white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75832",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12651",
+ "flagged_pattern": "Springtime",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Springtime",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75833",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12652",
+ "flagged_pattern": "Springtime, black and white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75834",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12653",
+ "flagged_pattern": "Springtime Double",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Springtime Double",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75835",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12661",
+ "flagged_pattern": "Concrete New York",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete New York",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75836",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12662",
+ "flagged_pattern": "Happy New York",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Happy New York",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75837",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12671",
+ "flagged_pattern": "Steel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Steel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75838",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12681",
+ "flagged_pattern": "Big Bloom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Bloom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75839",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12682",
+ "flagged_pattern": "Big Bloom, amber",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75840",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12691",
+ "flagged_pattern": "Crumbling Bricks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crumbling Bricks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75841",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12701",
+ "flagged_pattern": "Havana",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Havana",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75842",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12711",
+ "flagged_pattern": "Patina",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patina",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75843",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12721",
+ "flagged_pattern": "Marrakech, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75844",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12722",
+ "flagged_pattern": "Marrakech",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marrakech",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75845",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12731",
+ "flagged_pattern": "Architect, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75846",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12732",
+ "flagged_pattern": "Architect",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Architect",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75847",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12741",
+ "flagged_pattern": "Mairie, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75848",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12742",
+ "flagged_pattern": "Mairie",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mairie",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75849",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12751",
+ "flagged_pattern": "Hotel Hachette, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75850",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12752",
+ "flagged_pattern": "Hotel Hachette",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hotel Hachette",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75851",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12761",
+ "flagged_pattern": "Hotel Des Ventes, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75852",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12762",
+ "flagged_pattern": "Hotel Des Ventes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hotel Des Ventes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75853",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12771",
+ "flagged_pattern": "Charcoal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Charcoal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75854",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12781",
+ "flagged_pattern": "Concrete Trellis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Trellis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75855",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12782",
+ "flagged_pattern": "Concrete Trellis, grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75856",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12791",
+ "flagged_pattern": "Battered Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Battered Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75857",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12801",
+ "flagged_pattern": "Tin Plates, Nebraska",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75858",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12802",
+ "flagged_pattern": "Tin Plates, Nebraska, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75859",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12821",
+ "flagged_pattern": "Hexagon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75860",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12831",
+ "flagged_pattern": "Archive",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Archive",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75861",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12841",
+ "flagged_pattern": "Punch Cards",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Punch Cards",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75862",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12851",
+ "flagged_pattern": "Tin Plates, Ontario",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75863",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12852",
+ "flagged_pattern": "Tin Plates, Ontario, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75864",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12861",
+ "flagged_pattern": "Vintage Books, cover",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75865",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12871",
+ "flagged_pattern": "Vintage Books, inside",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75866",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12881",
+ "flagged_pattern": "Panel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Panel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75867",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12882",
+ "flagged_pattern": "Panel, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75868",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12883",
+ "flagged_pattern": "PANEL, NIGHTFALL",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75869",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12884",
+ "flagged_pattern": "PANEL, CAMBRIDGE GREEN",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75870",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12891",
+ "flagged_pattern": "Dream Weaver, yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75871",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12892",
+ "flagged_pattern": "Dream Weaver",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dream Weaver",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75872",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12893",
+ "flagged_pattern": "DREAM WEAVER, BURGUNDY",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75873",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12894",
+ "flagged_pattern": "DREAM WEAVER, VERDE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75874",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12901",
+ "flagged_pattern": "Industriel Urban Farm L.A.",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Industriel Urban Farm L.A.",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75875",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12902",
+ "flagged_pattern": "Industriel Urban Farm L.A., vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75877",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12921",
+ "flagged_pattern": "Paper Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paper Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75878",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12931",
+ "flagged_pattern": "Stones",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stones",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75879",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12941",
+ "flagged_pattern": "Frost Leaf",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Frost Leaf",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75880",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12951",
+ "flagged_pattern": "Crown Of Dill",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crown Of Dill",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75881",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12961",
+ "flagged_pattern": "Lay In The Hay",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lay In The Hay",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75882",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12971",
+ "flagged_pattern": "Scandinavian Light",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Scandinavian Light",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75883",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12981",
+ "flagged_pattern": "Tree soldiers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tree soldiers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75884",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS12991",
+ "flagged_pattern": "Simple Seedpod",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simple Seedpod",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75885",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13001",
+ "flagged_pattern": "Blossom For The Bees",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75886",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13011",
+ "flagged_pattern": "Ranunculus",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ranunculus",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75887",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13021",
+ "flagged_pattern": "Old Pine Trees",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Old Pine Trees",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75888",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13031",
+ "flagged_pattern": "Birch Trunks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Birch Trunks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75889",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13041",
+ "flagged_pattern": "Welcome To The Jungle",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75890",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13042",
+ "flagged_pattern": "Welcome to the Jungle, Authentic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75891",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13051",
+ "flagged_pattern": "Bellewood",
+ "match_confidence": "review",
+ "matched_pattern": "Bellewood",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 64.9,
+ 76.4
+ ],
+ "computed_price_range": [
+ 117.47,
+ 138.28
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWRW-75892",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13052",
+ "flagged_pattern": "Bellewood, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75893",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13053",
+ "flagged_pattern": "Bellewood, Black Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75894",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13054",
+ "flagged_pattern": "Bellewood, Grey Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75895",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13055",
+ "flagged_pattern": "Bellewood, Porcelain Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75896",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13056",
+ "flagged_pattern": "Bellewood, Crimson Toile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75897",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13057",
+ "flagged_pattern": "Bellewood, Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75898",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13058",
+ "flagged_pattern": "Bellewood, Solid Green",
+ "match_confidence": "exact",
+ "matched_pattern": "Bellewood",
+ "matched_color": "Solid Green",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75899",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13059",
+ "flagged_pattern": "Bellewood, Solid Blue",
+ "match_confidence": "exact",
+ "matched_pattern": "Bellewood",
+ "matched_color": "Solid Blue",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75900",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13061",
+ "flagged_pattern": "La Vie En Tulipe, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75901",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13062",
+ "flagged_pattern": "La Vie En Tulipe, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75902",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13071",
+ "flagged_pattern": "Rosegarden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rosegarden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75903",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13072",
+ "flagged_pattern": "Rosegarden, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75904",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13073",
+ "flagged_pattern": "Thorn Rose",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Thorn Rose",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75905",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13074",
+ "flagged_pattern": "Thorn Rose, Evening",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75906",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13075",
+ "flagged_pattern": "Thorn Rose, Early Rise",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75907",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13081",
+ "flagged_pattern": "Concrete Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75908",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13091",
+ "flagged_pattern": "Summer Wind",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Summer Wind",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75909",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13092",
+ "flagged_pattern": "Summer Wind, Black and White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75910",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13101",
+ "flagged_pattern": "Flower Dot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flower Dot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75911",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13102",
+ "flagged_pattern": "Flower Dot, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75912",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13111",
+ "flagged_pattern": "Make It Bloom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Make It Bloom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75913",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13121",
+ "flagged_pattern": "Lily Pond, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75914",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13122",
+ "flagged_pattern": "Lily Pond",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lily Pond",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75915",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13123",
+ "flagged_pattern": "Lily Pond, Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75916",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13131",
+ "flagged_pattern": "Flowerbed",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flowerbed",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75917",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13132",
+ "flagged_pattern": "Flowerbed, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75918",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13141",
+ "flagged_pattern": "Meadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Meadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75919",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13142",
+ "flagged_pattern": "Meadow, Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75920",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13151",
+ "flagged_pattern": "Poppy Art Andy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poppy Art Andy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75921",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13161",
+ "flagged_pattern": "Poppy Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poppy Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75922",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13171",
+ "flagged_pattern": "Fruit & Flora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75923",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13172",
+ "flagged_pattern": "Fruit & Flora Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75924",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13181",
+ "flagged_pattern": "Wall Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wall Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75928",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13201",
+ "flagged_pattern": "Florigami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Florigami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75929",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13202",
+ "flagged_pattern": "Florigami, Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75930",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13211",
+ "flagged_pattern": "Growing Wild",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Growing Wild",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75931",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13212",
+ "flagged_pattern": "Growing Wilderness",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Growing Wilderness",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75932",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13213",
+ "flagged_pattern": "Growing Wilderness, Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75933",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13221",
+ "flagged_pattern": "Winding Spring",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75934",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13222",
+ "flagged_pattern": "Winding Spring, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75935",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13231",
+ "flagged_pattern": "Harlequin Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Harlequin Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75936",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13241",
+ "flagged_pattern": "Garden Gate",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Garden Gate",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75937",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13251",
+ "flagged_pattern": "Bouquet",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bouquet",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75938",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13252",
+ "flagged_pattern": "Bouquet, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75939",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13254",
+ "flagged_pattern": "Porcelain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Porcelain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75940",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13255",
+ "flagged_pattern": "Porcelain, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75941",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13261",
+ "flagged_pattern": "Footboll",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Footboll",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75942",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13262",
+ "flagged_pattern": "Footboll, Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75943",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13271",
+ "flagged_pattern": "Color Clouds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Color Clouds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75944",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13272",
+ "flagged_pattern": "Color Clouds, Chili",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75945",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13273",
+ "flagged_pattern": "COLOR CLOUDS, GOLD",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75946",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13274",
+ "flagged_pattern": "COLOR CLOUDS, MAROON",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75947",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13281",
+ "flagged_pattern": "Gradient Mountains",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gradient Mountains",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75948",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13291",
+ "flagged_pattern": "Neon City",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Neon City",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75949",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13292",
+ "flagged_pattern": "Neon City, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75950",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13301",
+ "flagged_pattern": "Misty Water",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Misty Water",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75951",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13311",
+ "flagged_pattern": "Graceful Sea",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graceful Sea",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75952",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13321",
+ "flagged_pattern": "Paradise Breeze",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paradise Breeze",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75953",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13331",
+ "flagged_pattern": "Elevation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Elevation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75954",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13332",
+ "flagged_pattern": "Elevation, rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75955",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13333",
+ "flagged_pattern": "Elevation, gradient",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75956",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13341",
+ "flagged_pattern": "Chalkboard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Chalkboard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75957",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13351",
+ "flagged_pattern": "Geometric Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75958",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13361",
+ "flagged_pattern": "City Field",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "City Field",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75959",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13371",
+ "flagged_pattern": "Marble",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marble",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75960",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13373",
+ "flagged_pattern": "Marble, green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75961",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13381",
+ "flagged_pattern": "Dimension",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dimension",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75962",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13382",
+ "flagged_pattern": "Dimension, white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75963",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13391",
+ "flagged_pattern": "Pom Pom",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pom Pom",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75964",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13392",
+ "flagged_pattern": "Pom Pom, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75965",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13393",
+ "flagged_pattern": "Pom Pom, Mint",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75966",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13401",
+ "flagged_pattern": "Colour Rain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colour Rain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75967",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13411",
+ "flagged_pattern": "X-ray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75968",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13412",
+ "flagged_pattern": "X-ray, colour",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75969",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13421",
+ "flagged_pattern": "Big Diamond",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Big Diamond",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75970",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13425",
+ "flagged_pattern": "Big Diamond, Summer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75971",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13426",
+ "flagged_pattern": "Big Diamond, Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75972",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13431",
+ "flagged_pattern": "Rainbow World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainbow World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75973",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13432",
+ "flagged_pattern": "Dusky World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dusky World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75974",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13441",
+ "flagged_pattern": "Color Boxes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Color Boxes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75975",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13451",
+ "flagged_pattern": "Adventure",
+ "match_confidence": "exact",
+ "matched_pattern": "Adventure",
+ "matched_color": "Pale Yellow",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-75976",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13461",
+ "flagged_pattern": "Colour Tones",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colour Tones",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75977",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13481",
+ "flagged_pattern": "Colour Stream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colour Stream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75978",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13482",
+ "flagged_pattern": "Colour Stream, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75979",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13491",
+ "flagged_pattern": "Textile Graffiti",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Textile Graffiti",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75980",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13492",
+ "flagged_pattern": "Textile Graffiti, dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75981",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13501",
+ "flagged_pattern": "From Red to Pink",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "From Red to Pink",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75982",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13502",
+ "flagged_pattern": "From Dawn to Night",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "From Dawn to Night",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75983",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13511",
+ "flagged_pattern": "Twinkle Twinkle",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Twinkle Twinkle",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75984",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13512",
+ "flagged_pattern": "Twinkle Twinkle, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75985",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13521",
+ "flagged_pattern": "Doorway",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Doorway",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75986",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13531",
+ "flagged_pattern": "Lingering Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lingering Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75987",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13541",
+ "flagged_pattern": "Enchanting Blue",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Enchanting Blue",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75988",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13551",
+ "flagged_pattern": "Confetti",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Confetti",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75989",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13561",
+ "flagged_pattern": "Denim Trellis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Denim Trellis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75990",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13562",
+ "flagged_pattern": "Denim Trellis, black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75991",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13581",
+ "flagged_pattern": "Misty Lake",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Misty Lake",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75992",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13591",
+ "flagged_pattern": "Solitary Tree",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75993",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13601",
+ "flagged_pattern": "Swaying Wheat",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Swaying Wheat",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75994",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13602",
+ "flagged_pattern": "Swaying Reed",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Swaying Reed",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75995",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13611",
+ "flagged_pattern": "Wild Waves",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75996",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13631",
+ "flagged_pattern": "Under The Tree",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Under The Tree",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75997",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13641",
+ "flagged_pattern": "Woodpile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-75998",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13651",
+ "flagged_pattern": "Dried Clay",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dried Clay",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-75999",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13661",
+ "flagged_pattern": "Green Leaves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Green Leaves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76000",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13671",
+ "flagged_pattern": "Shoreline",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shoreline",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76001",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13681",
+ "flagged_pattern": "Above The Clouds",
+ "match_confidence": "exact",
+ "matched_pattern": "Above The Clouds",
+ "matched_color": "Light Blue",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76002",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13691",
+ "flagged_pattern": "Boathouse Blues",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Boathouse Blues",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76003",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13701",
+ "flagged_pattern": "Harbor Happenings",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Harbor Happenings",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76004",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13711",
+ "flagged_pattern": "Pine Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pine Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76005",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13721",
+ "flagged_pattern": "Frostwork",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Frostwork",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76006",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13731",
+ "flagged_pattern": "Verona",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Verona",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76007",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13741",
+ "flagged_pattern": "Square Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Square Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 150.0,
+ "computed_price": 271.49,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76008",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13751",
+ "flagged_pattern": "Oxford Clay",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76009",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13761",
+ "flagged_pattern": "Trails and Tracks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Trails and Tracks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76010",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13771",
+ "flagged_pattern": "Woodland",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76011",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13781",
+ "flagged_pattern": "Urban And Rural",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Urban And Rural",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76012",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13791",
+ "flagged_pattern": "Navigation Lines",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Navigation Lines",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76013",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13801",
+ "flagged_pattern": "The Colours Of Paris",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Colours Of Paris",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76014",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13811",
+ "flagged_pattern": "Atlas Of Astronomy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Atlas Of Astronomy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76015",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13821",
+ "flagged_pattern": "Block By Block",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Block By Block",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76016",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R13831",
+ "flagged_pattern": "A City Rises",
+ "match_confidence": "exact",
+ "matched_pattern": "A City Rises",
+ "matched_color": "White",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76017",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13841",
+ "flagged_pattern": "The Wharf",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Wharf",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76018",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13851",
+ "flagged_pattern": "Wanderlust",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wanderlust",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76019",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13861",
+ "flagged_pattern": "Treasure Hunt",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Treasure Hunt",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76020",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13862",
+ "flagged_pattern": "Treasure Hunt, Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76021",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13863",
+ "flagged_pattern": "Treasure Hunt, Black and white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76022",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13871",
+ "flagged_pattern": "Paper Mountains",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paper Mountains",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76023",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13881",
+ "flagged_pattern": "Globes Gathering",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Globes Gathering",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76024",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13882",
+ "flagged_pattern": "Globes Gathering, Black and white",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76025",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13883",
+ "flagged_pattern": "GLOBES GATHERING, BLUE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76026",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13884",
+ "flagged_pattern": "GLOBES GATHERING, DEW",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76027",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13891",
+ "flagged_pattern": "Triangle Land",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Triangle Land",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76028",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13892",
+ "flagged_pattern": "Triangle Land, Graphic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76029",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13901",
+ "flagged_pattern": "School Atlas",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "School Atlas",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76030",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13902",
+ "flagged_pattern": "School Atlas, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76031",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13921",
+ "flagged_pattern": "Your Own World, Concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76032",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13922",
+ "flagged_pattern": "Your Own World, Confetti",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76033",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13923",
+ "flagged_pattern": "Your Own World, Color Clouds",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76034",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13924",
+ "flagged_pattern": "Your Own World, Battered Wall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76035",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13931",
+ "flagged_pattern": "Birch Bark Braids",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Birch Bark Braids",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76036",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13932",
+ "flagged_pattern": "Birch Bark Braids, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76037",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13933",
+ "flagged_pattern": "Bali Braids",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bali Braids",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76038",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13941",
+ "flagged_pattern": "Sassy Zigzag",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sassy Zigzag",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76039",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13951",
+ "flagged_pattern": "Lenses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lenses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76040",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13952",
+ "flagged_pattern": "Lenses, Peach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76041",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13961",
+ "flagged_pattern": "Rainbow Palette",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainbow Palette",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76042",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13971",
+ "flagged_pattern": "Typomania",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Typomania",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76043",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13991",
+ "flagged_pattern": "Climbing Clorofyl, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76044",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13992",
+ "flagged_pattern": "Climbing Clorofyl, Wood",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76045",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13993",
+ "flagged_pattern": "Climbing Clorofyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Climbing Clorofyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76046",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS13994",
+ "flagged_pattern": "Climbing Clorofyl, Shadow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76047",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14001",
+ "flagged_pattern": "Leaf Love",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Leaf Love",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76048",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14011",
+ "flagged_pattern": "Cuddle Clouds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cuddle Clouds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76049",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14012",
+ "flagged_pattern": "Cuddle Clouds, Ceiling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76050",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14021",
+ "flagged_pattern": "Note Sheets",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Note Sheets",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76051",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14022",
+ "flagged_pattern": "Note Sheets, Baby Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76052",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14023",
+ "flagged_pattern": "Note Sheets, Soft Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76053",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14024",
+ "flagged_pattern": "Note Sheets, Denim",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76054",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14031",
+ "flagged_pattern": "In the Spotlight",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "In the Spotlight",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76055",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14041",
+ "flagged_pattern": "Patchwork Play",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patchwork Play",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76056",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14042",
+ "flagged_pattern": "Patchwork Play, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76057",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14061",
+ "flagged_pattern": "Stacked Suitcases",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stacked Suitcases",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76058",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14062",
+ "flagged_pattern": "Stacked Suitcases, Heap",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76059",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14063",
+ "flagged_pattern": "Stacked Suitcases, Pile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76060",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14064",
+ "flagged_pattern": "Stacked Suitcases, Boards",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76061",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14071",
+ "flagged_pattern": "Elevation Lines, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76062",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14072",
+ "flagged_pattern": "Elevation Lines, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76063",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14073",
+ "flagged_pattern": "Elevation Lines",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Elevation Lines",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76064",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14082",
+ "flagged_pattern": "Glass Vault, Multiple",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76065",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14091",
+ "flagged_pattern": "Pulse of Passion",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pulse of Passion",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76066",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14092",
+ "flagged_pattern": "Pulse of Passion, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76067",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14093",
+ "flagged_pattern": "Pulse of Passion, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76068",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14094",
+ "flagged_pattern": "PULSE OF PASSION, MINT",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76069",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14095",
+ "flagged_pattern": "PULSE OF PASSION, PINK",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76070",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14111",
+ "flagged_pattern": "Perfect Fit, Soft Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76071",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14112",
+ "flagged_pattern": "Perfect Fit, Mint Greenn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76072",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14113",
+ "flagged_pattern": "Perfect Fit Powder Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76073",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14114",
+ "flagged_pattern": "Perfect Fit, Royal Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76074",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14121",
+ "flagged_pattern": "Leather Rhombs",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Leather Rhombs",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76075",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14122",
+ "flagged_pattern": "Leather Rhombs, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76076",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14181",
+ "flagged_pattern": "Cabinet of Curios",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cabinet of Curios",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76077",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14182",
+ "flagged_pattern": "Cabinet of Curios, Raw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76078",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14183",
+ "flagged_pattern": "Cabinet of Curios, Sapphire",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76079",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14184",
+ "flagged_pattern": "Cabinet of Curios, Night",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76080",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14191",
+ "flagged_pattern": "Storm Brewing",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Storm Brewing",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76081",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14192",
+ "flagged_pattern": "Storm Brewing, Light",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76082",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14201",
+ "flagged_pattern": "Perspective Manoir",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perspective Manoir",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76083",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14211",
+ "flagged_pattern": "Urban Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76084",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14221",
+ "flagged_pattern": "Perspective La Rue",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perspective La Rue",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76085",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14231",
+ "flagged_pattern": "Rusty Shutter",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rusty Shutter",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76086",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14241",
+ "flagged_pattern": "Age Rings",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Age Rings",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76087",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R14242",
+ "flagged_pattern": "Age Rings, Green",
+ "match_confidence": "exact",
+ "matched_pattern": "Age Rings",
+ "matched_color": "Green",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76088",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14251",
+ "flagged_pattern": "The Butterfly Library",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Butterfly Library",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76089",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14252",
+ "flagged_pattern": "The Library",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Library",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76090",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14261",
+ "flagged_pattern": "The Memory Box",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Memory Box",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76091",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14262",
+ "flagged_pattern": "The Memory Box, Light",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76092",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14271",
+ "flagged_pattern": "Paper Kaleidoscope",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Paper Kaleidoscope",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76093",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14272",
+ "flagged_pattern": "Paper Kaleidoscope, Light",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76094",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14281",
+ "flagged_pattern": "Deconstructed Domino",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Deconstructed Domino",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76095",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14291",
+ "flagged_pattern": "Worn Wood",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76096",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14301",
+ "flagged_pattern": "Beneath the Bridge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76097",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14302",
+ "flagged_pattern": "Beneath the Bridge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76098",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14311",
+ "flagged_pattern": "Bleached Oddities",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bleached Oddities",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76099",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14321",
+ "flagged_pattern": "Industrial Ivory",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Industrial Ivory",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76100",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14331",
+ "flagged_pattern": "Bleached Baroque",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bleached Baroque",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76101",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14341",
+ "flagged_pattern": "Raw Chateau",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raw Chateau",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76102",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14351",
+ "flagged_pattern": "Deserter\u2019s Controls",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Deserter\u2019s Controls",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76103",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14361",
+ "flagged_pattern": "Broken Belle Epoque",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Broken Belle Epoque",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76104",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14371",
+ "flagged_pattern": "Perspective Jardin",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perspective Jardin",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76105",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14372",
+ "flagged_pattern": "Perspective Jardin, Noir",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76106",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14381",
+ "flagged_pattern": "Factory Window",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Factory Window",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76107",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14391",
+ "flagged_pattern": "One Man\u2019s Trash (Is Another Man\u2019s Treasure)",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "One Man\u2019s Trash (Is Another Man\u2019s Treasure)",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76108",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14401",
+ "flagged_pattern": "Inner-City Calico",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Inner-City Calico",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76109",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14411",
+ "flagged_pattern": "Steampunk Mechanics",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Steampunk Mechanics",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76110",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14421",
+ "flagged_pattern": "Pipework Oxidation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pipework Oxidation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76111",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14422",
+ "flagged_pattern": "Time on Iron",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Time on Iron",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76112",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14431",
+ "flagged_pattern": "Noblesse Oblige",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Noblesse Oblige",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76113",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14441",
+ "flagged_pattern": "Laundry Day",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Laundry Day",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76114",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14442",
+ "flagged_pattern": "Laundry Day, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76115",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14451",
+ "flagged_pattern": "Wild Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76116",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14461",
+ "flagged_pattern": "The Enchanted Forest, Daylight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76117",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14462",
+ "flagged_pattern": "The Enchanted Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Enchanted Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76118",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14471",
+ "flagged_pattern": "Caterpillar Dreams",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Caterpillar Dreams",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76119",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14481",
+ "flagged_pattern": "Woods of Wonder",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76120",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14491",
+ "flagged_pattern": "Elephant Tears, Pastel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76121",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14492",
+ "flagged_pattern": "Elephant Tears",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Elephant Tears",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76122",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14501",
+ "flagged_pattern": "High Seas, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76123",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14502",
+ "flagged_pattern": "High Seas",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "High Seas",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76124",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14503",
+ "flagged_pattern": "High Seas, Henderson Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76125",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14511",
+ "flagged_pattern": "Cotton Skies, Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76126",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14512",
+ "flagged_pattern": "Cotton Skies",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cotton Skies",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76127",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14521",
+ "flagged_pattern": "Dripping Ice Cream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dripping Ice Cream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76128",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14531",
+ "flagged_pattern": "May Meadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "May Meadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76129",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14532",
+ "flagged_pattern": "May Meadow, Pastel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76130",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14541",
+ "flagged_pattern": "Briar Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Briar Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76131",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14551",
+ "flagged_pattern": "The Rabbit's Playground",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76132",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14571",
+ "flagged_pattern": "Stargazing",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stargazing",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76133",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14572",
+ "flagged_pattern": "Stargazing, Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76134",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14581",
+ "flagged_pattern": "Nordic Valley, Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76135",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14582",
+ "flagged_pattern": "Nordic Valley",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Nordic Valley",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76136",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14583",
+ "flagged_pattern": "Mountain Ridge, Color",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76137",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14584",
+ "flagged_pattern": "Mountain Ridge",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mountain Ridge",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76138",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14591",
+ "flagged_pattern": "Mischievous Monkeys",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mischievous Monkeys",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76139",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14592",
+ "flagged_pattern": "MISCHIEVOUS MONKEYS, LUSH",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76140",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14601",
+ "flagged_pattern": "London Houses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "London Houses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76141",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14611",
+ "flagged_pattern": "Jungle Land, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76142",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14612",
+ "flagged_pattern": "Jungle Land",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jungle Land",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76143",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14613",
+ "flagged_pattern": "JUNGLE LAND, VERDANT",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76144",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14614",
+ "flagged_pattern": "JUNGLE LAND, COLOR",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76145",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14621",
+ "flagged_pattern": "Sugar Stripes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sugar Stripes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76146",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14631",
+ "flagged_pattern": "Her Royal Slumber, Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76147",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14632",
+ "flagged_pattern": "Her Royal Slumber",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Her Royal Slumber",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76148",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14641",
+ "flagged_pattern": "By the Fireplace",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "By the Fireplace",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76149",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14671",
+ "flagged_pattern": "Raku Crackle, Cream",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76150",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14672",
+ "flagged_pattern": "Raku Crackle, Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76151",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14682",
+ "flagged_pattern": "Noble Marble, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76152",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14683",
+ "flagged_pattern": "Noble Marble, Cacao",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76153",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14701",
+ "flagged_pattern": "Bali Boards",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bali Boards",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76154",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14702",
+ "flagged_pattern": "Secret Garden, Bali Boards",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76155",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14703",
+ "flagged_pattern": "Secret Garden, Lush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76156",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14704",
+ "flagged_pattern": "Secret Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Secret Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76157",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14721",
+ "flagged_pattern": "Swedish Cottage, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76158",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14722",
+ "flagged_pattern": "Swedish Cottage, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76159",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14723",
+ "flagged_pattern": "Swedish Cottage, Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76160",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14731",
+ "flagged_pattern": "Coffee Wood",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coffee Wood",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76161",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14761",
+ "flagged_pattern": "Concrete pillar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete pillar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76162",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14771",
+ "flagged_pattern": "Triangle Square",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Triangle Square",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76163",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14781",
+ "flagged_pattern": "Fishbone Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fishbone Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76164",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14791",
+ "flagged_pattern": "Solid Waves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Solid Waves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76165",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14801",
+ "flagged_pattern": "Concrete Hexagon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Hexagon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76166",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14811",
+ "flagged_pattern": "Stacked Bricks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stacked Bricks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76167",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14821",
+ "flagged_pattern": "Brickwork",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brickwork",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76168",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14831",
+ "flagged_pattern": "Slurry Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Slurry Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76169",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14841",
+ "flagged_pattern": "Top Floor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Top Floor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76170",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14842",
+ "flagged_pattern": "Top Floor, Tiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76171",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14851",
+ "flagged_pattern": "Newport",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newport",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76172",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14861",
+ "flagged_pattern": "Bistro Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bistro Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76173",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14862",
+ "flagged_pattern": "Bistro Tiles, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76174",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14863",
+ "flagged_pattern": "Bistro Tiles, Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76175",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14864",
+ "flagged_pattern": "Bistro Tiles, Royal Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76176",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14865",
+ "flagged_pattern": "Artisan Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Artisan Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 127.5,
+ "computed_price": 230.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76177",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14871",
+ "flagged_pattern": "Soft Bricks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Soft Bricks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76178",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14872",
+ "flagged_pattern": "Soft Bricks, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76179",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14873",
+ "flagged_pattern": "Soft Bricks, Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76180",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14881",
+ "flagged_pattern": "Diamond Tiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76181",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14891",
+ "flagged_pattern": "Oblong Tiles, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76182",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14892",
+ "flagged_pattern": "Oblong Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Oblong Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76183",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14911",
+ "flagged_pattern": "Metal Gradient",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metal Gradient",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76184",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14941",
+ "flagged_pattern": "Riveted Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Riveted Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76185",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14951",
+ "flagged_pattern": "Pop Rivets",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pop Rivets",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76186",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14971",
+ "flagged_pattern": "Fossil Stone",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fossil Stone",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76187",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS14981",
+ "flagged_pattern": "Brooklyn Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brooklyn Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76188",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15001",
+ "flagged_pattern": "Wooden Concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76189",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15011",
+ "flagged_pattern": "Solid",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Solid",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76190",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15012",
+ "flagged_pattern": "Solid, Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76191",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15021",
+ "flagged_pattern": "Factory Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Factory Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76192",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15031",
+ "flagged_pattern": "Block Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Block Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76193",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R15041",
+ "flagged_pattern": "Antique Books",
+ "match_confidence": "exact",
+ "matched_pattern": "Antique Books",
+ "matched_color": "Beige",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76194",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15051",
+ "flagged_pattern": "Memory Lane",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Memory Lane",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76195",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15062",
+ "flagged_pattern": "Misty Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Misty Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76196",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15071",
+ "flagged_pattern": "Birds of Paradise, Tiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76197",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15081",
+ "flagged_pattern": "Raimat Tiles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raimat Tiles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76198",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15091",
+ "flagged_pattern": "Peacock Plumage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Peacock Plumage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76199",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15101",
+ "flagged_pattern": "Tidemark, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76200",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15102",
+ "flagged_pattern": "Tidemark, Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76201",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15111",
+ "flagged_pattern": "Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76202",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15112",
+ "flagged_pattern": "Linen, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76203",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15121",
+ "flagged_pattern": "Linen Border",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Linen Border",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76204",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15131",
+ "flagged_pattern": "Ocean Breeze",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ocean Breeze",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76205",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15141",
+ "flagged_pattern": "Sailor's Sea",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76206",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15142",
+ "flagged_pattern": "Sailor's Sea, Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76207",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15151",
+ "flagged_pattern": "Sea Reflections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sea Reflections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76208",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15152",
+ "flagged_pattern": "Sea Reflections, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76209",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15161",
+ "flagged_pattern": "West Coast",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76210",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15162",
+ "flagged_pattern": "West Coast, Pale",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76211",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15171",
+ "flagged_pattern": "Seaport",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Seaport",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76212",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15181",
+ "flagged_pattern": "Marble Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marble Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76213",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15191",
+ "flagged_pattern": "Venice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76214",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15201",
+ "flagged_pattern": "Forest Glade",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest Glade",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76215",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R15211",
+ "flagged_pattern": "Aero Show",
+ "match_confidence": "exact",
+ "matched_pattern": "Aero Show",
+ "matched_color": "Light Gray",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76216",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15221",
+ "flagged_pattern": "Metal Birch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metal Birch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76217",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15231",
+ "flagged_pattern": "Decorated Bricks, Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76218",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15232",
+ "flagged_pattern": "Decorated Bricks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Decorated Bricks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76219",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15241",
+ "flagged_pattern": "Backyard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Backyard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76220",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15242",
+ "flagged_pattern": "Backyard, Raw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76221",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15251",
+ "flagged_pattern": "Magical Alley",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Magical Alley",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76222",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15261",
+ "flagged_pattern": "Hampton Pier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hampton Pier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76223",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15271",
+ "flagged_pattern": "Animal Party",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76224",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15272",
+ "flagged_pattern": "Animal Party, Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76225",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15273",
+ "flagged_pattern": "Animal Party, Blackboard",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76226",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15281",
+ "flagged_pattern": "Timberland",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Timberland",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76227",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15291",
+ "flagged_pattern": "Morning Haze",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Morning Haze",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76228",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15301",
+ "flagged_pattern": "Morning Fog",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Morning Fog",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76229",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15311",
+ "flagged_pattern": "Camping Trip",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Camping Trip",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76230",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15312",
+ "flagged_pattern": "Camping Trip, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76231",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15321",
+ "flagged_pattern": "Cactus Wall Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cactus Wall Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76232",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15322",
+ "flagged_pattern": "Cactus Wall Art, Faded",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76233",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15331",
+ "flagged_pattern": "Animal Tree",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76234",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15332",
+ "flagged_pattern": "Animal Tree, Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76235",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15341",
+ "flagged_pattern": "Cabin",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cabin",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76236",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15351",
+ "flagged_pattern": "Around The World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Around The World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76237",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15361",
+ "flagged_pattern": "Pink Dawn",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pink Dawn",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76238",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15371",
+ "flagged_pattern": "Agate",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Agate",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76239",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15372",
+ "flagged_pattern": "AGATE, STERLING",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76240",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15381",
+ "flagged_pattern": "Patinated Panels",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patinated Panels",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76241",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15382",
+ "flagged_pattern": "PATINATED PANELS, MOSS",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76242",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15383",
+ "flagged_pattern": "PATINATED PANELS, SMOKE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76243",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15391",
+ "flagged_pattern": "Blooming",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Blooming",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76244",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15401",
+ "flagged_pattern": "Mixed Memories",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mixed Memories",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76245",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15402",
+ "flagged_pattern": "Mixed Memories, dusty pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76246",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15411",
+ "flagged_pattern": "Coral Clouds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coral Clouds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76247",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15421",
+ "flagged_pattern": "Hope Mountains",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hope Mountains",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76248",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15431",
+ "flagged_pattern": "CHUBBY CHERUBS",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "CHUBBY CHERUBS",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76249",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15432",
+ "flagged_pattern": "CHUBBY CHERUBS , BLUE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76250",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15441",
+ "flagged_pattern": "FRENCH PANELS, ASHES",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76251",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15442",
+ "flagged_pattern": "FRENCH PANELS",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "FRENCH PANELS",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76252",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15451",
+ "flagged_pattern": "FROZEN MOMENT",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "FROZEN MOMENT",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76253",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15452",
+ "flagged_pattern": "FROZEN MOMENT, CREAM",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76254",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15461",
+ "flagged_pattern": "NOBLE FLAIR",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "NOBLE FLAIR",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76255",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15462",
+ "flagged_pattern": "NOBLE FLAIR, NOIR",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76256",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15471",
+ "flagged_pattern": "FRAGMENTS",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "FRAGMENTS",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76257",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15472",
+ "flagged_pattern": "FRAGMENTS, CHARCOAL",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76258",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15481",
+ "flagged_pattern": "STUCCO GLORIA",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "STUCCO GLORIA",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76259",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15482",
+ "flagged_pattern": "STUCCO GLORIA, CLAY",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76260",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15483",
+ "flagged_pattern": "STUCCO GLORIA, DUSTY PINK",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76261",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15484",
+ "flagged_pattern": "Stucco Gloria, Ceiling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76262",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15491",
+ "flagged_pattern": "AIRY ARCHES",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "AIRY ARCHES",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76263",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15492",
+ "flagged_pattern": "AIRY ARCHES, OXYGEN",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76264",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15501",
+ "flagged_pattern": "A PRIORI",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "A PRIORI",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76265",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15511",
+ "flagged_pattern": "INK COLOSSAL",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "INK COLOSSAL",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76266",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15512",
+ "flagged_pattern": "INK COLOSSAL, MINT",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76267",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15513",
+ "flagged_pattern": "Ink Colossal, Retro",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76268",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15521",
+ "flagged_pattern": "VERDANT",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "VERDANT",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76269",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15541",
+ "flagged_pattern": "CHERRY TREE",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "CHERRY TREE",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76270",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15551",
+ "flagged_pattern": "HORSE MANIA",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "HORSE MANIA",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76271",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15561",
+ "flagged_pattern": "SPORTS JUNKIE",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "SPORTS JUNKIE",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76272",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15571",
+ "flagged_pattern": "BIG HARLEQUIN, PLUM",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76273",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15572",
+ "flagged_pattern": "BIG HARLEQUIN, BREEZE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76274",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15591",
+ "flagged_pattern": "HORSE HERD",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "HORSE HERD",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76275",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15592",
+ "flagged_pattern": "HORSE HERD, GOLD",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76276",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15601",
+ "flagged_pattern": "PARISIAN PANELS",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "PARISIAN PANELS",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76277",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15602",
+ "flagged_pattern": "PARISIAN PANELS, DIP DYE BLUE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76278",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15603",
+ "flagged_pattern": "PARISIAN PANELS, DIP DYE YELLOW",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76279",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15611",
+ "flagged_pattern": "CACTI",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "CACTI",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76280",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15621",
+ "flagged_pattern": "Velvet Rendezvous",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Velvet Rendezvous",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76281",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15631",
+ "flagged_pattern": "Bygone Era",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bygone Era",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76282",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15641",
+ "flagged_pattern": "Time Loop",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Time Loop",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76283",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15651",
+ "flagged_pattern": "Dolores' Dream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dolores' Dream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76284",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15661",
+ "flagged_pattern": "Portals",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Portals",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76285",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15671",
+ "flagged_pattern": "Time Traveler",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Time Traveler",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76286",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15681",
+ "flagged_pattern": "Staircase",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Staircase",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76287",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15691",
+ "flagged_pattern": "Layers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Layers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76288",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15701",
+ "flagged_pattern": "Tassels, Romance",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76289",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15702",
+ "flagged_pattern": "Tassels",
+ "match_confidence": "review",
+ "matched_pattern": "Tassels",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 76.4,
+ 150.0
+ ],
+ "computed_price_range": [
+ 138.28,
+ 271.49
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWRW-76290",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15711",
+ "flagged_pattern": "Floral Frida Garden",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76291",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15712",
+ "flagged_pattern": "Floral Frida",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76292",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15713",
+ "flagged_pattern": "Floral Frida Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76293",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15721",
+ "flagged_pattern": "Eden, Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76294",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15722",
+ "flagged_pattern": "Eden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Eden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76295",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15731",
+ "flagged_pattern": "Yellow Bird",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76296",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15732",
+ "flagged_pattern": "Yellow Bird, Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76297",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15741",
+ "flagged_pattern": "Cactus Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cactus Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76298",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15751",
+ "flagged_pattern": "Rebel Dot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rebel Dot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76299",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15752",
+ "flagged_pattern": "Rebel Dot, Papaya",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76300",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15753",
+ "flagged_pattern": "Rebel Dot, Basil",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76301",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15754",
+ "flagged_pattern": "Rebel Dot, Violet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76302",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15755",
+ "flagged_pattern": "Rebel Dot, Peach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76303",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15761",
+ "flagged_pattern": "Flower Burst",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flower Burst",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76304",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15762",
+ "flagged_pattern": "Flower Burst, Concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76305",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15771",
+ "flagged_pattern": "Vinum Raspeys",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vinum Raspeys",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76306",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15781",
+ "flagged_pattern": "Pigments",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pigments",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76307",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15801",
+ "flagged_pattern": "Unfading Flowers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Unfading Flowers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76308",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15802",
+ "flagged_pattern": "Unfading Flowers, Colossal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76309",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15811",
+ "flagged_pattern": "Mirage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mirage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76310",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15821",
+ "flagged_pattern": "Floral World",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76311",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15831",
+ "flagged_pattern": "Beetle Valley",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beetle Valley",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76312",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15841",
+ "flagged_pattern": "Clover",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Clover",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76313",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15851",
+ "flagged_pattern": "Nude Roses",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Nude Roses",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76314",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15861",
+ "flagged_pattern": "Boulevard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Boulevard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76315",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15871",
+ "flagged_pattern": "Window Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76316",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15872",
+ "flagged_pattern": "Window Row, Saffron Street",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76317",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15881",
+ "flagged_pattern": "Pink Facade",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pink Facade",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76318",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15891",
+ "flagged_pattern": "Strada Verde",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Strada Verde",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76319",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15892",
+ "flagged_pattern": "Strada Azul",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Strada Azul",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76320",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15901",
+ "flagged_pattern": "Pride Palms",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pride Palms",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76321",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15902",
+ "flagged_pattern": "Pride Palms, Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76322",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15903",
+ "flagged_pattern": "Pride Palms, Plum",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76323",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15911",
+ "flagged_pattern": "Eyes Shut",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Eyes Shut",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76324",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15921",
+ "flagged_pattern": "Suite Madonna",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suite Madonna",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76325",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15931",
+ "flagged_pattern": "Rue Relief",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rue Relief",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76326",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15932",
+ "flagged_pattern": "Rue Relief, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76327",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15941",
+ "flagged_pattern": "Balcony Life",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balcony Life",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76328",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15951",
+ "flagged_pattern": "Cumulus Hotel",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cumulus Hotel",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76329",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15961",
+ "flagged_pattern": "Beyond Us",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beyond Us",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76330",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15971",
+ "flagged_pattern": "Ruin Escape",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ruin Escape",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76331",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15981",
+ "flagged_pattern": "Urban Horizon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Urban Horizon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76332",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15982",
+ "flagged_pattern": "Urban Horizon, Gray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76333",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15991",
+ "flagged_pattern": "Fresco Wall, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76334",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS15992",
+ "flagged_pattern": "Fresco Wall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fresco Wall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76335",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16001",
+ "flagged_pattern": "Fir Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fir Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76336",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R16011",
+ "flagged_pattern": "Acapulco",
+ "match_confidence": "exact",
+ "matched_pattern": "Acapulco",
+ "matched_color": "Forest Green",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76337",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16021",
+ "flagged_pattern": "Hideaway",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hideaway",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76338",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16022",
+ "flagged_pattern": "Hideaway, Gentle",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76339",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16031",
+ "flagged_pattern": "Ruin Romance",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ruin Romance",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76340",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16041",
+ "flagged_pattern": "Floral Splendor",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76341",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16051",
+ "flagged_pattern": "Riviera Daydream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Riviera Daydream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76342",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16052",
+ "flagged_pattern": "Riviera Daydream, Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76343",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16061",
+ "flagged_pattern": "Birch Echo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Birch Echo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76344",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16101",
+ "flagged_pattern": "Arch Deco",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Arch Deco",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76345",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16102",
+ "flagged_pattern": "Arch Deco, Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76346",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16103",
+ "flagged_pattern": "Arch Deco, Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76347",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16111",
+ "flagged_pattern": "La Vie",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "La Vie",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76348",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16120",
+ "flagged_pattern": "Crystal Ceiling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crystal Ceiling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76349",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16130",
+ "flagged_pattern": "Chicago Club",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Chicago Club",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76350",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16131",
+ "flagged_pattern": "Chicago Club, Ruby",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76351",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16140",
+ "flagged_pattern": "Jewel Wings",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jewel Wings",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76352",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16150",
+ "flagged_pattern": "Terrazzo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Terrazzo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 150.0,
+ "computed_price": 271.49,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76353",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16161",
+ "flagged_pattern": "Cuba Jungle",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cuba Jungle",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76354",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16171",
+ "flagged_pattern": "Eden Nightfall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76355",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16181",
+ "flagged_pattern": "Space Monkey",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Space Monkey",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76356",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16191",
+ "flagged_pattern": "Seven Seas",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Seven Seas",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76357",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16201",
+ "flagged_pattern": "The Orchard",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Orchard",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76358",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16211",
+ "flagged_pattern": "The Swedish Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Swedish Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76359",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16221",
+ "flagged_pattern": "Swan Lake",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Swan Lake",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76360",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16222",
+ "flagged_pattern": "Swan Lake, Nightfall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76361",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16231",
+ "flagged_pattern": "Lakeside",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lakeside",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76362",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16241",
+ "flagged_pattern": "Vinum Hexagon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vinum Hexagon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76363",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16251",
+ "flagged_pattern": "Twining Vines",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Twining Vines",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76364",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16252",
+ "flagged_pattern": "Twining Vines, Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76365",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16261",
+ "flagged_pattern": "Dove Gardens",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dove Gardens",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76366",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16271",
+ "flagged_pattern": "Opulent Shadows",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Opulent Shadows",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76367",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16281",
+ "flagged_pattern": "Happy Hills",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Happy Hills",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76368",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16282",
+ "flagged_pattern": "Happy Hills Vanilla",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76369",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16283",
+ "flagged_pattern": "Happy Hills Bubble Gum",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76370",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16291",
+ "flagged_pattern": "Gradient Geometry",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gradient Geometry",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76371",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16301",
+ "flagged_pattern": "Forest Vaults",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest Vaults",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76372",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16302",
+ "flagged_pattern": "Forest Vaults White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76373",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16311",
+ "flagged_pattern": "Lighthouse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lighthouse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76374",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16321",
+ "flagged_pattern": "Horizon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horizon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76375",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16331",
+ "flagged_pattern": "Cottage Island",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cottage Island",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76376",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16341",
+ "flagged_pattern": "Pale Shore",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pale Shore",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76377",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16351",
+ "flagged_pattern": "Dandelions",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dandelions",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76378",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16361",
+ "flagged_pattern": "Sea Sunrise",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sea Sunrise",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76379",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16371",
+ "flagged_pattern": "The North",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The North",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76380",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16381",
+ "flagged_pattern": "Stream",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stream",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76381",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16391",
+ "flagged_pattern": "Poppies",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Poppies",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76382",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16401",
+ "flagged_pattern": "Soft Rocks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Soft Rocks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76383",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16411",
+ "flagged_pattern": "Fjord",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fjord",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76384",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16421",
+ "flagged_pattern": "Forest Lake",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest Lake",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76385",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16431",
+ "flagged_pattern": "Boulder",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Boulder",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76386",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16441",
+ "flagged_pattern": "Home of Giants",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Home of Giants",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76387",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16451",
+ "flagged_pattern": "Mount Giant",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mount Giant",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76388",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16461",
+ "flagged_pattern": "Trolltunga",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Trolltunga",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76389",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16471",
+ "flagged_pattern": "Bareback",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bareback",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76390",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16481",
+ "flagged_pattern": "Cropland",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cropland",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76391",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16491",
+ "flagged_pattern": "Northern Lights",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Northern Lights",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76392",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16501",
+ "flagged_pattern": "Coast Life",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76393",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16511",
+ "flagged_pattern": "The Wind",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Wind",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76394",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16521",
+ "flagged_pattern": "Bottle Post",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bottle Post",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76395",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16531",
+ "flagged_pattern": "Virgin Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Virgin Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76396",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16541",
+ "flagged_pattern": "Wooden Fence",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76397",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16551",
+ "flagged_pattern": "Desert Flower",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76398",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16552",
+ "flagged_pattern": "Desert Flower, Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76399",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16561",
+ "flagged_pattern": "Ax",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ax",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76400",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16571",
+ "flagged_pattern": "Midsommar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Midsommar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76401",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16581",
+ "flagged_pattern": "Suzanne MCMI",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzanne MCMI",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76402",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16591",
+ "flagged_pattern": "Lilla H",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lilla H",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76403",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16601",
+ "flagged_pattern": "Solsidan",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Solsidan",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76404",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16611",
+ "flagged_pattern": "Marstrand",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marstrand",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76405",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16621",
+ "flagged_pattern": "Stugan",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stugan",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76406",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16631",
+ "flagged_pattern": "Hemma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hemma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76407",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16641",
+ "flagged_pattern": "Forest Bath",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Forest Bath",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76408",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16651",
+ "flagged_pattern": "Early Summer",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Early Summer",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76409",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16661",
+ "flagged_pattern": "Blue Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Blue Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76410",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16671",
+ "flagged_pattern": "The Bay",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Bay",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76411",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16681",
+ "flagged_pattern": "Retro Geometry",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Retro Geometry",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76412",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16682",
+ "flagged_pattern": "Retro Geometry, Ice",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76413",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16691",
+ "flagged_pattern": "Similarities",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Similarities",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76414",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16701",
+ "flagged_pattern": "Perennials",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perennials",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76415",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16702",
+ "flagged_pattern": "Perennials, Evening",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76416",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16711",
+ "flagged_pattern": "Flower Parade",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flower Parade",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76417",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16712",
+ "flagged_pattern": "Flower Parade, Licorice",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76418",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16721",
+ "flagged_pattern": "Fountain, Glacier",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76419",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16722",
+ "flagged_pattern": "Fountain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fountain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76420",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16731",
+ "flagged_pattern": "Misty Fir Forest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Misty Fir Forest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76421",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16741",
+ "flagged_pattern": "Chinoiserie Chic, Pearl Gray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76422",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16742",
+ "flagged_pattern": "Chinoiserie Chic, Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76423",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16743",
+ "flagged_pattern": "Chinoiserie Chic, Powder Beige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76424",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16744",
+ "flagged_pattern": "Chinoiserie Chic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Chinoiserie Chic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76425",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16745",
+ "flagged_pattern": "Chinoiserie Chic, Saffron",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76426",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16746",
+ "flagged_pattern": "Chinoiserie Chic, Fuchsia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76427",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16747",
+ "flagged_pattern": "Chinoiserie Chic, Cobalt",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76428",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16751",
+ "flagged_pattern": "Brushstrokes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brushstrokes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76429",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16752",
+ "flagged_pattern": "Brushstrokes, Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76430",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16753",
+ "flagged_pattern": "Brushstrokes, Powder Beige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76431",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16761",
+ "flagged_pattern": "Asian Pines",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Asian Pines",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76432",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16771",
+ "flagged_pattern": "Weeping Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76433",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16772",
+ "flagged_pattern": "Weeping Willows, Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76434",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16773",
+ "flagged_pattern": "Weeping Willows, Still Waters Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76435",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16781",
+ "flagged_pattern": "Lush Foliage, Sage Tint",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76436",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16782",
+ "flagged_pattern": "Lush Foliage, Rose Dust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76437",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16783",
+ "flagged_pattern": "Lush Foliage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lush Foliage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76438",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16791",
+ "flagged_pattern": "Giraffe's Stroll",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76439",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16792",
+ "flagged_pattern": "Giraffe's Stroll, Nightfall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76440",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16801",
+ "flagged_pattern": "Alluring Panthers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Alluring Panthers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76441",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R16802",
+ "flagged_pattern": "Alluring Panthers, Pink",
+ "match_confidence": "exact",
+ "matched_pattern": "Alluring Panthers",
+ "matched_color": "Pink",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76442",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16811",
+ "flagged_pattern": "Mischievous Tigers",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mischievous Tigers",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76443",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16812",
+ "flagged_pattern": "Mischievous Tigers, Lush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76444",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16813",
+ "flagged_pattern": "Mischievous Tigers, Moonlight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76445",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16821",
+ "flagged_pattern": "Safe Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Safe Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76446",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16831",
+ "flagged_pattern": "Coulisse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coulisse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76447",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16841",
+ "flagged_pattern": "Housewarming",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Housewarming",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76448",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16851",
+ "flagged_pattern": "Secret Well",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Secret Well",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76449",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16852",
+ "flagged_pattern": "Secret Well, Frost",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76450",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16861",
+ "flagged_pattern": "Le Petit Patisserie",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Le Petit Patisserie",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76451",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16871",
+ "flagged_pattern": "Hilltops",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hilltops",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76452",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16872",
+ "flagged_pattern": "Hilltops, Rainbow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76453",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16873",
+ "flagged_pattern": "Hilltops, Graphic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76454",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16881",
+ "flagged_pattern": "Notting Hill",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Notting Hill",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76455",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16891",
+ "flagged_pattern": "Moon Rock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Moon Rock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76456",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16892",
+ "flagged_pattern": "Moon Rock, Surface",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76457",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16901",
+ "flagged_pattern": "We are Robots",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76458",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16902",
+ "flagged_pattern": "We are Robots, Stardust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76459",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16911",
+ "flagged_pattern": "Star Galaxy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Star Galaxy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76460",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16921",
+ "flagged_pattern": "Star Map",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Star Map",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76461",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16922",
+ "flagged_pattern": "Star Map, White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76462",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16931",
+ "flagged_pattern": "Solar System",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Solar System",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76463",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16932",
+ "flagged_pattern": "Solar System, Evening",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76464",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16941",
+ "flagged_pattern": "Dripping Rainbow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dripping Rainbow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76465",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16942",
+ "flagged_pattern": "Dripping Rainbow, Beach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76466",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16943",
+ "flagged_pattern": "Dripping Rainbow, Marshmallow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76467",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16951",
+ "flagged_pattern": "Cliff Castle",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cliff Castle",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76468",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16961",
+ "flagged_pattern": "Stairway Graffiti",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stairway Graffiti",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76469",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16962",
+ "flagged_pattern": "Stairway Graffiti, Swallow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76470",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16971",
+ "flagged_pattern": "Concrete Art, Swallow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76471",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16972",
+ "flagged_pattern": "Concrete Art, Night Swallow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76472",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16973",
+ "flagged_pattern": "Concrete Art",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concrete Art",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76473",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16981",
+ "flagged_pattern": "Dear Dandelions",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dear Dandelions",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76474",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16991",
+ "flagged_pattern": "Dinosaur Mountain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dinosaur Mountain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76475",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16992",
+ "flagged_pattern": "Dinosaur Mountain, Nightfall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76476",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16993",
+ "flagged_pattern": "Dinosaur Mountain, Volcano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76477",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS16994",
+ "flagged_pattern": "Dinosaur Mountain, Day",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76478",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17001",
+ "flagged_pattern": "Balance",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balance",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76479",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17021",
+ "flagged_pattern": "Asana",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Asana",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76480",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17031",
+ "flagged_pattern": "Silence",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Silence",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76481",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17041",
+ "flagged_pattern": "Shinrin-Yoku",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shinrin-Yoku",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76482",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17051",
+ "flagged_pattern": "Breathe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Breathe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76483",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17061",
+ "flagged_pattern": "Stillness",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Stillness",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76484",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17071",
+ "flagged_pattern": "Harmony, Fuchsia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76485",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17072",
+ "flagged_pattern": "Harmony",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Harmony",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76486",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17073",
+ "flagged_pattern": "Harmony, Gray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76487",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17081",
+ "flagged_pattern": "Calm",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Calm",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76488",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17091",
+ "flagged_pattern": "Opulence",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Opulence",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76489",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17092",
+ "flagged_pattern": "Opulence, Pink Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76490",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17093",
+ "flagged_pattern": "Opulence, Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76491",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17094",
+ "flagged_pattern": "Opulence, Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76492",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17101",
+ "flagged_pattern": "Serenity",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Serenity",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76493",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17121",
+ "flagged_pattern": "Cygne, Noir",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76494",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17122",
+ "flagged_pattern": "Cygne, Rose",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76495",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17123",
+ "flagged_pattern": "Cygne, Bleu",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76496",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17124",
+ "flagged_pattern": "Cygne",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cygne",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76497",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17131",
+ "flagged_pattern": "Rabbit Hole, Moss",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76498",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17132",
+ "flagged_pattern": "Rabbit Hole",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rabbit Hole",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76499",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R17141",
+ "flagged_pattern": "Aquatic Life, Oxygen",
+ "match_confidence": "exact",
+ "matched_pattern": "Aquatic Life",
+ "matched_color": "Oxygen",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76500",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R17142",
+ "flagged_pattern": "Aquatic Life, Coral",
+ "match_confidence": "exact",
+ "matched_pattern": "Aquatic Life",
+ "matched_color": "Coral",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76501",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R17143",
+ "flagged_pattern": "Aquatic Life, Shadows",
+ "match_confidence": "exact",
+ "matched_pattern": "Aquatic Life",
+ "matched_color": "Shadows",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76502",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17144",
+ "flagged_pattern": "Aquatic Life",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Aquatic Life",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76503",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17151",
+ "flagged_pattern": "Vigor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vigor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76504",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17152",
+ "flagged_pattern": "Vigor, Oxygen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76505",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17161",
+ "flagged_pattern": "Alice s Garden",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76506",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17162",
+ "flagged_pattern": "Alice's Garden Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76507",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17163",
+ "flagged_pattern": "Alice's Garden Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76508",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17171",
+ "flagged_pattern": "Animal Avenue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76509",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17172",
+ "flagged_pattern": "Animal Avenue, Colorful",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76510",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17181",
+ "flagged_pattern": "Hexagon Leaves",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Leaves",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76511",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17191",
+ "flagged_pattern": "Climbing Ivy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Climbing Ivy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76512",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17201",
+ "flagged_pattern": "Scandinavian Bellewood, Gray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76513",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17202",
+ "flagged_pattern": "Scandinavian Bellewood, Frost",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76514",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17203",
+ "flagged_pattern": "Scandinavian Bellewood, Dawn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76515",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17204",
+ "flagged_pattern": "Scandinavian Bellewood",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Scandinavian Bellewood",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76516",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17205",
+ "flagged_pattern": "Scandinavian Bellewood, Fall",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76517",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17221",
+ "flagged_pattern": "Timber Arch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Timber Arch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76518",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17231",
+ "flagged_pattern": "Animal World",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76519",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17241",
+ "flagged_pattern": "Victoria's Garden",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76520",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17242",
+ "flagged_pattern": "Victoria's Garden, Day",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76521",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17251",
+ "flagged_pattern": "Shades",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shades",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76522",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17261",
+ "flagged_pattern": "Dystopia",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dystopia",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76523",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17271",
+ "flagged_pattern": "Inception",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Inception",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76524",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17281",
+ "flagged_pattern": "Soundproof",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Soundproof",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76525",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17291",
+ "flagged_pattern": "Flounce",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flounce",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76526",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17301",
+ "flagged_pattern": "Metropolis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metropolis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76527",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17302",
+ "flagged_pattern": "Metropolis, Maze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76528",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17311",
+ "flagged_pattern": "The Nest",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "The Nest",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76529",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17321",
+ "flagged_pattern": "Sparkling City",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sparkling City",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76530",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17331",
+ "flagged_pattern": "Imagination",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Imagination",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76531",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17341",
+ "flagged_pattern": "Floating Diamonds",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Floating Diamonds",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76532",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17351",
+ "flagged_pattern": "Fantasy World",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fantasy World",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76533",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17352",
+ "flagged_pattern": "Fantasy World Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76534",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17353",
+ "flagged_pattern": "Fantasy World Vintage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76535",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17371",
+ "flagged_pattern": "Hampshire White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76536",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17381",
+ "flagged_pattern": "Qatar",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76537",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17382",
+ "flagged_pattern": "Qatar Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76538",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17384",
+ "flagged_pattern": "Qatar Sage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76539",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17391",
+ "flagged_pattern": "Tabriz Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76540",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17411",
+ "flagged_pattern": "Catalonia Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76541",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17421",
+ "flagged_pattern": "Anglessy Plum",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76542",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17431",
+ "flagged_pattern": "Jardin red velvet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76543",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17441",
+ "flagged_pattern": "Amazon Fern",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76544",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17451",
+ "flagged_pattern": "Cornwall Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76545",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17461",
+ "flagged_pattern": "Furada Sage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76546",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17462",
+ "flagged_pattern": "Furada Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76547",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17463",
+ "flagged_pattern": "Furada Soft Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76548",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17471",
+ "flagged_pattern": "Marmaris Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76549",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17472",
+ "flagged_pattern": "Marmaris Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76550",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17473",
+ "flagged_pattern": "Marmaris Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76551",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17481",
+ "flagged_pattern": "Aquila Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76552",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R17482",
+ "flagged_pattern": "Aquila Rust",
+ "match_confidence": "exact",
+ "matched_pattern": "Aquila",
+ "matched_color": "Rust",
+ "sourced_cost": 127.5,
+ "computed_price": 230.77,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-76553",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17483",
+ "flagged_pattern": "Aquila Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76554",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17491",
+ "flagged_pattern": "Madagascar Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76555",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17492",
+ "flagged_pattern": "Madagascar Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76556",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17493",
+ "flagged_pattern": "Madagascar Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76557",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17511",
+ "flagged_pattern": "Toledo Juniper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76558",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17512",
+ "flagged_pattern": "Toledo Lemonade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76559",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17513",
+ "flagged_pattern": "Toledo Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76560",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17514",
+ "flagged_pattern": "Toledo Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76561",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17521",
+ "flagged_pattern": "CRK Slate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76562",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17522",
+ "flagged_pattern": "CRK Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76563",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17531",
+ "flagged_pattern": "Saint Sebastian Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76564",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17532",
+ "flagged_pattern": "Saint Sebastian Slate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76565",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17533",
+ "flagged_pattern": "Saint Sebastian Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76566",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17534",
+ "flagged_pattern": "Saint Sebastian Pistachio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76567",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17541",
+ "flagged_pattern": "Arlon Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76568",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17542",
+ "flagged_pattern": "Arlon Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76569",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17551",
+ "flagged_pattern": "Soho Fern",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76570",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17552",
+ "flagged_pattern": "Soho Slate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76571",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17561",
+ "flagged_pattern": "Carnaby Fern",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76572",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17562",
+ "flagged_pattern": "Carnaby Slate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76573",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17571",
+ "flagged_pattern": "Palm Spring Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76574",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17572",
+ "flagged_pattern": "Palm Spring Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76575",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17581",
+ "flagged_pattern": "Cameroon Fern",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76576",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17591",
+ "flagged_pattern": "Tropical Bellewood",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76577",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17592",
+ "flagged_pattern": "Tropical Bellewood Night",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76578",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17611",
+ "flagged_pattern": "Tehran",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76579",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17621",
+ "flagged_pattern": "Paris Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76580",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17631",
+ "flagged_pattern": "Siena Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76581",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17641",
+ "flagged_pattern": "Cuba Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76582",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17651",
+ "flagged_pattern": "Provence Purpur",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76583",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17661",
+ "flagged_pattern": "Leiria Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76584",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17681",
+ "flagged_pattern": "Norwich Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76585",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17691",
+ "flagged_pattern": "Essex Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76586",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17711",
+ "flagged_pattern": "Midar Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76587",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17712",
+ "flagged_pattern": "Midar Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76588",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17721",
+ "flagged_pattern": "Winchester Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76589",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17731",
+ "flagged_pattern": "Harlow Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76590",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17741",
+ "flagged_pattern": "Jaipur Sage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76591",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17752",
+ "flagged_pattern": "Oxford Oak",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76592",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17753",
+ "flagged_pattern": "Oxford Walnut",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76593",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17761",
+ "flagged_pattern": "Berlin Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76594",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17771",
+ "flagged_pattern": "Zanjan Ash",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76595",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17781",
+ "flagged_pattern": "Ravenna Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76596",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17782",
+ "flagged_pattern": "Ravenna Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76597",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17783",
+ "flagged_pattern": "Ravenna Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76598",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17784",
+ "flagged_pattern": "Ravenna Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76599",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17811",
+ "flagged_pattern": "Tunis Saffron",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76600",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17812",
+ "flagged_pattern": "Tunis Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76601",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17813",
+ "flagged_pattern": "Tunis Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76602",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17821",
+ "flagged_pattern": "Fontvieille Soft Velvet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76603",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17831",
+ "flagged_pattern": "Mauritius Dusk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76604",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17841",
+ "flagged_pattern": "Honolulu Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76605",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17842",
+ "flagged_pattern": "Honolulu Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76606",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17843",
+ "flagged_pattern": "Honolulu Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76607",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17851",
+ "flagged_pattern": "Marseille Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76608",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17852",
+ "flagged_pattern": "Marseille Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76609",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17862",
+ "flagged_pattern": "Deva Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76610",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17871",
+ "flagged_pattern": "Barcelona Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76611",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17881",
+ "flagged_pattern": "Inverness Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76612",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17891",
+ "flagged_pattern": "Lucca Cloud",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76613",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17911",
+ "flagged_pattern": "Amboise Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76614",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17912",
+ "flagged_pattern": "Amboise Sage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76615",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17931",
+ "flagged_pattern": "Ayers Rock Desert",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76616",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17932",
+ "flagged_pattern": "Ayers Rock Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76617",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17933",
+ "flagged_pattern": "Ayers Rock Sunrise",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76618",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17934",
+ "flagged_pattern": "Ayers Rock Grass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76619",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17935",
+ "flagged_pattern": "Ayers Rock Sandstone",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76620",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17936",
+ "flagged_pattern": "Ayers Rock Valentine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76621",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17941",
+ "flagged_pattern": "Fringed Follies Hot Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76622",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17942",
+ "flagged_pattern": "Fringed Follies Lagoon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76623",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17943",
+ "flagged_pattern": "Fringed Follies Mint",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76624",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17944",
+ "flagged_pattern": "Fringed Follies Custard",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76625",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17945",
+ "flagged_pattern": "Fringed Follies Safari",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76626",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17951",
+ "flagged_pattern": "Zebra Skin Pastel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76627",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17952",
+ "flagged_pattern": "Zebra Skin Graphic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76628",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17953",
+ "flagged_pattern": "Zebra Skin Coco",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76629",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17954",
+ "flagged_pattern": "Zebra Skin Candy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76630",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17961",
+ "flagged_pattern": "Manhattan Disco Hour",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76631",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17962",
+ "flagged_pattern": "Manhattan Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76632",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17963",
+ "flagged_pattern": "Manhattan Hot Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76633",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17964",
+ "flagged_pattern": "Manhattan Dawn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76634",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17965",
+ "flagged_pattern": "Manhattan Sandstone",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76635",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS17971",
+ "flagged_pattern": "Donedo magenta",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76636",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS18061",
+ "flagged_pattern": "Farmers Hill, Fall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Farmers Hill, Fall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 127.5,
+ "computed_price": 230.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76637",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS18151",
+ "flagged_pattern": "Maria Qvist Pearl",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76638",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50101",
+ "flagged_pattern": "Brother Dear",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76639",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50102",
+ "flagged_pattern": "Animal Symmetry",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76640",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50103",
+ "flagged_pattern": "Surface Dots",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76641",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50104",
+ "flagged_pattern": "In the Forest lives...",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76642",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50105",
+ "flagged_pattern": "Three Dears",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76643",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50301",
+ "flagged_pattern": "Landscape",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76644",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50302",
+ "flagged_pattern": "Landscape Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76645",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50303",
+ "flagged_pattern": "Celestial",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76646",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50304",
+ "flagged_pattern": "Celestial Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76647",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50305",
+ "flagged_pattern": "Gradient",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gradient",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 64.9,
+ "computed_price": 117.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWRW-76648",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50306",
+ "flagged_pattern": "Girls Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76649",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50307",
+ "flagged_pattern": "Girls",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRW-76650",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "RS50308",
+ "flagged_pattern": "Urbanromantic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-500440",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R20632",
+ "flagged_pattern": "Swimmers, Blue Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Swimmers",
+ "matched_color": "Blue",
+ "sourced_cost": 88.3,
+ "computed_price": 159.82,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-451820",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R19511",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Waves",
+ "matched_color": "Magenta",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRW-450057",
+ "vendor": "Rebel Walls",
+ "mfr_sku": "R10572",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Street Art",
+ "matched_color": "Brick Wall",
+ "sourced_cost": 76.4,
+ "computed_price": 138.28,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCAL-23000",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "23000",
+ "flagged_pattern": "Zoe's Zebra Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89466",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16098m",
+ "flagged_pattern": "Giamaican",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89465",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16098m",
+ "flagged_pattern": "Giamaican",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89464",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16482",
+ "flagged_pattern": "East India",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89463",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16482",
+ "flagged_pattern": "East India",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89462",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16482",
+ "flagged_pattern": "East India",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89461",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16482",
+ "flagged_pattern": "East India",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89460",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16507",
+ "flagged_pattern": "Sologne",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89459",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16507",
+ "flagged_pattern": "Sologne",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89458",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16507",
+ "flagged_pattern": "Sologne",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89457",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp16507",
+ "flagged_pattern": "Sologne",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89456",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26420",
+ "flagged_pattern": "Marly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89455",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26420",
+ "flagged_pattern": "Marly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89454",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26420",
+ "flagged_pattern": "Marly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89453",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26420",
+ "flagged_pattern": "Marly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89452",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26464",
+ "flagged_pattern": "Melograno",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89451",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26464",
+ "flagged_pattern": "Melograno",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89450",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26464",
+ "flagged_pattern": "Melograno",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89449",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26464",
+ "flagged_pattern": "Melograno",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89448",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26728",
+ "flagged_pattern": "Aprile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89447",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26728",
+ "flagged_pattern": "Aprile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89446",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26728",
+ "flagged_pattern": "Aprile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89445",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26728",
+ "flagged_pattern": "Aprile",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89443",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26731",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89442",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26731",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89441",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26731",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89440",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26731",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89439",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26731",
+ "flagged_pattern": "Bamboo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89438",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26880",
+ "flagged_pattern": "Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89437",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26880",
+ "flagged_pattern": "Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89436",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26880",
+ "flagged_pattern": "Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89435",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26880",
+ "flagged_pattern": "Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89434",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp26880",
+ "flagged_pattern": "Marble",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89433",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36396",
+ "flagged_pattern": "Gru",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89432",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36396",
+ "flagged_pattern": "Gru",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89431",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36396",
+ "flagged_pattern": "Gru",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89430",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36396",
+ "flagged_pattern": "Gru",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89429",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36396",
+ "flagged_pattern": "Gru",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89428",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36397",
+ "flagged_pattern": "Sagano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89427",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36397",
+ "flagged_pattern": "Sagano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89426",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36397",
+ "flagged_pattern": "Sagano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89425",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36397",
+ "flagged_pattern": "Sagano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89424",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36397",
+ "flagged_pattern": "Sagano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89423",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89422",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89421",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89420",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89419",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89418",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89417",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36408",
+ "flagged_pattern": "Sogi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89416",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36413",
+ "flagged_pattern": "Ginkgo Coordinato",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89415",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36413",
+ "flagged_pattern": "Ginkgo Coordinato",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89414",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36413",
+ "flagged_pattern": "Ginkgo Coordinato",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89413",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36413",
+ "flagged_pattern": "Ginkgo Coordinato",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89412",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp36413",
+ "flagged_pattern": "Ginkgo Coordinato",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89411",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89410",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89409",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89408",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89407",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89406",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89405",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89404",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89403",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88332",
+ "flagged_pattern": "Melograno Unito",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89402",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89401",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89400",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89399",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89398",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89397",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89396",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89395",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88333",
+ "flagged_pattern": "Savile Row",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89394",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1183",
+ "flagged_pattern": "Basket Weave G1183",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89392",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1185",
+ "flagged_pattern": "Basket Weave G1185",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89391",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1186",
+ "flagged_pattern": "Basket Weave G1186",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Basket Weave G1186",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 312.0,
+ "computed_price": 564.71,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89390",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1188",
+ "flagged_pattern": "Basket Weave G1188",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89389",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1189",
+ "flagged_pattern": "Basket Weave G1189",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89388",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1190",
+ "flagged_pattern": "Basket Weave G1190",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Basket Weave G1190",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 282.0,
+ "computed_price": 510.41,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89387",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1191",
+ "flagged_pattern": "Basket Weave G1191",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Basket Weave G1191",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89386",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1192",
+ "flagged_pattern": "Basket Weave G1192",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89385",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89384",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89383",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0003G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89382",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0004G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89381",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0005G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89380",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0006G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89379",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0008G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89378",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0009G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89377",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0010G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89376",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0011G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89375",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0012G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89374",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0013G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89373",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0014G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89372",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0015G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89371",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0016G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89370",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0017G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89369",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0018G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89368",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0019G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89367",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0020G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89366",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0022G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89365",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0023G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89364",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0024G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89363",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1195",
+ "flagged_pattern": "Tightweave Jute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tightweave Jute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 322.0,
+ "computed_price": 582.81,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89362",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G1195",
+ "flagged_pattern": "Tightweave Jute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tightweave Jute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 322.0,
+ "computed_price": 582.81,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89361",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1196",
+ "flagged_pattern": "Heavy Tightweave Jute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Heavy Tightweave Jute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 324.0,
+ "computed_price": 586.43,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89360",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G1196",
+ "flagged_pattern": "Heavy Tightweave Jute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Heavy Tightweave Jute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 324.0,
+ "computed_price": 586.43,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89359",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G81388AM",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89358",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G81388M",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89357",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G81388M",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89356",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81089",
+ "flagged_pattern": "Madrid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89355",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81305m",
+ "flagged_pattern": "Locksley Damask",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Locksley Damask",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 80.63,
+ "computed_price": 145.94,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89354",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89353",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89352",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89351",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89350",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89349",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89348",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89347",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89346",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89345",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89344",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89343",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89342",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89341",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89340",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89339",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89338",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89337",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81545",
+ "flagged_pattern": "Mikonos",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mikonos",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 424.0,
+ "computed_price": 767.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89336",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81547",
+ "flagged_pattern": "Chinoise Exotique",
+ "match_confidence": "review",
+ "matched_pattern": "Chinoise Exotique",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 225.0,
+ 432.0
+ ],
+ "computed_price_range": [
+ 407.24,
+ 781.9
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89335",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81547",
+ "flagged_pattern": "Chinoise Exotique",
+ "match_confidence": "review",
+ "matched_pattern": "Chinoise Exotique",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 225.0,
+ 432.0
+ ],
+ "computed_price_range": [
+ 407.24,
+ 781.9
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89334",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81547",
+ "flagged_pattern": "Chinoise Exotique",
+ "match_confidence": "review",
+ "matched_pattern": "Chinoise Exotique",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 225.0,
+ 432.0
+ ],
+ "computed_price_range": [
+ 407.24,
+ 781.9
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89333",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81561",
+ "flagged_pattern": "Pillement Toile",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pillement Toile",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 298.0,
+ "computed_price": 539.37,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89332",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81584",
+ "flagged_pattern": "Shanghai",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89331",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81584",
+ "flagged_pattern": "Shanghai",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89330",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81605",
+ "flagged_pattern": "Ming Circus",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ming Circus",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 504.0,
+ "computed_price": 912.22,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89329",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81605",
+ "flagged_pattern": "Ming Circus",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ming Circus",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 504.0,
+ "computed_price": 912.22,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89328",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81605",
+ "flagged_pattern": "Ming Circus",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ming Circus",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 504.0,
+ "computed_price": 912.22,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89327",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81630",
+ "flagged_pattern": "Baldwin Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baldwin Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89326",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81630",
+ "flagged_pattern": "Baldwin Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baldwin Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89325",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81630",
+ "flagged_pattern": "Baldwin Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baldwin Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89324",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81630",
+ "flagged_pattern": "Baldwin Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baldwin Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89323",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81630",
+ "flagged_pattern": "Baldwin Bamboo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Baldwin Bamboo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89322",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88213",
+ "flagged_pattern": "Daphne",
+ "match_confidence": "review",
+ "matched_pattern": "Daphne",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 47.25,
+ 168.0
+ ],
+ "computed_price_range": [
+ 85.52,
+ 304.07
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89321",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88213",
+ "flagged_pattern": "Daphne",
+ "match_confidence": "review",
+ "matched_pattern": "Daphne",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 47.25,
+ 168.0
+ ],
+ "computed_price_range": [
+ 85.52,
+ 304.07
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89320",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88213",
+ "flagged_pattern": "Daphne",
+ "match_confidence": "review",
+ "matched_pattern": "Daphne",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 47.25,
+ 168.0
+ ],
+ "computed_price_range": [
+ 85.52,
+ 304.07
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89319",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88213",
+ "flagged_pattern": "Daphne",
+ "match_confidence": "review",
+ "matched_pattern": "Daphne",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 47.25,
+ 168.0
+ ],
+ "computed_price_range": [
+ 85.52,
+ 304.07
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89316",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89315",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88362",
+ "flagged_pattern": "Waterfall Linen Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89314",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88408",
+ "flagged_pattern": "Plie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89312",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0025G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89311",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0028G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89310",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0032G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89309",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0033G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89308",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0004G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89307",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0005G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89306",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0008G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89305",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0009G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89304",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81212",
+ "flagged_pattern": "Ch'In Ling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ch'In Ling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 298.0,
+ "computed_price": 539.37,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89303",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81212",
+ "flagged_pattern": "Ch'In Ling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ch'In Ling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 298.0,
+ "computed_price": 539.37,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89302",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89301",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89300",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89299",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88331",
+ "flagged_pattern": "Aria Strie",
+ "match_confidence": "review",
+ "matched_pattern": "Aria Strie",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 26.25,
+ 70.0
+ ],
+ "computed_price_range": [
+ 47.51,
+ 126.7
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89298",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88336",
+ "flagged_pattern": "Metal Cork",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metal Cork",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.0,
+ "computed_price": 133.94,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89297",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88337",
+ "flagged_pattern": "Silk String",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89296",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88338",
+ "flagged_pattern": "Metal Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metal Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 52.0,
+ "computed_price": 94.12,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89295",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88339",
+ "flagged_pattern": "Strie Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Strie Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 66.0,
+ "computed_price": 119.46,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89294",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88340",
+ "flagged_pattern": "Pearl Mica",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pearl Mica",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 21.38,
+ "computed_price": 38.7,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89293",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88341",
+ "flagged_pattern": "Fine Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fine Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89292",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88341",
+ "flagged_pattern": "Fine Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fine Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89291",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88343",
+ "flagged_pattern": "Textured Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Textured Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 50.0,
+ "computed_price": 90.5,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89290",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88344",
+ "flagged_pattern": "Arrowroot Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Arrowroot Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 94.0,
+ "computed_price": 170.14,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89289",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88347",
+ "flagged_pattern": "Shantung Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shantung Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 70.0,
+ "computed_price": 126.7,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89288",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88354",
+ "flagged_pattern": "Luciana Damask Print",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luciana Damask Print",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89287",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88355",
+ "flagged_pattern": "Balinese Peacock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balinese Peacock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89286",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88355",
+ "flagged_pattern": "Balinese Peacock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balinese Peacock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89285",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89284",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89283",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88360",
+ "flagged_pattern": "Andromeda Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89282",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88360",
+ "flagged_pattern": "Andromeda Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89281",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88360",
+ "flagged_pattern": "Andromeda Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89280",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88360",
+ "flagged_pattern": "Andromeda Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89279",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88360",
+ "flagged_pattern": "Andromeda Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89278",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88362",
+ "flagged_pattern": "Waterfall Linen Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89277",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88363",
+ "flagged_pattern": "Galway Linen Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89276",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88364",
+ "flagged_pattern": "Wexford Linen Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Wexford Linen Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 50.63,
+ "computed_price": 91.64,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89275",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88372",
+ "flagged_pattern": "Ascot Floral Print",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ascot Floral Print",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 84.0,
+ "computed_price": 152.04,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89274",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89273",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89272",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88374",
+ "flagged_pattern": "Suzhou Lattice Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89271",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88375",
+ "flagged_pattern": "Jardin De Chine",
+ "match_confidence": "review",
+ "matched_pattern": "Jardin De Chine",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 142.0,
+ 295.0
+ ],
+ "computed_price_range": [
+ 257.01,
+ 533.94
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89270",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88380",
+ "flagged_pattern": "Shenyang Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Shenyang Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 192.0,
+ 1536.0
+ ],
+ "computed_price_range": [
+ 347.51,
+ 2780.09
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89269",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88385",
+ "flagged_pattern": "Adelaide Beaded Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Adelaide Beaded Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 228.0,
+ "computed_price": 412.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89268",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88385",
+ "flagged_pattern": "Adelaide Beaded Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Adelaide Beaded Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 228.0,
+ "computed_price": 412.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89267",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88385",
+ "flagged_pattern": "Adelaide Beaded Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Adelaide Beaded Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 228.0,
+ "computed_price": 412.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89266",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88385",
+ "flagged_pattern": "Adelaide Beaded Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Adelaide Beaded Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 228.0,
+ "computed_price": 412.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89265",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88386",
+ "flagged_pattern": "Veronica Beaded Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veronica Beaded Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89264",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89263",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89262",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89261",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88410",
+ "flagged_pattern": "Cinder Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89257",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88416",
+ "flagged_pattern": "Terrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89256",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88417",
+ "flagged_pattern": "Mineral Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89255",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88418",
+ "flagged_pattern": "Lund Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89254",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89253",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89252",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89251",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88421",
+ "flagged_pattern": "Archea Rib Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89250",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88424",
+ "flagged_pattern": "Strie Woodgrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89249",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88427",
+ "flagged_pattern": "Fresco",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89248",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89247",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89246",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88432",
+ "flagged_pattern": "Andrew Jackson Floral",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Andrew Jackson Floral",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89245",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88432",
+ "flagged_pattern": "Andrew Jackson Floral",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Andrew Jackson Floral",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89244",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88432",
+ "flagged_pattern": "Andrew Jackson Floral",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Andrew Jackson Floral",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89243",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88432",
+ "flagged_pattern": "Andrew Jackson Floral",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Andrew Jackson Floral",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89242",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88434",
+ "flagged_pattern": "Edwin'S Covey",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Edwin'S Covey",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89241",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89240",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89239",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89238",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89237",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89236",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89235",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89234",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89233",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89232",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89231",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88437",
+ "flagged_pattern": "Feather Reed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89230",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89229",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89228",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89227",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89226",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89225",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89224",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89223",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89222",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88438",
+ "flagged_pattern": "Pampas",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89221",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89220",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89219",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89218",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89217",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89216",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89215",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88439",
+ "flagged_pattern": "Great Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89214",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89213",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89212",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89211",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89210",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89209",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89208",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88440",
+ "flagged_pattern": "Seagrass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89207",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89206",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89205",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89204",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89203",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89202",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89201",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89200",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89199",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89198",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89197",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89196",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89195",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89194",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89193",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89192",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89191",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89190",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88442",
+ "flagged_pattern": "Savanna Seedling",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89189",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89188",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89187",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89186",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89185",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89184",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89183",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89182",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88443",
+ "flagged_pattern": "Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89181",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0026G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89180",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0027G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89179",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0030G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89178",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0031G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89177",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0034G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89176",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0035G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89175",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0036G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89174",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0037G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89173",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0038G1193",
+ "flagged_pattern": "Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 15.0,
+ 282.0
+ ],
+ "computed_price_range": [
+ 27.15,
+ 510.41
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89172",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89171",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89170",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0003G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89169",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0006G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89167",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0010G1194",
+ "flagged_pattern": "Sisal Metallic",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sisal Metallic",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 342.0,
+ "computed_price": 619.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89166",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1197",
+ "flagged_pattern": "Glimmer Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89165",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0002G1197",
+ "flagged_pattern": "Glimmer Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89164",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "0001G1198",
+ "flagged_pattern": "Raffia Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89163",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81212",
+ "flagged_pattern": "Ch'In Ling",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ch'In Ling",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 298.0,
+ "computed_price": 539.37,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89162",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88366",
+ "flagged_pattern": "Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89161",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88366",
+ "flagged_pattern": "Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89160",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88366",
+ "flagged_pattern": "Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89159",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88366",
+ "flagged_pattern": "Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89158",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88366",
+ "flagged_pattern": "Canyon",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89157",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88367",
+ "flagged_pattern": "Pacific Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pacific Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89156",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88367",
+ "flagged_pattern": "Pacific Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pacific Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89155",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88367",
+ "flagged_pattern": "Pacific Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pacific Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89154",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88367",
+ "flagged_pattern": "Pacific Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pacific Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89153",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88367",
+ "flagged_pattern": "Pacific Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Pacific Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89152",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88368",
+ "flagged_pattern": "Crosscurrent",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crosscurrent",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.88,
+ "computed_price": 84.85,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89151",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88368",
+ "flagged_pattern": "Crosscurrent",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crosscurrent",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.88,
+ "computed_price": 84.85,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89150",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88368",
+ "flagged_pattern": "Crosscurrent",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crosscurrent",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.88,
+ "computed_price": 84.85,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89149",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88368",
+ "flagged_pattern": "Crosscurrent",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crosscurrent",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.88,
+ "computed_price": 84.85,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89148",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88368",
+ "flagged_pattern": "Crosscurrent",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crosscurrent",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.88,
+ "computed_price": 84.85,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89147",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88369",
+ "flagged_pattern": "Rainshadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainshadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89146",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88369",
+ "flagged_pattern": "Rainshadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainshadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89145",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88369",
+ "flagged_pattern": "Rainshadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainshadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89144",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88369",
+ "flagged_pattern": "Rainshadow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rainshadow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 130.0,
+ "computed_price": 235.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89143",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88370",
+ "flagged_pattern": "Glacier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glacier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 43.88,
+ "computed_price": 79.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89142",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88370",
+ "flagged_pattern": "Glacier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glacier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 43.88,
+ "computed_price": 79.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89141",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88370",
+ "flagged_pattern": "Glacier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glacier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 43.88,
+ "computed_price": 79.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89140",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88370",
+ "flagged_pattern": "Glacier",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glacier",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 43.88,
+ "computed_price": 79.42,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89139",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88371",
+ "flagged_pattern": "Tortoiseshell",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tortoiseshell",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89138",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88371",
+ "flagged_pattern": "Tortoiseshell",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tortoiseshell",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89137",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88371",
+ "flagged_pattern": "Tortoiseshell",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tortoiseshell",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89136",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88372",
+ "flagged_pattern": "Ascot Floral Print",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ascot Floral Print",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 84.0,
+ "computed_price": 152.04,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89135",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88372",
+ "flagged_pattern": "Ascot Floral Print",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ascot Floral Print",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 84.0,
+ "computed_price": 152.04,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89134",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88372",
+ "flagged_pattern": "Ascot Floral Print",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ascot Floral Print",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 84.0,
+ "computed_price": 152.04,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89133",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89132",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89131",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89130",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89129",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88373",
+ "flagged_pattern": "Suzhou Lattice",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 24.75,
+ "computed_price": 44.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89128",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88374",
+ "flagged_pattern": "Suzhou Lattice Raffia Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89127",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88374",
+ "flagged_pattern": "Suzhou Lattice Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89126",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88374",
+ "flagged_pattern": "Suzhou Lattice Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89125",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88374",
+ "flagged_pattern": "Suzhou Lattice Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Suzhou Lattice Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89124",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88375",
+ "flagged_pattern": "Jardin De Chine",
+ "match_confidence": "review",
+ "matched_pattern": "Jardin De Chine",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 142.0,
+ 295.0
+ ],
+ "computed_price_range": [
+ 257.01,
+ 533.94
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89123",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88375",
+ "flagged_pattern": "Jardin De Chine",
+ "match_confidence": "review",
+ "matched_pattern": "Jardin De Chine",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 142.0,
+ 295.0
+ ],
+ "computed_price_range": [
+ 257.01,
+ 533.94
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89122",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88375",
+ "flagged_pattern": "Jardin De Chine",
+ "match_confidence": "review",
+ "matched_pattern": "Jardin De Chine",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 142.0,
+ 295.0
+ ],
+ "computed_price_range": [
+ 257.01,
+ 533.94
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89121",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88376",
+ "flagged_pattern": "Primavera",
+ "match_confidence": "review",
+ "matched_pattern": "Primavera",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 70.0,
+ 364.0
+ ],
+ "computed_price_range": [
+ 126.7,
+ 658.82
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89120",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88376",
+ "flagged_pattern": "Primavera",
+ "match_confidence": "review",
+ "matched_pattern": "Primavera",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 70.0,
+ 364.0
+ ],
+ "computed_price_range": [
+ 126.7,
+ 658.82
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89119",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88376",
+ "flagged_pattern": "Primavera",
+ "match_confidence": "review",
+ "matched_pattern": "Primavera",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 70.0,
+ 364.0
+ ],
+ "computed_price_range": [
+ 126.7,
+ 658.82
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89118",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88377",
+ "flagged_pattern": "Shantung Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shantung Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89117",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88377",
+ "flagged_pattern": "Shantung Garden",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Shantung Garden",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89116",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88378",
+ "flagged_pattern": "Surat Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Surat Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89115",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88378",
+ "flagged_pattern": "Surat Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Surat Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89114",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88379",
+ "flagged_pattern": "Falk Manor House Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Falk Manor House Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 117.0,
+ "computed_price": 211.76,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89113",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88379",
+ "flagged_pattern": "Falk Manor House Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Falk Manor House Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 117.0,
+ "computed_price": 211.76,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89112",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88379",
+ "flagged_pattern": "Falk Manor House Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Falk Manor House Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 117.0,
+ "computed_price": 211.76,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89111",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88380",
+ "flagged_pattern": "Shenyang Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Shenyang Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 192.0,
+ 1536.0
+ ],
+ "computed_price_range": [
+ 347.51,
+ 2780.09
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89110",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88381",
+ "flagged_pattern": "Belize",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Belize",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89109",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88381",
+ "flagged_pattern": "Belize",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Belize",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89108",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88381",
+ "flagged_pattern": "Belize",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Belize",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89107",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88382",
+ "flagged_pattern": "Luoyang Garden Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Luoyang Garden Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 192.0,
+ 1536.0
+ ],
+ "computed_price_range": [
+ 347.51,
+ 2780.09
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89106",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88382",
+ "flagged_pattern": "Luoyang Garden Sisal",
+ "match_confidence": "review",
+ "matched_pattern": "Luoyang Garden Sisal",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 192.0,
+ 1536.0
+ ],
+ "computed_price_range": [
+ 347.51,
+ 2780.09
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-89105",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88383",
+ "flagged_pattern": "Monroe Embroidered Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Monroe Embroidered Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89104",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88383",
+ "flagged_pattern": "Monroe Embroidered Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Monroe Embroidered Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89103",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88383",
+ "flagged_pattern": "Monroe Embroidered Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Monroe Embroidered Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89102",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88384",
+ "flagged_pattern": "Olivia Embroidered Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Olivia Embroidered Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 192.0,
+ "computed_price": 347.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89101",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88386",
+ "flagged_pattern": "Veronica Beaded Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veronica Beaded Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89100",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88386",
+ "flagged_pattern": "Veronica Beaded Grasscloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veronica Beaded Grasscloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89096",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88414",
+ "flagged_pattern": "Tobias Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89095",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88416",
+ "flagged_pattern": "Terrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89094",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89093",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88425",
+ "flagged_pattern": "Bent Wood",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bent Wood",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89092",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88429",
+ "flagged_pattern": "Quarry Veneer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89091",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88431",
+ "flagged_pattern": "Lanai",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lanai",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89090",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89089",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89088",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89087",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89086",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89085",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88441",
+ "flagged_pattern": "Willow Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89084",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00011911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89083",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00021911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89082",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00031911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89081",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00041911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89080",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00051911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89079",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00061911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89078",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00071911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89077",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00081911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89076",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00091911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89075",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00101911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89074",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00111911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89073",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00121911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89072",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00131911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89071",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00141911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89070",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00151911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89069",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00161911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89068",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00171911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89067",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00181911",
+ "flagged_pattern": "Jamila",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89066",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00012191",
+ "flagged_pattern": "Haiku",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Haiku",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 59.63,
+ "computed_price": 107.93,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89065",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00022191",
+ "flagged_pattern": "Haiku",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Haiku",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 59.63,
+ "computed_price": 107.93,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89064",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00032191",
+ "flagged_pattern": "Haiku",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Haiku",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 59.63,
+ "computed_price": 107.93,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89063",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00042191",
+ "flagged_pattern": "Haiku",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Haiku",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 59.63,
+ "computed_price": 107.93,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89062",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00019126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89061",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00029126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89060",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00039126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89059",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00049126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89058",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00059126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89057",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00069126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89056",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00079126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89055",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00089126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89054",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00099126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89053",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00109126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89052",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00119126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89051",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00129126",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89050",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00019146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89049",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00029146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89048",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00039146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89047",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00049146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89046",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00059146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89045",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00069146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89044",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00079146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89043",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00089146",
+ "flagged_pattern": "Imperio",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89042",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00019154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89041",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00029154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89040",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00039154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89039",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00049154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89038",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00059154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89037",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00069154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89036",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00079154",
+ "flagged_pattern": "Rendezvous",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89035",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00019173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89034",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00029173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89033",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00039173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89032",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00049173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89031",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00059173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89030",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00069173",
+ "flagged_pattern": "Phoenix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89029",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00019190",
+ "flagged_pattern": "Kotori",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89028",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00029190",
+ "flagged_pattern": "Kotori",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89027",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00039190",
+ "flagged_pattern": "Kotori",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89026",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WBN00049190",
+ "flagged_pattern": "Kotori",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89025",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013301",
+ "flagged_pattern": "Flamboyant",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flamboyant",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 318.0,
+ "computed_price": 575.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89024",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023301",
+ "flagged_pattern": "Flamboyant",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flamboyant",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 318.0,
+ "computed_price": 575.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89023",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033301",
+ "flagged_pattern": "Flamboyant",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Flamboyant",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 318.0,
+ "computed_price": 575.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89022",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013302",
+ "flagged_pattern": "Basque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89021",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023302",
+ "flagged_pattern": "Basque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89020",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033302",
+ "flagged_pattern": "Basque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89019",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89018",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89017",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89016",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89015",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000053303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89014",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000063303",
+ "flagged_pattern": "Horimono",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Horimono",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 288.0,
+ "computed_price": 521.27,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89013",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013304",
+ "flagged_pattern": "Porto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Porto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 184.88,
+ "computed_price": 334.62,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89012",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023304",
+ "flagged_pattern": "Porto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Porto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 184.88,
+ "computed_price": 334.62,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89011",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033304",
+ "flagged_pattern": "Porto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Porto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 184.88,
+ "computed_price": 334.62,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89010",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013305",
+ "flagged_pattern": "Vert De Gris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89009",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013306",
+ "flagged_pattern": "Hirondelles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hirondelles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89008",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023306",
+ "flagged_pattern": "Hirondelles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hirondelles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89007",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033306",
+ "flagged_pattern": "Hirondelles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hirondelles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89006",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043306",
+ "flagged_pattern": "Hirondelles",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hirondelles",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89005",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013307",
+ "flagged_pattern": "Brume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89004",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023307",
+ "flagged_pattern": "Brume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89003",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033307",
+ "flagged_pattern": "Brume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 370.0,
+ "computed_price": 669.68,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-89002",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013308",
+ "flagged_pattern": "Enlaces",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89001",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013309",
+ "flagged_pattern": "Recreation",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-89000",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013310",
+ "flagged_pattern": "Iresumi",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Iresumi",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88999",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013311",
+ "flagged_pattern": "Quiberon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88997",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013313",
+ "flagged_pattern": "Cesar",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88996",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013314",
+ "flagged_pattern": "Carambolage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88995",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023314",
+ "flagged_pattern": "Carambolage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88994",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88993",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88992",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88991",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88990",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000053315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88989",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000063315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88988",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000073315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88987",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000083315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88986",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000093315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88985",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000103315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88984",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000113315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88983",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000123315",
+ "flagged_pattern": "Embosse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Embosse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 266.0,
+ "computed_price": 481.45,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88982",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013316",
+ "flagged_pattern": "Yokata",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Yokata",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88981",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023316",
+ "flagged_pattern": "Yokata",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Yokata",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88980",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033316",
+ "flagged_pattern": "Yokata",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Yokata",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88979",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043316",
+ "flagged_pattern": "Yokata",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Yokata",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 328.0,
+ "computed_price": 593.67,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88978",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013317",
+ "flagged_pattern": "Anastasia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88977",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023317",
+ "flagged_pattern": "Anastasia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88976",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033317",
+ "flagged_pattern": "Anastasia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88975",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043317",
+ "flagged_pattern": "Anastasia",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88974",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013318",
+ "flagged_pattern": "Coupole",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88973",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023318",
+ "flagged_pattern": "Coupole",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88972",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013319",
+ "flagged_pattern": "Festival",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88971",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013320",
+ "flagged_pattern": "Gouache",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88970",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023320",
+ "flagged_pattern": "Gouache",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88969",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033320",
+ "flagged_pattern": "Gouache",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88968",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013321",
+ "flagged_pattern": "Cerisier",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88967",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023321",
+ "flagged_pattern": "Cerisier",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88966",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033321",
+ "flagged_pattern": "Cerisier",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88965",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013322",
+ "flagged_pattern": "Croquis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Croquis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 482.0,
+ "computed_price": 872.4,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88964",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013323",
+ "flagged_pattern": "Affiches",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Affiches",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 504.0,
+ "computed_price": 912.22,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88963",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023323",
+ "flagged_pattern": "Affiches",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Affiches",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 504.0,
+ "computed_price": 912.22,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88962",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013324",
+ "flagged_pattern": "Corail",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88961",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023324",
+ "flagged_pattern": "Corail",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88960",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033324",
+ "flagged_pattern": "Corail",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88959",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043324",
+ "flagged_pattern": "Corail",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88958",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013325",
+ "flagged_pattern": "Abyssal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88957",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013326",
+ "flagged_pattern": "Precieux",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Precieux",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 964.0,
+ "computed_price": 1744.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88956",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023326",
+ "flagged_pattern": "Precieux",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Precieux",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 964.0,
+ "computed_price": 1744.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88955",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033326",
+ "flagged_pattern": "Precieux",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Precieux",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 964.0,
+ "computed_price": 1744.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88954",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000043326",
+ "flagged_pattern": "Precieux",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Precieux",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 964.0,
+ "computed_price": 1744.8,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88953",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013327",
+ "flagged_pattern": "Ecailles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88952",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023327",
+ "flagged_pattern": "Ecailles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88951",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013328",
+ "flagged_pattern": "Magma",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88950",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013329",
+ "flagged_pattern": "Thebaide",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Thebaide",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 268.0,
+ "computed_price": 485.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88949",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023329",
+ "flagged_pattern": "Thebaide",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Thebaide",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 268.0,
+ "computed_price": 485.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88948",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033329",
+ "flagged_pattern": "Thebaide",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Thebaide",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 268.0,
+ "computed_price": 485.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88947",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013330",
+ "flagged_pattern": "Celebration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Celebration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 394.0,
+ "computed_price": 713.12,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88946",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013331",
+ "flagged_pattern": "Coquelicot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coquelicot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 340.0,
+ "computed_price": 615.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88945",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023331",
+ "flagged_pattern": "Coquelicot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coquelicot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 340.0,
+ "computed_price": 615.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88944",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033331",
+ "flagged_pattern": "Coquelicot",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Coquelicot",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 340.0,
+ "computed_price": 615.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88943",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000013332",
+ "flagged_pattern": "Etoiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88942",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000023332",
+ "flagged_pattern": "Etoiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88941",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000033332",
+ "flagged_pattern": "Etoiles",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88940",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016440",
+ "flagged_pattern": "Figari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Figari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 402.0,
+ "computed_price": 727.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88939",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016441",
+ "flagged_pattern": "Ecume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ecume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 440.0,
+ "computed_price": 796.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88938",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026441",
+ "flagged_pattern": "Ecume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ecume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 440.0,
+ "computed_price": 796.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88937",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036441",
+ "flagged_pattern": "Ecume",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ecume",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 440.0,
+ "computed_price": 796.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88936",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016442",
+ "flagged_pattern": "Palmeraie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88935",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026442",
+ "flagged_pattern": "Palmeraie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88934",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036442",
+ "flagged_pattern": "Palmeraie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88933",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000046442",
+ "flagged_pattern": "Palmeraie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88932",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000056442",
+ "flagged_pattern": "Palmeraie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88931",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016443",
+ "flagged_pattern": "Colline",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colline",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 284.0,
+ "computed_price": 514.03,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88930",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026443",
+ "flagged_pattern": "Colline",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colline",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 284.0,
+ "computed_price": 514.03,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88929",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036443",
+ "flagged_pattern": "Colline",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Colline",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 284.0,
+ "computed_price": 514.03,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88928",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016445",
+ "flagged_pattern": "Marqueterie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88927",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026445",
+ "flagged_pattern": "Marqueterie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88926",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036445",
+ "flagged_pattern": "Marqueterie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88925",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016446",
+ "flagged_pattern": "Carrare",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Carrare",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 566.0,
+ "computed_price": 1024.43,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88924",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026446",
+ "flagged_pattern": "Carrare",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Carrare",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 566.0,
+ "computed_price": 1024.43,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88923",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036446",
+ "flagged_pattern": "Carrare",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Carrare",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 566.0,
+ "computed_price": 1024.43,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88922",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016447",
+ "flagged_pattern": "Patine",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patine",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 592.0,
+ "computed_price": 1071.49,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88921",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026447",
+ "flagged_pattern": "Patine",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patine",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 592.0,
+ "computed_price": 1071.49,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88920",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036447",
+ "flagged_pattern": "Patine",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Patine",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 592.0,
+ "computed_price": 1071.49,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88919",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016448",
+ "flagged_pattern": "Rabane",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rabane",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88918",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026448",
+ "flagged_pattern": "Rabane",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rabane",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88917",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036448",
+ "flagged_pattern": "Rabane",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rabane",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88916",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000046448",
+ "flagged_pattern": "Rabane",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rabane",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88915",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000016449",
+ "flagged_pattern": "Vibration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vibration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88914",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000026449",
+ "flagged_pattern": "Vibration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vibration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88913",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WH000036449",
+ "flagged_pattern": "Vibration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vibration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 330.0,
+ "computed_price": 597.29,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88912",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1001ALAB",
+ "flagged_pattern": "Alabaster Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88910",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1003ALAB",
+ "flagged_pattern": "Alabaster Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88904",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1033BENJ",
+ "flagged_pattern": "Benjamin Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88903",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1041BENJ",
+ "flagged_pattern": "Benjamin Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88902",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1046BENJ",
+ "flagged_pattern": "Benjamin Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88901",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1155BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88900",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1156BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88899",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1157BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88898",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1160BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88897",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1161BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88896",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1164BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88895",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1165BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88894",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1166BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88893",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1167BORA",
+ "flagged_pattern": "Bora Bora",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88892",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1930BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88891",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1931BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88890",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1932BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88889",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1933BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88888",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1934BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88887",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1935BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88886",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1939BRUS",
+ "flagged_pattern": "Brush Stroke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88884",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0702CABL",
+ "flagged_pattern": "Cable Beach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88883",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0703CABL",
+ "flagged_pattern": "Cable Beach",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88882",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0725CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88881",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0726CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88880",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0727CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88879",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0728CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88878",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0729CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88877",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0731CASU",
+ "flagged_pattern": "Casu Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88876",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0741CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88875",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1092CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88874",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1093CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88873",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1094CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88872",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1095CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88871",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1096CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88870",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1097CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88869",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK1098CORT",
+ "flagged_pattern": "Cortica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88868",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0775CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88867",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK2264CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88866",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK2266CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88865",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK2268CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88864",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK2269CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88863",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK2270CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88862",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK5950CURT",
+ "flagged_pattern": "Curtis Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88861",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0094DREA",
+ "flagged_pattern": "Dreamland",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88860",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WRK0095DREA",
+ "flagged_pattern": "Dreamland",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88700",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WSM00010100",
+ "flagged_pattern": "Delfo Ii",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88699",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WSM00020100",
+ "flagged_pattern": "Delfo Ii",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88698",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WSM00030100",
+ "flagged_pattern": "Delfo Ii",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88697",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661500",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88696",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661600",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88695",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661501",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88694",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661601",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88693",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661502",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88692",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661602",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88691",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661503",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88690",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661603",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88689",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661504",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88688",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661604",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88687",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661505",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88686",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661605",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88685",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661506",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88684",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661606",
+ "flagged_pattern": "Tech Inspirations",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tech Inspirations",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 172.0,
+ "computed_price": 311.31,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88683",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661507",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88682",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661508",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88681",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661509",
+ "flagged_pattern": "Crafty Deformation",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Crafty Deformation",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 142.0,
+ "computed_price": 257.01,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88680",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661410",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88679",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661510",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88678",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661610",
+ "flagged_pattern": "Graphic Spirit",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Spirit",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88677",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661411",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88676",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661511",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88675",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661611",
+ "flagged_pattern": "Graphic Spirit",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Spirit",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88674",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661412",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88673",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661512",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88672",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661612",
+ "flagged_pattern": "Graphic Spirit",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Spirit",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88671",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661413",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88670",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661513",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88669",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661613",
+ "flagged_pattern": "Graphic Spirit",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Spirit",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88668",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661414",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88667",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661514",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88666",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661614",
+ "flagged_pattern": "Graphic Spirit",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Spirit",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88665",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661415",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88664",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661515",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88663",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661416",
+ "flagged_pattern": "Smooth Sheen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Smooth Sheen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 236.0,
+ "computed_price": 427.15,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88662",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661516",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88661",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661517",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88660",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661518",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88659",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661519",
+ "flagged_pattern": "Mechanical Workmanship",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mechanical Workmanship",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88658",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661420",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88657",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661520",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88656",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661620",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88655",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661421",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88654",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661521",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88653",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661621",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88652",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661422",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88651",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661522",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88650",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661622",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88648",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661523",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88647",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661623",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88646",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661424",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88645",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661524",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88644",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661624",
+ "flagged_pattern": "Belle Epoque",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88643",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661425",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88642",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661525",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88641",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661426",
+ "flagged_pattern": "Hexagon Inspiration",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hexagon Inspiration",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88640",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661526",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88639",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661527",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88638",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661528",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88637",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661529",
+ "flagged_pattern": "Orissa Silk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Orissa Silk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 234.0,
+ "computed_price": 423.53,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88636",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661430",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88635",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661530",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88634",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661630",
+ "flagged_pattern": "Powerful Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Powerful Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88633",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661431",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88632",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661531",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88631",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661631",
+ "flagged_pattern": "Powerful Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Powerful Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88630",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661432",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88629",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661532",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88628",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661632",
+ "flagged_pattern": "Powerful Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Powerful Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88627",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661433",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88626",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661533",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88625",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661633",
+ "flagged_pattern": "Powerful Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Powerful Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88624",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661434",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88623",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661534",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88622",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661634",
+ "flagged_pattern": "Powerful Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Powerful Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 194.0,
+ "computed_price": 351.13,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88621",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661435",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88620",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661535",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88619",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661436",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88618",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661536",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88617",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661437",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88616",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661537",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88615",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661438",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88614",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661538",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88613",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661439",
+ "flagged_pattern": "Bradford Wool",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bradford Wool",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 178.0,
+ "computed_price": 322.17,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88612",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661539",
+ "flagged_pattern": "Brittany",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Brittany",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 160.0,
+ "computed_price": 289.59,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88610",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661540",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88609",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661640",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88607",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661541",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88606",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661641",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88604",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661542",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88603",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661642",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88601",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661543",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88600",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661643",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88598",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661544",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88597",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661644",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88595",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661545",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88594",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661645",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88592",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661546",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88591",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661646",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88589",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661547",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88587",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661548",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88586",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661648",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88584",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661549",
+ "flagged_pattern": "Relief Repetition",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88583",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661649",
+ "flagged_pattern": "Veneto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Veneto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88582",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661450",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88581",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661550",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88580",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661451",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88579",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661551",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88578",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661452",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88577",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661552",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88576",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661453",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88575",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661553",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88574",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661454",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88573",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661554",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88572",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661455",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88571",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661555",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88570",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661456",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88569",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661556",
+ "flagged_pattern": "Picardy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Picardy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 190.0,
+ "computed_price": 343.89,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88568",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661457",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88567",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661458",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88566",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661459",
+ "flagged_pattern": "Ventura",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ventura",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 138.0,
+ "computed_price": 249.77,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88565",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661460",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88564",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661560",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88563",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661461",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88562",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661561",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88561",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661462",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88560",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661562",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88559",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661463",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88558",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661563",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88557",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661464",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88556",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661564",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88555",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661465",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88554",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661565",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88553",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661466",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88552",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661566",
+ "flagged_pattern": "Venetian Heritage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Venetian Heritage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 146.0,
+ "computed_price": 264.25,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88551",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661467",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88550",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661468",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88549",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661469",
+ "flagged_pattern": "Raffia Decor",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Raffia Decor",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 208.0,
+ "computed_price": 376.47,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88548",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661470",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88547",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661570",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88546",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661471",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88545",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661571",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88544",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661472",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88543",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661572",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88542",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661473",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88541",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661573",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88540",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661474",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88539",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661574",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88538",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661475",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88537",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661575",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88536",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661476",
+ "flagged_pattern": "Luxury Composition",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Luxury Composition",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 126.0,
+ "computed_price": 228.05,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88535",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661576",
+ "flagged_pattern": "Bandol Solid",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88534",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661577",
+ "flagged_pattern": "Bandol Metallic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88533",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661578",
+ "flagged_pattern": "Bandol Metallic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88532",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661579",
+ "flagged_pattern": "Bandol Metallic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88531",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661480",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88530",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661580",
+ "flagged_pattern": "Evian Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Evian Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 200.0,
+ "computed_price": 361.99,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88529",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661481",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88528",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661581",
+ "flagged_pattern": "Evian Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Evian Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 200.0,
+ "computed_price": 361.99,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88527",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661482",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88526",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661582",
+ "flagged_pattern": "Evian Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Evian Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 200.0,
+ "computed_price": 361.99,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88525",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661483",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88524",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661583",
+ "flagged_pattern": "Evian Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Evian Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 200.0,
+ "computed_price": 361.99,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88523",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661484",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88522",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661584",
+ "flagged_pattern": "Evian Linen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Evian Linen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 200.0,
+ "computed_price": 361.99,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88521",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661485",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88520",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTT661486",
+ "flagged_pattern": "Normandy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Normandy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 158.0,
+ "computed_price": 285.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88519",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0403BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88518",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0405BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88517",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0413BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88516",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0434BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88515",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0444BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88514",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0461BEAC",
+ "flagged_pattern": "Beach Haven",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88513",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0425CANY",
+ "flagged_pattern": "Canyon Road",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon Road",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88512",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0465CANY",
+ "flagged_pattern": "Canyon Road",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Canyon Road",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88511",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0467CHIC",
+ "flagged_pattern": "Chic Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88510",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0423DELI",
+ "flagged_pattern": "Delilah",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Delilah",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.0,
+ "computed_price": 86.88,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88509",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0452DELI",
+ "flagged_pattern": "Delilah",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Delilah",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.0,
+ "computed_price": 86.88,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88508",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0409DELR",
+ "flagged_pattern": "Delray Beach Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88507",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0445DELR",
+ "flagged_pattern": "Delray Beach Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88506",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0432DUSK",
+ "flagged_pattern": "Beach Haven Dusk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven Dusk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 52.0,
+ "computed_price": 94.12,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88505",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0457DUSK",
+ "flagged_pattern": "Beach Haven Dusk",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Beach Haven Dusk",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 52.0,
+ "computed_price": 94.12,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88504",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0401FAIR",
+ "flagged_pattern": "Fairlawn Grass",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fairlawn Grass",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 38.0,
+ "computed_price": 68.78,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88503",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0458FALL",
+ "flagged_pattern": "Waterfall Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88502",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0462FALL",
+ "flagged_pattern": "Waterfall Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88501",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0442FIEL",
+ "flagged_pattern": "Fairlawn Fields",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Fairlawn Fields",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.0,
+ "computed_price": 61.54,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88500",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0410FIRE",
+ "flagged_pattern": "Fire Island Grass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88499",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0427FIRE",
+ "flagged_pattern": "Fire Island Grass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88498",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0430FIRE",
+ "flagged_pattern": "Fire Island Grass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88497",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0454FIRE",
+ "flagged_pattern": "Fire Island Grass",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88496",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0411GARA",
+ "flagged_pattern": "Niagara String",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88495",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0437GISE",
+ "flagged_pattern": "Gisella Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gisella Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 12.0,
+ "computed_price": 21.72,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88494",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0441GISE",
+ "flagged_pattern": "Gisella Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Gisella Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 12.0,
+ "computed_price": 21.72,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88493",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0456HILL",
+ "flagged_pattern": "Hillside Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hillside Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.0,
+ "computed_price": 83.26,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88492",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0424JORD",
+ "flagged_pattern": "Jordan'S Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88491",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0451JORD",
+ "flagged_pattern": "Jordan'S Jute",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88489",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0419JUST",
+ "flagged_pattern": "Justin Jute",
+ "match_confidence": "review",
+ "matched_pattern": "Justin Jute",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 17.25,
+ 46.0
+ ],
+ "computed_price_range": [
+ 31.22,
+ 83.26
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-88488",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0426JUST",
+ "flagged_pattern": "Justin Jute",
+ "match_confidence": "review",
+ "matched_pattern": "Justin Jute",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 17.25,
+ 46.0
+ ],
+ "computed_price_range": [
+ 31.22,
+ 83.26
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-88487",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0431JUST",
+ "flagged_pattern": "Justin Jute",
+ "match_confidence": "review",
+ "matched_pattern": "Justin Jute",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 17.25,
+ 46.0
+ ],
+ "computed_price_range": [
+ 31.22,
+ 83.26
+ ],
+ "price_basis": "cost/0.65/0.85",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWA-88485",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0416LAKE",
+ "flagged_pattern": "Spring Lake Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Spring Lake Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.0,
+ "computed_price": 83.26,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88484",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0407MELA",
+ "flagged_pattern": "Melanie'S Mica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88483",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0408MELA",
+ "flagged_pattern": "Melanie'S Mica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88480",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0459MELA",
+ "flagged_pattern": "Melanie'S Mica",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88479",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0418MOCC",
+ "flagged_pattern": "Moccasin Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88478",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0450MONT",
+ "flagged_pattern": "Montana Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88477",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0404MOON",
+ "flagged_pattern": "Moon Rock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88476",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0455MOON",
+ "flagged_pattern": "Moon Rock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88475",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0460NITE",
+ "flagged_pattern": "Nightlife Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88474",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0468NITE",
+ "flagged_pattern": "Nightlife Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88473",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0469NITE",
+ "flagged_pattern": "Nightlife Sisal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88472",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0412OCEA",
+ "flagged_pattern": "Ocean City Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88471",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0420OMAH",
+ "flagged_pattern": "Omaha Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88470",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0433RICK",
+ "flagged_pattern": "Ricky'S Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88469",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0439SADD",
+ "flagged_pattern": "Saddle Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88468",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0414SAFA",
+ "flagged_pattern": "Safari Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88467",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0447SAFA",
+ "flagged_pattern": "Safari Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88466",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0422SILK",
+ "flagged_pattern": "Simple Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88465",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0402SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88464",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0406SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88463",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0415SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88462",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0421SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88461",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0428SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88460",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0435SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88459",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0446SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88458",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0464SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88457",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0470SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88456",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0471SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88455",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0472SIMP",
+ "flagged_pattern": "Simply Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Simply Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88454",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0449SULT",
+ "flagged_pattern": "Sultry Grass",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sultry Grass",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88453",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0448SUSI",
+ "flagged_pattern": "Sultry Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sultry Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88452",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0466SUSI",
+ "flagged_pattern": "Sultry Sisal",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sultry Sisal",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88451",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0429WOOD",
+ "flagged_pattern": "Woodland Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Woodland Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.0,
+ "computed_price": 83.26,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88450",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0463WOOD",
+ "flagged_pattern": "Woodland Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Woodland Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 46.0,
+ "computed_price": 83.26,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88449",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0453WYOM",
+ "flagged_pattern": "Wyoming Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88448",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WTW0443YUKO",
+ "flagged_pattern": "Yukon Valley",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88447",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88446",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88445",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88444",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88443",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88442",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88441",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88440",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88439",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp81388m",
+ "flagged_pattern": "Zebras Vinyl",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Zebras Vinyl",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 316.0,
+ "computed_price": 571.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88438",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88404",
+ "flagged_pattern": "Lithic Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lithic Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88437",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88404",
+ "flagged_pattern": "Lithic Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lithic Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88436",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88404",
+ "flagged_pattern": "Lithic Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lithic Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88435",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88404",
+ "flagged_pattern": "Lithic Weave",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lithic Weave",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88434",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88433",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88432",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88431",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88430",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88429",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88405",
+ "flagged_pattern": "Seneca Shimmer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88428",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88406",
+ "flagged_pattern": "Distressed Veneer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88427",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88426",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88425",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88424",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88423",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88407",
+ "flagged_pattern": "Tesselate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88422",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88408",
+ "flagged_pattern": "Plie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88421",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88408",
+ "flagged_pattern": "Plie",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88420",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88409",
+ "flagged_pattern": "Filament",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88419",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88409",
+ "flagged_pattern": "Filament",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88418",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88409",
+ "flagged_pattern": "Filament",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88417",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88410",
+ "flagged_pattern": "Cinder Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88416",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88410",
+ "flagged_pattern": "Cinder Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88414",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88411",
+ "flagged_pattern": "Pearl Mosaic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88413",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88411",
+ "flagged_pattern": "Pearl Mosaic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88412",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88411",
+ "flagged_pattern": "Pearl Mosaic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88411",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88411",
+ "flagged_pattern": "Pearl Mosaic",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88402",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88413",
+ "flagged_pattern": "Calcite Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88401",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88414",
+ "flagged_pattern": "Tobias Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88400",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88416",
+ "flagged_pattern": "Terrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88399",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88416",
+ "flagged_pattern": "Terrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88398",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88417",
+ "flagged_pattern": "Mineral Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88397",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88417",
+ "flagged_pattern": "Mineral Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88396",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88418",
+ "flagged_pattern": "Lund Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88395",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88418",
+ "flagged_pattern": "Lund Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88394",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88418",
+ "flagged_pattern": "Lund Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88393",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88418",
+ "flagged_pattern": "Lund Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88392",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88391",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88390",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88389",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88388",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88387",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88386",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88419",
+ "flagged_pattern": "Brushed Plain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88385",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88384",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88383",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88382",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88381",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88380",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88379",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88378",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88377",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88420",
+ "flagged_pattern": "Mason Plain",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mason Plain",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88376",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88421",
+ "flagged_pattern": "Archea Rib Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88375",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88421",
+ "flagged_pattern": "Archea Rib Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88374",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88422",
+ "flagged_pattern": "Chevron Veneer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88373",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88423",
+ "flagged_pattern": "Galaxy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88372",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88424",
+ "flagged_pattern": "Strie Woodgrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88371",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88424",
+ "flagged_pattern": "Strie Woodgrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88370",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88424",
+ "flagged_pattern": "Strie Woodgrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88369",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88424",
+ "flagged_pattern": "Strie Woodgrain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88368",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88425",
+ "flagged_pattern": "Bent Wood",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bent Wood",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88367",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88426",
+ "flagged_pattern": "Graphic Blocks",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Graphic Blocks",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 26.25,
+ "computed_price": 47.51,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88366",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88427",
+ "flagged_pattern": "Fresco",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88365",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88428",
+ "flagged_pattern": "Brushed Concrete",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88364",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88363",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88362",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88361",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88360",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88430",
+ "flagged_pattern": "Strata Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-88359",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88431",
+ "flagged_pattern": "Lanai",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lanai",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88358",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88431",
+ "flagged_pattern": "Lanai",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lanai",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88357",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88431",
+ "flagged_pattern": "Lanai",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lanai",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88356",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88434",
+ "flagged_pattern": "Edwin'S Covey",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Edwin'S Covey",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88355",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88434",
+ "flagged_pattern": "Edwin'S Covey",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Edwin'S Covey",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-88354",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88434",
+ "flagged_pattern": "Edwin'S Covey",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Edwin'S Covey",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 154.0,
+ "computed_price": 278.73,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82597",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88355",
+ "flagged_pattern": "Balinese Peacock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balinese Peacock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82596",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88355",
+ "flagged_pattern": "Balinese Peacock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balinese Peacock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82595",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88355",
+ "flagged_pattern": "Balinese Peacock",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Balinese Peacock",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 168.0,
+ "computed_price": 304.07,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82594",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88356",
+ "flagged_pattern": "Ming Fretwork",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82593",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88356",
+ "flagged_pattern": "Ming Fretwork",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82592",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88356",
+ "flagged_pattern": "Ming Fretwork",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82591",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88357",
+ "flagged_pattern": "Summer Palace",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Summer Palace",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82590",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88357",
+ "flagged_pattern": "Summer Palace",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Summer Palace",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 144.0,
+ "computed_price": 260.63,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWA-82589",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82588",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82587",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82586",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82585",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82584",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82583",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82582",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82581",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82580",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82579",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82578",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-82577",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "wp88358",
+ "flagged_pattern": "Lyra Silk Weave",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SWP-17503 - Cheetah--Dune Cream",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "LEAPING-CHEETAH-WALLCOVERING",
+ "flagged_pattern": "Scalamandre Leaping Cheetah Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SWP-17501 - Cheetah--Clementine Orange",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCALAMANDRE-LEAPING-CHEETAH-WALLPAPER-CLEMENTINE-ORANGE",
+ "flagged_pattern": "Scalamandre Leaping Cheetah Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SWP-17500 - Cheetah-Bubble Gum Pink",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCALAMANDRE-LEAPING-CHEETAH-WALLPAPER-BUBBLE-GUM-PINK",
+ "flagged_pattern": "Scalamandre Leaping Cheetah Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SWP-17502 - Cheetah--Blue Grey",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCALAMANDRE-LEAPING-CHEETAH-WALLPAPER-CLOUD-NINE-BLUE-GREY",
+ "flagged_pattern": "Scalamandre Leaping Cheetah Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SWP-17504 - Cheetah--EverGreen",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCALAMANDRE-LEAPING-CHEETAH-WALLPAPER-EVERGREEN",
+ "flagged_pattern": "Scalamandre Leaping Cheetah Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-001",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-001",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-002",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-002",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-003",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-003",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-004",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-004",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-005",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-005",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-006",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-006",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-007",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-007",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "WP88618D-008",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "WP88618D-008",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCWP88582D0005",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0005",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "AFFOGATO",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0001",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0001",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "BALLET SLIPPER",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0011",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0011",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "BLUE JAY",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0008",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0008",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "GAZEBO GREEN",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0006",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0006",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "LACQUER RED",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0013",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0013",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "LAVENDER",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0007",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0007",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "ONYX",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0002",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0002",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "PEACH",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0009",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0009",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "PEAR",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0012",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0012",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "POWDER BLUE",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0014",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0014",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "RASPBERRY",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0004",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0004",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "TAUPE",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0003",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0003",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "TOFFEE",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCWP88582D0010",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCWP88582D0010",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "JOANNA FRET",
+ "matched_color": "TURQUOISE",
+ "sourced_cost": 182.0,
+ "computed_price": 329.41,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "SCZEBRAPILL0005",
+ "vendor": "Scalamandre Wallpaper",
+ "mfr_sku": "SCZEBRAPILL0005",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "ZEBRAS PILLOW",
+ "matched_color": "SQUARE - 22 X 22 - DENIM",
+ "sourced_cost": 272.0,
+ "computed_price": 492.31,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWC-1001322",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001322",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001323",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001323",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001324",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001324",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001325",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001325",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001326",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001326",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001327",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001327",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001328",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001328",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001329",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001329",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001330",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001330",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001331",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001331",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001332",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001332",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001333",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001333",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001334",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001334",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001335",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001335",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001336",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001336",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001337",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001337",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001338",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001338",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001339",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001339",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001340",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001340",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001341",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001341",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001342",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001342",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001343",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001343",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001344",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001344",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001345",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001345",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001346",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001346",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001347",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001347",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001348",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001348",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001349",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001349",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001350",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001350",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001351",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001351",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001352",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001352",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001353",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001353",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001354",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001354",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001355",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001355",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001356",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001356",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001357",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001357",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001358",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001358",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001359",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001359",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001360",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001360",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001361",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001361",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001362",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001362",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001363",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001363",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001364",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001364",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001365",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001365",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001366",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001366",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001367",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001367",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001368",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001368",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001369",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001369",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001370",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001370",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001371",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001371",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001372",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001372",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001373",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001373",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001374",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001374",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001375",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001375",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001376",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001376",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001377",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001377",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001378",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001378",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001379",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001379",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001380",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001380",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001381",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001381",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001382",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001382",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001383",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001383",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001384",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001384",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001385",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001385",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001386",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001386",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001387",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001387",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001388",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001388",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001389",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001389",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001390",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001390",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001391",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001391",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001392",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001392",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001393",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001393",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001394",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001394",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001395",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001395",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001396",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001396",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001397",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001397",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001398",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001398",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001399",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001399",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001400",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001400",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001401",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001401",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001402",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001402",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001403",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001403",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001404",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001404",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001405",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001405",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001406",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001406",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001407",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001407",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001408",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001408",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001409",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001409",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001410",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001410",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001411",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001411",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001412",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001412",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001413",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001413",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001414",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001414",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001415",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001415",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001416",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001416",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001417",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001417",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001418",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001418",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001419",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001419",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001420",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4313-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001421",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4313-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001422",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4313-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001423",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4313-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001424",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4313-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001425",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001426",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001427",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001428",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001429",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001430",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4314-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001431",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4320-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001432",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4320-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001433",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4320-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001434",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4320-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001435",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4320-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001436",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4321-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001437",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4321-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001438",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4321-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001439",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4321-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001440",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4322-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001441",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4322-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001442",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4322-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001443",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4322-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001444",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4322-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001445",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4323-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001446",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4323-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001447",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4323-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001448",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4323-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001449",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4323-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001450",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4324-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001451",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4324-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001452",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4324-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001453",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4330-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001454",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4330-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001455",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4330-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001456",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4330-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001457",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4330-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001458",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4331-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001459",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4331-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001460",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4331-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001461",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4331-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001462",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4331-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001463",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4332-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001464",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4332-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001465",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4333-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001466",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4333-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001467",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4333-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001468",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4333-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001469",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4334-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001470",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4334-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001471",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4334-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001472",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4334-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001473",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4334-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001474",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4335-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001475",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4335-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001476",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4335-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001477",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4335-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001478",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4335-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001479",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4336-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001480",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4336-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001481",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4336-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001482",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4360-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001483",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4360-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001484",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4360-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001485",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4360-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001486",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4361-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001487",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4361-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001488",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4361-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001489",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4361-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001490",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4362-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001491",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4362-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001492",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4362-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001493",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4363-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001494",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4363-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001495",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4363-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001496",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4363-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001497",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4364-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001498",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4364-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001499",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4364-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001500",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4364-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001501",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4365-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001502",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4365-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001503",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4365-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001504",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4370-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001505",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4370-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001506",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4370-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001507",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4371-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001508",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4371-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001509",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4371-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001510",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4371-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001511",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001512",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001513",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001514",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001515",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001516",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4372-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001517",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001518",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001519",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001520",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001521",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001522",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4373-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001523",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001524",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001525",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001526",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001528",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001529",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-07",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001530",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-08",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001531",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-09",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001532",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4381-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001533",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4381-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001534",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4381-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001535",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4381-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001536",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4381-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001537",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001538",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001539",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001540",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001541",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001542",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001544",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-08",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001545",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4383-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001546",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4383-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001547",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4383-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001548",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4383-04",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001549",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4384-01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001550",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4384-02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001551",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4384-03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001554",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4384-06",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001650",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "1001650",
+ "flagged_pattern": "Nina Campbell Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001527",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4380-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001543",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4382-07",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001553",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCF4384-05",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80109",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4106",
+ "flagged_pattern": "Oakley Hall 5",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80110",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4107",
+ "flagged_pattern": "Wilmington 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80111",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4107",
+ "flagged_pattern": "Wilmington 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80112",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4120",
+ "flagged_pattern": "Holmwood 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80113",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4120",
+ "flagged_pattern": "Holmwood 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80114",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4120",
+ "flagged_pattern": "Holmwood 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80115",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4120",
+ "flagged_pattern": "Holmwood 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80116",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4121",
+ "flagged_pattern": "Bothwell 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80117",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4121",
+ "flagged_pattern": "Bothwell 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80118",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4121",
+ "flagged_pattern": "Bothwell 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80119",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4121",
+ "flagged_pattern": "Bothwell 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80120",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4122",
+ "flagged_pattern": "Elcho 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80121",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4122",
+ "flagged_pattern": "Elcho 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80122",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4123",
+ "flagged_pattern": "Abbotsford 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80123",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4123",
+ "flagged_pattern": "Abbotsford 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80124",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4123",
+ "flagged_pattern": "Abbotsford 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80125",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4123",
+ "flagged_pattern": "Abbotsford 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80126",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4123",
+ "flagged_pattern": "Abbotsford 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80127",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4125",
+ "flagged_pattern": "Rothesay 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80128",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4125",
+ "flagged_pattern": "Rothesay 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80129",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4125",
+ "flagged_pattern": "Rothesay 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80130",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80131",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80132",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80133",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80134",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80135",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80136",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4126",
+ "flagged_pattern": "Huntly 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80139",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4127",
+ "flagged_pattern": "Strome 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80140",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4127",
+ "flagged_pattern": "Strome 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80141",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4127",
+ "flagged_pattern": "Strome 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80142",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4127",
+ "flagged_pattern": "Strome 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80143",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4150",
+ "flagged_pattern": "Rosslyn 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80144",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4150",
+ "flagged_pattern": "Rosslyn 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80145",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4150",
+ "flagged_pattern": "Rosslyn 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80146",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4150",
+ "flagged_pattern": "Rosslyn 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80147",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4150",
+ "flagged_pattern": "Rosslyn 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80148",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80149",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80150",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80151",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80152",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80153",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4151",
+ "flagged_pattern": "Torosay 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80154",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4152",
+ "flagged_pattern": "Lochwood 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80155",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4152",
+ "flagged_pattern": "Lochwood 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80156",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4152",
+ "flagged_pattern": "Lochwood 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80157",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4152",
+ "flagged_pattern": "Lochwood 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80158",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4152",
+ "flagged_pattern": "Lochwood 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80159",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4154",
+ "flagged_pattern": "Mey Fern 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80160",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4154",
+ "flagged_pattern": "Mey Fern 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80161",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4154",
+ "flagged_pattern": "Mey Fern 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80162",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4154",
+ "flagged_pattern": "Mey Fern 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80163",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4155",
+ "flagged_pattern": "Kelburn 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80164",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4155",
+ "flagged_pattern": "Kelburn 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80165",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4155",
+ "flagged_pattern": "Kelburn 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80166",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4155",
+ "flagged_pattern": "Kelburn 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80167",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4156",
+ "flagged_pattern": "Montrose 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80168",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4156",
+ "flagged_pattern": "Montrose 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80169",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4156",
+ "flagged_pattern": "Montrose 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80170",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4156",
+ "flagged_pattern": "Montrose 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80171",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4156",
+ "flagged_pattern": "Montrose 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80172",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4180",
+ "flagged_pattern": "Cathay Parade 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80173",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4180",
+ "flagged_pattern": "Cathay Parade 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80174",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80175",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80176",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80177",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80178",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80179",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80180",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80181",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4181",
+ "flagged_pattern": "Sansui 08",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80183",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4182 -01",
+ "flagged_pattern": "Penglai 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80184",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4182-02",
+ "flagged_pattern": "Penglai 02",
+ "match_confidence": "exact",
+ "matched_pattern": "Cathay Penglai Charcoal/Sage/Coral",
+ "matched_color": "Green",
+ "sourced_cost": 120.0,
+ "computed_price": 217.19,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80185",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4182/03",
+ "flagged_pattern": "Penglai 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80186",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4182",
+ "flagged_pattern": "Penglai 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80188",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80189",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80190",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80191",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80192",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80193",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4183",
+ "flagged_pattern": "Pamir 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80195",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4184",
+ "flagged_pattern": "Suzhou 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80196",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4184",
+ "flagged_pattern": "Suzhou 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80197",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4184",
+ "flagged_pattern": "Suzhou 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80198",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 01 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80198",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80199",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 02 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80199",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80200",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 03 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80200",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80201",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 04 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80201",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80202",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 05 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80202",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80203",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 06 Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80203",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4185",
+ "flagged_pattern": "Mahayana 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80204",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80205",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80206",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80207",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80208",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80209",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80210",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80211",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 08",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80212",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 09",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80213",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 10",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80214",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4186",
+ "flagged_pattern": "Khitan 11",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80216",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4200",
+ "flagged_pattern": "Keightley's Folio 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80217",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4200",
+ "flagged_pattern": "Keightley's Folio 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80218",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4200",
+ "flagged_pattern": "Keightley's Folio 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80219",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4201",
+ "flagged_pattern": "Belem 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80224",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80225",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80226",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80227",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80228",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80229",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4202",
+ "flagged_pattern": "Estella 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80231",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80232",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80233",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80234",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80235",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80236",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80237",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4204",
+ "flagged_pattern": "Kershaw Plain 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80239",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4205",
+ "flagged_pattern": "Barbary Toile 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80241",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4205",
+ "flagged_pattern": "Barbary Toile 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80242",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4205",
+ "flagged_pattern": "Barbary Toile 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80243",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4205",
+ "flagged_pattern": "Barbary Toile 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80245",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4206",
+ "flagged_pattern": "Tagus 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80254",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4207",
+ "flagged_pattern": "Fontibre 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80255",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4207-02",
+ "flagged_pattern": "Fontibre 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80256",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4207-03",
+ "flagged_pattern": "Fontibre 03",
+ "match_confidence": "exact",
+ "matched_pattern": "Fontibre Fontibre Blue/Green",
+ "matched_color": "Blue",
+ "sourced_cost": 106.0,
+ "computed_price": 191.86,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80257",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4207",
+ "flagged_pattern": "Fontibre 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80258",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4207",
+ "flagged_pattern": "Fontibre 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80259",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270",
+ "flagged_pattern": "Coromandel 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80260",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270",
+ "flagged_pattern": "Coromandel 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80261",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270-03",
+ "flagged_pattern": "Coromandel 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80262",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270",
+ "flagged_pattern": "Coromandel 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80263",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270 -05",
+ "flagged_pattern": "Coromandel 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80264",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4270",
+ "flagged_pattern": "Coromandel 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80265",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4271",
+ "flagged_pattern": "Vignola 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80266",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4271",
+ "flagged_pattern": "Vignola 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80267",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4272",
+ "flagged_pattern": "Pavilion Garden 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80268",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4272",
+ "flagged_pattern": "Pavilion Garden 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80269",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4272",
+ "flagged_pattern": "Pavilion Garden 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80270",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4272",
+ "flagged_pattern": "Pavilion Garden 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80274",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4273 -04",
+ "flagged_pattern": "Gioconda Flock Velvet 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80277",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4275",
+ "flagged_pattern": "Concertina 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80278",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80279",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80280",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80281",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80282",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80283",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4274",
+ "flagged_pattern": "Palmetto 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80285",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4276",
+ "flagged_pattern": "Perdana 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80286",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4276",
+ "flagged_pattern": "Perdana 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80287",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4276",
+ "flagged_pattern": "Perdana 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80288",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4276",
+ "flagged_pattern": "Perdana 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80289",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4276",
+ "flagged_pattern": "Perdana 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80291",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80292",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80293",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80294",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80295",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80296",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80297",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4277",
+ "flagged_pattern": "Meredith 07",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80299",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4300",
+ "flagged_pattern": "Collioure 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80300",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4300",
+ "flagged_pattern": "Collioure 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80301",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4300",
+ "flagged_pattern": "Collioure 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80302",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4300",
+ "flagged_pattern": "Collioure 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80303",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4300",
+ "flagged_pattern": "Collioure 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80304",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80305",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80306",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80307",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80308",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80309",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4301",
+ "flagged_pattern": "Beau Rivage 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80311",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4302",
+ "flagged_pattern": "Mourlot 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80312",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4302",
+ "flagged_pattern": "Mourlot 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80313",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4302",
+ "flagged_pattern": "Mourlot 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80314",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4302",
+ "flagged_pattern": "Mourlot 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80315",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4303",
+ "flagged_pattern": "Camille 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80316",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4303",
+ "flagged_pattern": "Camille 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80317",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4303",
+ "flagged_pattern": "Camille 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80318",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4303",
+ "flagged_pattern": "Camille 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80319",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4303",
+ "flagged_pattern": "Camille 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80320",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304-01",
+ "flagged_pattern": "Marguerite Damask 01",
+ "match_confidence": "exact",
+ "matched_pattern": "Les R\u00eaves Marguerite Green/Ivory",
+ "matched_color": "Green",
+ "sourced_cost": 107.0,
+ "computed_price": 193.67,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80321",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304",
+ "flagged_pattern": "Marguerite Damask 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80322",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304",
+ "flagged_pattern": "Marguerite Damask 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80323",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304",
+ "flagged_pattern": "Marguerite Damask 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80324",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304",
+ "flagged_pattern": "Marguerite Damask 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80325",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4304",
+ "flagged_pattern": "Marguerite Damask 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80326",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4305",
+ "flagged_pattern": "Pampelonne 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80327",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4305",
+ "flagged_pattern": "Pampelonne 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80328",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4305",
+ "flagged_pattern": "Pampelonne 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80329",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4305",
+ "flagged_pattern": "Pampelonne 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80330",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4305",
+ "flagged_pattern": "Pampelonne 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80331",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4306",
+ "flagged_pattern": "Belle Ile Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80332",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4306",
+ "flagged_pattern": "Belle Ile Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80333",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4306",
+ "flagged_pattern": "Belle Ile Stripe 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80334",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4306",
+ "flagged_pattern": "Belle Ile Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80335",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4306",
+ "flagged_pattern": "Belle Ile Stripe 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80336",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4307",
+ "flagged_pattern": "Dormiers Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80337",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4307",
+ "flagged_pattern": "Dormiers Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80338",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4307",
+ "flagged_pattern": "Dormiers Stripe 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80339",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4307",
+ "flagged_pattern": "Dormiers Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80340",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4308",
+ "flagged_pattern": "Portavo Damask 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80341",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4308",
+ "flagged_pattern": "Portavo Damask 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80342",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4308",
+ "flagged_pattern": "Portavo Damask 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80343",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4308",
+ "flagged_pattern": "Portavo Damask 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80344",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80345",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80346",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80347",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80348",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80349",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4350",
+ "flagged_pattern": "Les Indiennes Paisley Damask 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80351",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80352",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80353",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80354",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80355",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80356",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4351",
+ "flagged_pattern": "Baville 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80357",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352",
+ "flagged_pattern": "Bonnelles Diamond 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80358",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352",
+ "flagged_pattern": "Bonnelles Diamond 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80359",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352",
+ "flagged_pattern": "Bonnelles Diamond 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80360",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352",
+ "flagged_pattern": "Bonnelles Diamond 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80361",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352-05",
+ "flagged_pattern": "Bonnelles Diamond 05",
+ "match_confidence": "exact",
+ "matched_pattern": "Les Indiennes Bonnelles Green/Ivory",
+ "matched_color": "Green",
+ "sourced_cost": 102.0,
+ "computed_price": 184.62,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80362",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4352",
+ "flagged_pattern": "Bonnelles Diamond 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80365",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80366",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80367",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80368",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80369",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80370",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4353",
+ "flagged_pattern": "Colbert 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80371",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4354",
+ "flagged_pattern": "Garance 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80372",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4354",
+ "flagged_pattern": "Garance 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80373",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4354",
+ "flagged_pattern": "Garance 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80374",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4354",
+ "flagged_pattern": "Garance 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80375",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4354",
+ "flagged_pattern": "Garance 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80377",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4355",
+ "flagged_pattern": "Arles 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80378",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4355",
+ "flagged_pattern": "Arles 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80379",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4355",
+ "flagged_pattern": "Arles 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80380",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4356",
+ "flagged_pattern": "Fortoiseau 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80381",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4356",
+ "flagged_pattern": "Fortoiseau 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80382",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4356",
+ "flagged_pattern": "Fortoiseau 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80383",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4356",
+ "flagged_pattern": "Fortoiseau 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80384",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4356",
+ "flagged_pattern": "Fortoiseau 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80386",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4390-01",
+ "flagged_pattern": "Pomegranate Trail 01",
+ "match_confidence": "exact",
+ "matched_pattern": "Ashdown Pomegranate Trail Indigo/Blue",
+ "matched_color": "Blue",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80387",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4390",
+ "flagged_pattern": "Pomegranate Trail 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80388",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4390",
+ "flagged_pattern": "Pomegranate Trail 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80389",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4390",
+ "flagged_pattern": "Pomegranate Trail 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80390",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4390",
+ "flagged_pattern": "Pomegranate Trail 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80391",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4391",
+ "flagged_pattern": "Cloisters 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80392",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4391",
+ "flagged_pattern": "Cloisters 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80393",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4391",
+ "flagged_pattern": "Cloisters 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80394",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4391",
+ "flagged_pattern": "Cloisters 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80395",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4392",
+ "flagged_pattern": "Chelwood Floral Damask 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80396",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4392",
+ "flagged_pattern": "Chelwood Floral Damask 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80397",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4392",
+ "flagged_pattern": "Chelwood Floral Damask 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80398",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4392",
+ "flagged_pattern": "Chelwood Floral Damask 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80399",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4392",
+ "flagged_pattern": "Chelwood Floral Damask 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80400",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80401",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80402",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80403",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80404",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80405",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4393",
+ "flagged_pattern": "Benmore 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80406",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4394",
+ "flagged_pattern": "Posingford Leaves 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80407",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4394",
+ "flagged_pattern": "Posingford Leaves 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80408",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4394",
+ "flagged_pattern": "Posingford Leaves 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80409",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4394",
+ "flagged_pattern": "Posingford Leaves 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80410",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4394",
+ "flagged_pattern": "Posingford Leaves 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80411",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80412",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80413",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80414",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80415",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80416",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4395",
+ "flagged_pattern": "Kingsley Fans 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80417",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4396-01",
+ "flagged_pattern": "Brideshead Scroll Damask 01",
+ "match_confidence": "exact",
+ "matched_pattern": "Ashdown Brideshead Grey",
+ "matched_color": "Grey",
+ "sourced_cost": 104.0,
+ "computed_price": 188.24,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80418",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4396 -02",
+ "flagged_pattern": "Brideshead Scroll Damask 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80419",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4396",
+ "flagged_pattern": "Brideshead Scroll Damask 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80420",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4396",
+ "flagged_pattern": "Brideshead Scroll Damask 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80421",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4490",
+ "flagged_pattern": "Foret 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80422",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4490",
+ "flagged_pattern": "Foret 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80423",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4490",
+ "flagged_pattern": "Foret 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80424",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4490",
+ "flagged_pattern": "Foret 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80425",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4490",
+ "flagged_pattern": "Foret 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80426",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4491",
+ "flagged_pattern": "Almora 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80427",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4491",
+ "flagged_pattern": "Almora 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80428",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4491",
+ "flagged_pattern": "Almora 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80429",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4491",
+ "flagged_pattern": "Almora 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80430",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4491",
+ "flagged_pattern": "Almora 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80431",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4492",
+ "flagged_pattern": "Sackville Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80432",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4492",
+ "flagged_pattern": "Sackville Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80433",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4492",
+ "flagged_pattern": "Sackville Stripe 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80434",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4492",
+ "flagged_pattern": "Sackville Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80435",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4492",
+ "flagged_pattern": "Sackville Stripe 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80436",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4493",
+ "flagged_pattern": "Petit Dapuri Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80437",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4493",
+ "flagged_pattern": "Petit Dapuri Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80438",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4493",
+ "flagged_pattern": "Petit Dapuri Stripe 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80439",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4493",
+ "flagged_pattern": "Petit Dapuri Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80441",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494",
+ "flagged_pattern": "Meridor Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80442",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494",
+ "flagged_pattern": "Meridor Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80443",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494-03",
+ "flagged_pattern": "Meridor Stripe 03",
+ "match_confidence": "exact",
+ "matched_pattern": "Signature Meridor",
+ "matched_color": "Green",
+ "sourced_cost": 101.0,
+ "computed_price": 182.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80444",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494",
+ "flagged_pattern": "Meridor Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80445",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494",
+ "flagged_pattern": "Meridor Stripe 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80446",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4494",
+ "flagged_pattern": "Meridor Stripe 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80447",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4495-01",
+ "flagged_pattern": "Arber Lattice Trellis 01",
+ "match_confidence": "exact",
+ "matched_pattern": "Signature Arber",
+ "matched_color": "Green",
+ "sourced_cost": 101.0,
+ "computed_price": 182.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "EUR-80448",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4495",
+ "flagged_pattern": "Arber Lattice Trellis 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80449",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4495",
+ "flagged_pattern": "Arber Lattice Trellis 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80450",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4495",
+ "flagged_pattern": "Arber Lattice Trellis 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80451",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80452",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80453",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80454",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80455",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 05",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80456",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4496",
+ "flagged_pattern": "Plumier Stripe 06",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80457",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4497",
+ "flagged_pattern": "Toile Chinoise 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80458",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4497",
+ "flagged_pattern": "Toile Chinoise 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80459",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4497",
+ "flagged_pattern": "Toile Chinoise 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80460",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4498",
+ "flagged_pattern": "Poiteau Bamboo Ferns 01",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80461",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4498",
+ "flagged_pattern": "Poiteau Bamboo Ferns 02",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80462",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4498",
+ "flagged_pattern": "Poiteau Bamboo Ferns 03",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "EUR-80463",
+ "vendor": "Nina Campbell",
+ "mfr_sku": "NCW4498",
+ "flagged_pattern": "Poiteau Bamboo Ferns 04",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCW-32779",
+ "vendor": "Schumacher",
+ "mfr_sku": "32779",
+ "flagged_pattern": "Newport Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newport Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 121.0,
+ "computed_price": 219.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "SCW-32780",
+ "vendor": "Schumacher",
+ "mfr_sku": "32780",
+ "flagged_pattern": "Newport Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newport Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 121.0,
+ "computed_price": 219.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "SCW-32781",
+ "vendor": "Schumacher",
+ "mfr_sku": "32781",
+ "flagged_pattern": "Newport Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newport Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 121.0,
+ "computed_price": 219.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "SCW-32782",
+ "vendor": "Schumacher",
+ "mfr_sku": "32782",
+ "flagged_pattern": "Newport Stripe",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Newport Stripe",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 121.0,
+ "computed_price": 219.0,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "SCW-32794",
+ "vendor": "Schumacher",
+ "mfr_sku": "32794",
+ "flagged_pattern": "Haruki Sisal Grasscloth",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCW-32795",
+ "vendor": "Schumacher",
+ "mfr_sku": "32795",
+ "flagged_pattern": "Haruki Sisal Grasscloth Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70643",
+ "vendor": "Schumacher",
+ "mfr_sku": "70643",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70645",
+ "vendor": "Schumacher",
+ "mfr_sku": "70645",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70648",
+ "vendor": "Schumacher",
+ "mfr_sku": "70648",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70651",
+ "vendor": "Schumacher",
+ "mfr_sku": "70651",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70652",
+ "vendor": "Schumacher",
+ "mfr_sku": "70652",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70654",
+ "vendor": "Schumacher",
+ "mfr_sku": "70654",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70656",
+ "vendor": "Schumacher",
+ "mfr_sku": "70656",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70662",
+ "vendor": "Schumacher",
+ "mfr_sku": "70662",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70663",
+ "vendor": "Schumacher",
+ "mfr_sku": "70663",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70684",
+ "vendor": "Schumacher",
+ "mfr_sku": "70684",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70692",
+ "vendor": "Schumacher",
+ "mfr_sku": "70692",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70702",
+ "vendor": "Schumacher",
+ "mfr_sku": "70702",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70703",
+ "vendor": "Schumacher",
+ "mfr_sku": "70703",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70712",
+ "vendor": "Schumacher",
+ "mfr_sku": "70712",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70716",
+ "vendor": "Schumacher",
+ "mfr_sku": "70716",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70720",
+ "vendor": "Schumacher",
+ "mfr_sku": "70720",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70723",
+ "vendor": "Schumacher",
+ "mfr_sku": "70723",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70725",
+ "vendor": "Schumacher",
+ "mfr_sku": "70725",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70730",
+ "vendor": "Schumacher",
+ "mfr_sku": "70730",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70731",
+ "vendor": "Schumacher",
+ "mfr_sku": "70731",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70734",
+ "vendor": "Schumacher",
+ "mfr_sku": "70734",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-70736",
+ "vendor": "Schumacher",
+ "mfr_sku": "70736",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74566",
+ "vendor": "Schumacher",
+ "mfr_sku": "74566",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74568",
+ "vendor": "Schumacher",
+ "mfr_sku": "74568",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74570",
+ "vendor": "Schumacher",
+ "mfr_sku": "74570",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74573",
+ "vendor": "Schumacher",
+ "mfr_sku": "74573",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74575",
+ "vendor": "Schumacher",
+ "mfr_sku": "74575",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74576",
+ "vendor": "Schumacher",
+ "mfr_sku": "74576",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74580",
+ "vendor": "Schumacher",
+ "mfr_sku": "74580",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74581",
+ "vendor": "Schumacher",
+ "mfr_sku": "74581",
+ "flagged_pattern": "SURFSIDE STRIPE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74584",
+ "vendor": "Schumacher",
+ "mfr_sku": "74584",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74586",
+ "vendor": "Schumacher",
+ "mfr_sku": "74586",
+ "flagged_pattern": "PICKET FENCE STRIPE",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74587",
+ "vendor": "Schumacher",
+ "mfr_sku": "74587",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74591",
+ "vendor": "Schumacher",
+ "mfr_sku": "74591",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74594",
+ "vendor": "Schumacher",
+ "mfr_sku": "74594",
+ "flagged_pattern": "ETHAN TARTAN",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74621",
+ "vendor": "Schumacher",
+ "mfr_sku": "74621",
+ "flagged_pattern": "COLLECTION SAND BANK",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74627",
+ "vendor": "Schumacher",
+ "mfr_sku": "74627",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74630",
+ "vendor": "Schumacher",
+ "mfr_sku": "74630",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74633",
+ "vendor": "Schumacher",
+ "mfr_sku": "74633",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74635",
+ "vendor": "Schumacher",
+ "mfr_sku": "74635",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74636",
+ "vendor": "Schumacher",
+ "mfr_sku": "74636",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74641",
+ "vendor": "Schumacher",
+ "mfr_sku": "74641",
+ "flagged_pattern": "COLLECTION LAURELTON",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74642",
+ "vendor": "Schumacher",
+ "mfr_sku": "74642",
+ "flagged_pattern": "COLLECTION LAURELTON",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74643",
+ "vendor": "Schumacher",
+ "mfr_sku": "74643",
+ "flagged_pattern": "CLIFTON TATTERSAL",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74646",
+ "vendor": "Schumacher",
+ "mfr_sku": "74646",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74647",
+ "vendor": "Schumacher",
+ "mfr_sku": "74647",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74650",
+ "vendor": "Schumacher",
+ "mfr_sku": "74650",
+ "flagged_pattern": "COLLECTION DRUMMOND",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74651",
+ "vendor": "Schumacher",
+ "mfr_sku": "74651",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74654",
+ "vendor": "Schumacher",
+ "mfr_sku": "74654",
+ "flagged_pattern": "COLLECTION SEA ISLAN",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-74666",
+ "vendor": "Schumacher",
+ "mfr_sku": "74666",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-75991",
+ "vendor": "Schumacher",
+ "mfr_sku": "75991",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76102",
+ "vendor": "Schumacher",
+ "mfr_sku": "76102",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76103",
+ "vendor": "Schumacher",
+ "mfr_sku": "76103",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76262",
+ "vendor": "Schumacher",
+ "mfr_sku": "76262",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76264",
+ "vendor": "Schumacher",
+ "mfr_sku": "76264",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76732",
+ "vendor": "Schumacher",
+ "mfr_sku": "76732",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76862",
+ "vendor": "Schumacher",
+ "mfr_sku": "76862",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-76950",
+ "vendor": "Schumacher",
+ "mfr_sku": "76950",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-77210",
+ "vendor": "Schumacher",
+ "mfr_sku": "77210",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "SCH-77211",
+ "vendor": "Schumacher",
+ "mfr_sku": "77211",
+ "flagged_pattern": "Schumacher",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2054",
+ "vendor": "Schumacher",
+ "mfr_sku": "ABSTRACT LEAF 20\" PILLOW Leaf",
+ "flagged_pattern": "Abstract Leaf 20\" Pillow Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2064",
+ "vendor": "Schumacher",
+ "mfr_sku": "ABSTRACT LEAF 22\" PILLOW Leaf",
+ "flagged_pattern": "Abstract Leaf 22\" Pillow Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2074",
+ "vendor": "Schumacher",
+ "mfr_sku": "ACADIA 18\" PILLOW Greige",
+ "flagged_pattern": "Acadia 18\" Pillow Greige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2124",
+ "vendor": "Schumacher",
+ "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Blue&White",
+ "flagged_pattern": "Aditi Hand Blocked Print Pillow Blue&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2144",
+ "vendor": "Schumacher",
+ "mfr_sku": "ACANTHUS STRIPE PILLOW Sky",
+ "flagged_pattern": "Aditi Hand Blocked Print Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2154",
+ "vendor": "Schumacher",
+ "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Blue&White",
+ "flagged_pattern": "Ainsley Stripe I/O Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2174",
+ "vendor": "Schumacher",
+ "mfr_sku": "ADITI HAND BLOCKED PRINT PILLOW Pink",
+ "flagged_pattern": "Albizia Embroidery 18\" Pillow Blue&Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2194",
+ "vendor": "Schumacher",
+ "mfr_sku": "AINSLEY STRIPE I/O PILLOW Navy",
+ "flagged_pattern": "Alma Indoor/Outdoor 22\" Pillow Denim",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2214",
+ "vendor": "Schumacher",
+ "mfr_sku": "AMALIA MEDALLION 22\" PILLOW Blues",
+ "flagged_pattern": "Amalia Medallion 22\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2224",
+ "vendor": "Schumacher",
+ "mfr_sku": "AMIRA HAND BLOCKED PRINT PILLOW Indigo",
+ "flagged_pattern": "Amira Hand Blocked Print Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2234",
+ "vendor": "Schumacher",
+ "mfr_sku": "ALVA HAND BLOCK PRINT PILLOW Blush",
+ "flagged_pattern": "Amour 18\" Pillow Charcoal&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2244",
+ "vendor": "Schumacher",
+ "mfr_sku": "AMOUR 20\" PILLOW Charcoal",
+ "flagged_pattern": "Amour 20\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2254",
+ "vendor": "Schumacher",
+ "mfr_sku": "AMIRA HAND BLOCKED PRINT PILLOW Indigo",
+ "flagged_pattern": "Ananas 18\" Pillow Tropical",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2264",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANDROMEDA 18\" PILLOW Sand",
+ "flagged_pattern": "Andromeda 18\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2274",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANDROMEDA 18\" PILLOW Indigo&White",
+ "flagged_pattern": "Andromeda 18\" Pillow Indigo&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2284",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANDROMEDA 20\" PILLOW Sand",
+ "flagged_pattern": "Andromeda 20\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2294",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANDROMEDA 20\" PILLOW Indigo&White",
+ "flagged_pattern": "Andromeda 20\" Pillow Indigo&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2314",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANIMALIA 22\" PILLOW Blue&Natural",
+ "flagged_pattern": "Animalia 22\" Pillow Blue&Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2324",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANJOU STRIPE 18\" PILLOW Multi",
+ "flagged_pattern": "Anjou Stripe 18\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2334",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Aegean",
+ "flagged_pattern": "Antalya Medallion Pillow Pair Aegean",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2344",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Garnet",
+ "flagged_pattern": "Antalya Medallion Pillow Pair Garnet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2354",
+ "vendor": "Schumacher",
+ "mfr_sku": "ARGENTO PILLOW Mercury",
+ "flagged_pattern": "Argento Pillow Mercury",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2374",
+ "vendor": "Schumacher",
+ "mfr_sku": "ANTALYA MEDALLION PILLOW PAIR Garnet",
+ "flagged_pattern": "Arlo & Shimmer Linen 18\" Pillow Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2384",
+ "vendor": "Schumacher",
+ "mfr_sku": "ARGENTO PILLOW Mercury",
+ "flagged_pattern": "Asaka Ikat 18\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2394",
+ "vendor": "Schumacher",
+ "mfr_sku": "ARGENTO PILLOW Mercury",
+ "flagged_pattern": "Ashoka Pillow Ivory&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2404",
+ "vendor": "Schumacher",
+ "mfr_sku": "ASHOKA PILLOW Rose Quartz",
+ "flagged_pattern": "Ashoka Pillow Rose Quartz",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2414",
+ "vendor": "Schumacher",
+ "mfr_sku": "ATCHISON PILLOW Blue",
+ "flagged_pattern": "Atchison Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2434",
+ "vendor": "Schumacher",
+ "mfr_sku": "ASHOKA PILLOW Rose Quartz",
+ "flagged_pattern": "Axis Velvet 18\" Pillow Fawn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2444",
+ "vendor": "Schumacher",
+ "mfr_sku": "ATCHISON PILLOW Blue",
+ "flagged_pattern": "Axis Velvet 20\" Pillow Fawn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2454",
+ "vendor": "Schumacher",
+ "mfr_sku": "AUDREY STRIPE PILLOW Navy",
+ "flagged_pattern": "Axis Velvet 22\" Pillow Fawn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2464",
+ "vendor": "Schumacher",
+ "mfr_sku": "BAGRU & BUTI PILLOW Blue",
+ "flagged_pattern": "Bagru & Buti Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2474",
+ "vendor": "Schumacher",
+ "mfr_sku": "BANYAN IKAT PILLOW Blue&White",
+ "flagged_pattern": "Banyan Ikat Pillow Blue&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2484",
+ "vendor": "Schumacher",
+ "mfr_sku": "BARACOA EMBROIDERY PILLOW Black",
+ "flagged_pattern": "Baracoa Embroidery Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2494",
+ "vendor": "Schumacher",
+ "mfr_sku": "BAGRU & BUTI PILLOW Blue",
+ "flagged_pattern": "Bassano Toile Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2504",
+ "vendor": "Schumacher",
+ "mfr_sku": "BANYAN IKAT PILLOW Blue&White",
+ "flagged_pattern": "Baudin Butterfly Chintz Pillow Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2514",
+ "vendor": "Schumacher",
+ "mfr_sku": "BARACOA EMBROIDERY PILLOW Black",
+ "flagged_pattern": "Bayeta Embroidery Pillow Pink&Orange",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2524",
+ "vendor": "Schumacher",
+ "mfr_sku": "BASSANO TOILE PILLOW Black",
+ "flagged_pattern": "Beatrice Bouquet 20\" Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2534",
+ "vendor": "Schumacher",
+ "mfr_sku": "BAUDIN BUTTERFLY CHINTZ PILLOW Blush",
+ "flagged_pattern": "Bee Epingle Pillow Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2554",
+ "vendor": "Schumacher",
+ "mfr_sku": "BELVEDERE 18\" PILLOW Sky",
+ "flagged_pattern": "Belvedere 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2574",
+ "vendor": "Schumacher",
+ "mfr_sku": "BENSLEY BOUCLE 18\" PILLOW Blue",
+ "flagged_pattern": "Bensley Boucle 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2584",
+ "vendor": "Schumacher",
+ "mfr_sku": "BENSLEY BOUCLE 20\" PILLOW Blue",
+ "flagged_pattern": "Bensley Boucle 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2594",
+ "vendor": "Schumacher",
+ "mfr_sku": "BERGAMA PILLOW Carbon&Ivory",
+ "flagged_pattern": "Bergama Pillow Carbon&Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2604",
+ "vendor": "Schumacher",
+ "mfr_sku": "BERMUDA BLOSSOMS 18\" PILLOW Slate",
+ "flagged_pattern": "Bermuda Blossoms 18\" Pillow Slate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2614",
+ "vendor": "Schumacher",
+ "mfr_sku": "BETTY CHINTZ 18\" PILLOW Pink&Green",
+ "flagged_pattern": "Betty Chintz 18\" Pillow Pink&Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2624",
+ "vendor": "Schumacher",
+ "mfr_sku": "BERGAMA PILLOW Carbon&Ivory",
+ "flagged_pattern": "Betwixt 16\" Pillow Stone/White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2634",
+ "vendor": "Schumacher",
+ "mfr_sku": "BETWIXT 18\" PILLOW Stone/White",
+ "flagged_pattern": "Betwixt 18\" Pillow Stone/White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2644",
+ "vendor": "Schumacher",
+ "mfr_sku": "BETWIXT 20\" PILLOW Stone/White",
+ "flagged_pattern": "Betwixt 20\" Pillow Stone/White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2654",
+ "vendor": "Schumacher",
+ "mfr_sku": "BETWIXT 22\" PILLOW Stone/White",
+ "flagged_pattern": "Betwixt 22\" Pillow Stone/White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2684",
+ "vendor": "Schumacher",
+ "mfr_sku": "BINARY EMBROIDERY 20\" PILLOW Black",
+ "flagged_pattern": "Binary Embroidery 20\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2694",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIRD & BEE + FERN PILLOW Sky",
+ "flagged_pattern": "Bird & Bee + Fern Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2704",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIRDS & BUTTERFLIES 20\" PILLOW Multi",
+ "flagged_pattern": "Birds & Butterflies 20\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2714",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIRDS & BUTTERFLIES PILLOW Multi",
+ "flagged_pattern": "Birds & Butterflies Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2724",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIRD & BEE + FERN PILLOW Sky",
+ "flagged_pattern": "Bixi Velvet 18\" Pillow Celestine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2734",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIXI VELVET 18\" PILLOW Onyx",
+ "flagged_pattern": "Bixi Velvet 18\" Pillow Onyx",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2774",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIXI VELVET 22\" PILLOW Emerald",
+ "flagged_pattern": "Bixi Velvet 22\" Pillow Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2784",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIXI VELVET 22\" PILLOW Celestine",
+ "flagged_pattern": "Bixi Velvet 22\" Pillow Celestine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2794",
+ "vendor": "Schumacher",
+ "mfr_sku": "BIXI VELVET PILLOW Celestine",
+ "flagged_pattern": "Bixi Velvet Pillow Celestine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2814",
+ "vendor": "Schumacher",
+ "mfr_sku": "BOTANICO 20\" PILLOW Bronze",
+ "flagged_pattern": "Botanico 20\" Pillow Bronze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2854",
+ "vendor": "Schumacher",
+ "mfr_sku": "BURNELL BUTTERFLY 18\" PILLOW Black&White",
+ "flagged_pattern": "Burnell Butterfly 18\" Pillow Black&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2864",
+ "vendor": "Schumacher",
+ "mfr_sku": "BUTI & TUK TUK PILLOW Pink&Yellow",
+ "flagged_pattern": "Buti & Tuk Tuk Pillow Pink&Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2874",
+ "vendor": "Schumacher",
+ "mfr_sku": "BRUSHSTROKES PILLOW Sky",
+ "flagged_pattern": "Butterfly Epingle Pillow Spring",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2894",
+ "vendor": "Schumacher",
+ "mfr_sku": "BUTI & TUK TUK PILLOW Pink&Yellow",
+ "flagged_pattern": "Calicut 18\" Pillow Delft",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2904",
+ "vendor": "Schumacher",
+ "mfr_sku": "BUTTERFLY EPINGLE PILLOW Spring",
+ "flagged_pattern": "Camile Embroidery Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2914",
+ "vendor": "Schumacher",
+ "mfr_sku": "BUTTERFLY EPINGLE PILLOW Spring",
+ "flagged_pattern": "Campagne 18\" Pillow Peacock&Rouge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2924",
+ "vendor": "Schumacher",
+ "mfr_sku": "CAMPAGNE 18\" PILLOW Cadet&Citron",
+ "flagged_pattern": "Campagne 18\" Pillow Cadet&Citron",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2934",
+ "vendor": "Schumacher",
+ "mfr_sku": "CAMILE EMBROIDERY PILLOW Yellow",
+ "flagged_pattern": "Campagne 22\" Pillow Cadet&Citron",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2944",
+ "vendor": "Schumacher",
+ "mfr_sku": "CAMPAGNE PILLOW Bleu&Gris",
+ "flagged_pattern": "Campagne Pillow Bleu&Gris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2954",
+ "vendor": "Schumacher",
+ "mfr_sku": "CASTANET EMBROIDERY PILLOW Red",
+ "flagged_pattern": "Castanet Embroidery Pillow Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2964",
+ "vendor": "Schumacher",
+ "mfr_sku": "CASTANET EMBROIDERY PILLOW Chambray",
+ "flagged_pattern": "Castanet Embroidery Pillow Chambray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2974",
+ "vendor": "Schumacher",
+ "mfr_sku": "CAMPAGNE PILLOW Bleu&Gris",
+ "flagged_pattern": "Castanet Embroidery Pillow Cobalt",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2984",
+ "vendor": "Schumacher",
+ "mfr_sku": "CASTANET EMBROIDERY PILLOW Red",
+ "flagged_pattern": "Cecil Cotton Chintz Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-2994",
+ "vendor": "Schumacher",
+ "mfr_sku": "CASTANET EMBROIDERY PILLOW Chambray",
+ "flagged_pattern": "Cedar Tree Neck 16\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3004",
+ "vendor": "Schumacher",
+ "mfr_sku": "CASTANET EMBROIDERY PILLOW Cobalt",
+ "flagged_pattern": "Cedar Tree Neck 16\" Pillow Clay",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3014",
+ "vendor": "Schumacher",
+ "mfr_sku": "CECIL COTTON CHINTZ PILLOW Yellow",
+ "flagged_pattern": "Cedar Tree Neck 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3024",
+ "vendor": "Schumacher",
+ "mfr_sku": "CEDAR TREE NECK 18\" PILLOW Clay",
+ "flagged_pattern": "Cedar Tree Neck 18\" Pillow Clay",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3034",
+ "vendor": "Schumacher",
+ "mfr_sku": "CEDAR TREE NECK 20\" PILLOW Sky",
+ "flagged_pattern": "Cedar Tree Neck 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3044",
+ "vendor": "Schumacher",
+ "mfr_sku": "CEDAR TREE NECK 20\" PILLOW Clay",
+ "flagged_pattern": "Cedar Tree Neck 20\" Pillow Clay",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3054",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHATELAINE PAISLEY 22\" PILLOW Jade",
+ "flagged_pattern": "Chatelaine Paisley 22\" Pillow Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3064",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHENONCEAU 18\" PILLOW Sky&White",
+ "flagged_pattern": "Chenonceau 18\" Pillow Sky&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3074",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHENONCEAU 18\" PILLOW Charcoal",
+ "flagged_pattern": "Chenonceau 18\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3084",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHENONCEAU PILLOW Sky&White",
+ "flagged_pattern": "Chenonceau Pillow Sky&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3094",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHEVRON I/O 18\" PILLOW Sand",
+ "flagged_pattern": "Chevron I/O 18\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3104",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHEVRON IKAT 20\" PILLOW Lilac",
+ "flagged_pattern": "Chevron Ikat 20\" Pillow Lilac",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3124",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHEVRON VELVET 20\" PILLOW Mineral",
+ "flagged_pattern": "Chevron Velvet 20\" Pillow Mineral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3134",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHEVRON VELVET 22\" PILLOW Mineral",
+ "flagged_pattern": "Chevron Velvet 22\" Pillow Mineral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3144",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHEVRON INDOOR/OUTDOOR PILLOW Sand",
+ "flagged_pattern": "Chiang Mai Dragon 18\" Pillow Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3154",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Smoke",
+ "flagged_pattern": "Chiang Mai Dragon 18\" Pillow Smoke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3164",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Aquamarine",
+ "flagged_pattern": "Chiang Mai Dragon 18\" Pillow Aquamarine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3174",
+ "vendor": "Schumacher",
+ "mfr_sku": "CHIANG MAI DRAGON 18\" PILLOW Alabaster",
+ "flagged_pattern": "Chiang Mai Dragon 18\" Pillow Alabaster",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3184",
+ "vendor": "Schumacher",
+ "mfr_sku": "HIGHGROVE TREE CREWEL PILLOW Mulberry",
+ "flagged_pattern": "Highgrove Tree Crewel Pillow Mulberry",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3194",
+ "vendor": "Schumacher",
+ "mfr_sku": "HOLMUL & PANAN STRIPE PILLOW Autumn",
+ "flagged_pattern": "Holmul & Panan Stripe Pillow Autumn",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3204",
+ "vendor": "Schumacher",
+ "mfr_sku": "HORST STRIPE 20\" PILLOW Grisaille",
+ "flagged_pattern": "Horst Stripe 20\" Pillow Grisaille",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3214",
+ "vendor": "Schumacher",
+ "mfr_sku": "HIGHGROVE TREE CREWEL PILLOW Mulberry",
+ "flagged_pattern": "Hothouse Flowers 18\" Pillow Mineral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3224",
+ "vendor": "Schumacher",
+ "mfr_sku": "HOLMUL & PANAN STRIPE PILLOW Autumn",
+ "flagged_pattern": "Hydrangea 18\" Pillow Document",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3234",
+ "vendor": "Schumacher",
+ "mfr_sku": "IBIZA FLAMESTITCH 20\" PILLOW Pool",
+ "flagged_pattern": "Ibiza Flamestitch 20\" Pillow Pool",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3244",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICEHOUSE 22\" PILLOW Prussian&Grey",
+ "flagged_pattern": "Icehouse 22\" Pillow Prussian&Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3254",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Graphite",
+ "flagged_pattern": "Iconic Leopard 18\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3264",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Linen",
+ "flagged_pattern": "Iconic Leopard 18\" Pillow Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3274",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Green",
+ "flagged_pattern": "Iconic Leopard 18\" Pillow Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3284",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Sky",
+ "flagged_pattern": "Iconic Leopard 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3294",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 18\" PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard 18\" Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3304",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard 20\" Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3324",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Linen",
+ "flagged_pattern": "Iconic Leopard 20\" Pillow Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3334",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 20\" PILLOW Sky",
+ "flagged_pattern": "Iconic Leopard 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3344",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Graphite",
+ "flagged_pattern": "Iconic Leopard 22\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3364",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Sky",
+ "flagged_pattern": "Iconic Leopard 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3374",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Linen",
+ "flagged_pattern": "Iconic Leopard 22\" Pillow Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3384",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 22\" PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard 22\" Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3394",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 24\" PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard 24\" Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3404",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD 24\" PILLOW Linen",
+ "flagged_pattern": "Iconic Leopard 24\" Pillow Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3414",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD BOLSTER PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard Bolster Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3424",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD I/O 18\" PILLOW Navy",
+ "flagged_pattern": "Iconic Leopard I/O 18\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3434",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD I/O 18\" PILLOW Graphite",
+ "flagged_pattern": "Iconic Leopard I/O 18\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3444",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD BOLSTER PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard I/O 20\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3454",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD I/O 20\" PILLOW Navy",
+ "flagged_pattern": "Iconic Leopard I/O 20\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3464",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD PILLOW Ink",
+ "flagged_pattern": "Iconic Leopard Pillow Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3484",
+ "vendor": "Schumacher",
+ "mfr_sku": "IMPERIAL TRELLIS 18\" PILLOW Treillage/Ivory",
+ "flagged_pattern": "Imperial Trellis 18\" Pillow Treillage/Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3494",
+ "vendor": "Schumacher",
+ "mfr_sku": "ICONIC LEOPARD PILLOW Ink",
+ "flagged_pattern": "Indio & Presidio Ikat Pillow Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3514",
+ "vendor": "Schumacher",
+ "mfr_sku": "INK SPLASH 18\" PILLOW Red&Blue",
+ "flagged_pattern": "Ink Splash 18\" Pillow Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3524",
+ "vendor": "Schumacher",
+ "mfr_sku": "INDIO & PRESIDIO IKAT PILLOW Green",
+ "flagged_pattern": "Ink Splash 20\" Pillow Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3534",
+ "vendor": "Schumacher",
+ "mfr_sku": "INDIO & PRESIDIO IKAT PILLOW Green",
+ "flagged_pattern": "Ink Splash 22\" Pillow Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3544",
+ "vendor": "Schumacher",
+ "mfr_sku": "ISLA HAND EMBROIDERY 16\" PILLOW Sky",
+ "flagged_pattern": "Isla Hand Embroidery 16\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3554",
+ "vendor": "Schumacher",
+ "mfr_sku": "ISOLDE STRIPE 16\" PILLOW Yellow",
+ "flagged_pattern": "Isolde Stripe 16\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3564",
+ "vendor": "Schumacher",
+ "mfr_sku": "ISOLDE STRIPE 18\" PILLOW Yellow",
+ "flagged_pattern": "Isolde Stripe 18\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3574",
+ "vendor": "Schumacher",
+ "mfr_sku": "ISOLDE STRIPE 20\" PILLOW Yellow",
+ "flagged_pattern": "Isolde Stripe 20\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3584",
+ "vendor": "Schumacher",
+ "mfr_sku": "IZMIR STRIPE 20\" PILLOW Indigo",
+ "flagged_pattern": "Izmir Stripe 20\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3594",
+ "vendor": "Schumacher",
+ "mfr_sku": "JACKIE APPLIQUE 20\" PILLOW Blue",
+ "flagged_pattern": "Jackie Applique 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3604",
+ "vendor": "Schumacher",
+ "mfr_sku": "JACKIE APPLIQUE 20\" PILLOW Natural",
+ "flagged_pattern": "Jackie Applique 20\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3614",
+ "vendor": "Schumacher",
+ "mfr_sku": "JAHANARA CARPET 20\" PILLOW Jade",
+ "flagged_pattern": "Jahanara Carpet 20\" Pillow Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3624",
+ "vendor": "Schumacher",
+ "mfr_sku": "JAIPUR LINEN EMBROIDERY PILLOW Flax",
+ "flagged_pattern": "Jaipur Linen Embroidery Pillow Flax",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3644",
+ "vendor": "Schumacher",
+ "mfr_sku": "JAKE PILLOW Quiet",
+ "flagged_pattern": "Jake Pillow Quiet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3674",
+ "vendor": "Schumacher",
+ "mfr_sku": "JAKE PILLOW Quiet",
+ "flagged_pattern": "Jennie Velvet Bolster Pillow Midnight&Magenta",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3684",
+ "vendor": "Schumacher",
+ "mfr_sku": "JANIS VELVET PILLOW Blue",
+ "flagged_pattern": "Jennie Velvet Bolster Pillow Blue&Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3694",
+ "vendor": "Schumacher",
+ "mfr_sku": "JANIS VELVET PILLOW Blue",
+ "flagged_pattern": "Jennie Velvet Bolster Pillow Peacock&Celadon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3704",
+ "vendor": "Schumacher",
+ "mfr_sku": "JENNIE VELVET BOLSTER PILLOW Midnight&Magenta",
+ "flagged_pattern": "Jennie Velvet Pillow Peacock&Celadon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3724",
+ "vendor": "Schumacher",
+ "mfr_sku": "JENNIE VELVET BOLSTER PILLOW Peacock&Celadon",
+ "flagged_pattern": "Jokhang Tiger Velvet 18\" Pillow Brown&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3734",
+ "vendor": "Schumacher",
+ "mfr_sku": "JENNIE VELVET PILLOW Peacock&Celadon",
+ "flagged_pattern": "Jokhang Tiger Velvet 18\" Pillow Peacock&Olive",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3744",
+ "vendor": "Schumacher",
+ "mfr_sku": "JOKHANG TIGER VELVET PILLOW Brown&Black",
+ "flagged_pattern": "Jokhang Tiger Velvet Pillow Brown&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3754",
+ "vendor": "Schumacher",
+ "mfr_sku": "JUNO 18\" PILLOW Blanc",
+ "flagged_pattern": "Juno 18\" Pillow Blanc",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3764",
+ "vendor": "Schumacher",
+ "mfr_sku": "KANDIRA 18\" PILLOW Blues",
+ "flagged_pattern": "Kandira 18\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3774",
+ "vendor": "Schumacher",
+ "mfr_sku": "JOKHANG TIGER VELVET PILLOW Brown&Black",
+ "flagged_pattern": "Kandira 22\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3784",
+ "vendor": "Schumacher",
+ "mfr_sku": "KASHGAR VELVET IKAT 20\" PILLOW Peacock&Emerald",
+ "flagged_pattern": "Kashgar Velvet Ikat 20\" Pillow Peacock&Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3794",
+ "vendor": "Schumacher",
+ "mfr_sku": "KATAMA 20\" PILLOW Sky",
+ "flagged_pattern": "Katama 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3814",
+ "vendor": "Schumacher",
+ "mfr_sku": "KATAMA 22\" PILLOW Sky",
+ "flagged_pattern": "Katama 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3824",
+ "vendor": "Schumacher",
+ "mfr_sku": "KATAMA 22\" PILLOW Caramel",
+ "flagged_pattern": "Katama 22\" Pillow Caramel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3834",
+ "vendor": "Schumacher",
+ "mfr_sku": "KAYENTA STRIPE PILLOW Yellow",
+ "flagged_pattern": "Kayenta Stripe Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3844",
+ "vendor": "Schumacher",
+ "mfr_sku": "KHAN'S PARK PILLOW Chambray",
+ "flagged_pattern": "Khan'S Park Pillow Chambray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3854",
+ "vendor": "Schumacher",
+ "mfr_sku": "KHILANA FLORAL 20\" PILLOW Delft&Rose",
+ "flagged_pattern": "Khilana Floral 20\" Pillow Delft&Rose",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3864",
+ "vendor": "Schumacher",
+ "mfr_sku": "KAYENTA STRIPE PILLOW Yellow",
+ "flagged_pattern": "Khotan Weave Pillow Sable",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3884",
+ "vendor": "Schumacher",
+ "mfr_sku": "KIMONO IKAT 18\" PILLOW Berry",
+ "flagged_pattern": "Kimono Ikat 18\" Pillow Berry",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3894",
+ "vendor": "Schumacher",
+ "mfr_sku": "KHOTAN WEAVE PILLOW Sable",
+ "flagged_pattern": "Kudu Stripe Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3904",
+ "vendor": "Schumacher",
+ "mfr_sku": "KHOTAN WEAVE PILLOW Sable",
+ "flagged_pattern": "Kuzma 22\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3914",
+ "vendor": "Schumacher",
+ "mfr_sku": "LADYBIRD PILLOW Yellow&Pink",
+ "flagged_pattern": "Ladybird Pillow Yellow&Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3924",
+ "vendor": "Schumacher",
+ "mfr_sku": "KUDU STRIPE PILLOW Blue",
+ "flagged_pattern": "Larson Pillow Yellow&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3944",
+ "vendor": "Schumacher",
+ "mfr_sku": "LADYBIRD PILLOW Yellow&Pink",
+ "flagged_pattern": "Le Joueur 16\" Pillow Rouge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3954",
+ "vendor": "Schumacher",
+ "mfr_sku": "LARSON PILLOW Yellow&Blue",
+ "flagged_pattern": "Le Joueur 18\" Pillow Rouge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3964",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE CASTELLET PILLOW Indigo",
+ "flagged_pattern": "Le Joueur 20\" Pillow Rouge",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3974",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 16\" PILLOW Blue",
+ "flagged_pattern": "Le Matelot 16\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3984",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 16\" PILLOW Peacock",
+ "flagged_pattern": "Le Matelot 16\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-3994",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 18\" PILLOW Blue",
+ "flagged_pattern": "Le Matelot 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4004",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 18\" PILLOW Peacock",
+ "flagged_pattern": "Le Matelot 18\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4014",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 20\" PILLOW Blue",
+ "flagged_pattern": "Le Matelot 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4024",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT 20\" PILLOW Peacock",
+ "flagged_pattern": "Le Matelot 20\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4034",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT PILLOW Peacock",
+ "flagged_pattern": "Le Matelot Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4054",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT PILLOW Charcoal",
+ "flagged_pattern": "Le Matelot Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4064",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT PILLOW Peacock",
+ "flagged_pattern": "Leaping Leopards 16\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4074",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT PILLOW Peacock",
+ "flagged_pattern": "Leaping Leopards 16\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4084",
+ "vendor": "Schumacher",
+ "mfr_sku": "LE MATELOT PILLOW Charcoal",
+ "flagged_pattern": "Leaping Leopards 18\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4094",
+ "vendor": "Schumacher",
+ "mfr_sku": "LEAPING LEOPARDS 20\" PILLOW Sand",
+ "flagged_pattern": "Leaping Leopards 20\" Pillow Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4104",
+ "vendor": "Schumacher",
+ "mfr_sku": "LEAPING LEOPARDS PILLOW Yellow",
+ "flagged_pattern": "Leaping Leopards Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4114",
+ "vendor": "Schumacher",
+ "mfr_sku": "LELAND STRIPE 18\" PILLOW Multi",
+ "flagged_pattern": "Leland Stripe 18\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4124",
+ "vendor": "Schumacher",
+ "mfr_sku": "LELAND STRIPE 20\" PILLOW Multi",
+ "flagged_pattern": "Leland Stripe 20\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4134",
+ "vendor": "Schumacher",
+ "mfr_sku": "LEAPING LEOPARDS PILLOW Yellow",
+ "flagged_pattern": "Leland Stripe 22\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4144",
+ "vendor": "Schumacher",
+ "mfr_sku": "LES FOUGERES 18\" PILLOW Document",
+ "flagged_pattern": "Les Fougeres 18\" Pillow Document",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4154",
+ "vendor": "Schumacher",
+ "mfr_sku": "LES SCENES CONTEMPORAINE PILLOW Black",
+ "flagged_pattern": "Les Scenes Contemporaine Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4194",
+ "vendor": "Schumacher",
+ "mfr_sku": "LILYA LEOPARD SPHERE PILLOW Natural",
+ "flagged_pattern": "Lilya Leopard Sphere Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4204",
+ "vendor": "Schumacher",
+ "mfr_sku": "LINES PILLOW Black",
+ "flagged_pattern": "Lines Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4224",
+ "vendor": "Schumacher",
+ "mfr_sku": "LILYA LEOPARD SPHERE PILLOW Natural",
+ "flagged_pattern": "Lionheart Applique Pillow Black&Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4234",
+ "vendor": "Schumacher",
+ "mfr_sku": "LINES PILLOW Black",
+ "flagged_pattern": "Lotus Embroidery 16\" Pillow Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4244",
+ "vendor": "Schumacher",
+ "mfr_sku": "LINES PILLOW Black",
+ "flagged_pattern": "Lotus Embroidery 18\" Pillow Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4254",
+ "vendor": "Schumacher",
+ "mfr_sku": "LIONHEART APPLIQUE PILLOW Black&Gold",
+ "flagged_pattern": "Lotus Garden 18\" Pillow Aqua",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4264",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 18\" PILLOW Lilac",
+ "flagged_pattern": "Lotus Garden 18\" Pillow Lilac",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4274",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 18\" PILLOW Jade",
+ "flagged_pattern": "Lotus Garden 18\" Pillow Jade",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4284",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 22\" PILLOW Mocha",
+ "flagged_pattern": "Lotus Garden 22\" Pillow Mocha",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4294",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 22\" PILLOW Lilac",
+ "flagged_pattern": "Lotus Garden 22\" Pillow Lilac",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4304",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 22\" PILLOW Aqua",
+ "flagged_pattern": "Lotus Garden 22\" Pillow Aqua",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4314",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN 22\" PILLOW Porcelain",
+ "flagged_pattern": "Lotus Garden 22\" Pillow Porcelain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4324",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOTUS GARDEN PILLOW Lilac",
+ "flagged_pattern": "Lotus Garden Pillow Lilac",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4364",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOUDON ROSE PILLOW Ivory",
+ "flagged_pattern": "Lula Embroidered Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4374",
+ "vendor": "Schumacher",
+ "mfr_sku": "LOUDON ROSE PILLOW Rose&Blue",
+ "flagged_pattern": "Madeleine Velvet 18\" Pillow Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4384",
+ "vendor": "Schumacher",
+ "mfr_sku": "LUBECK STRIPE PILLOW Navy",
+ "flagged_pattern": "Madeleine Velvet 18\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4394",
+ "vendor": "Schumacher",
+ "mfr_sku": "LULA EMBROIDERED PILLOW Ivory",
+ "flagged_pattern": "Madeleine Velvet 18\" Pillow Cadet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4414",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 20\" PILLOW Midnight",
+ "flagged_pattern": "Madeleine Velvet 20\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4424",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 20\" PILLOW Cadet",
+ "flagged_pattern": "Madeleine Velvet 20\" Pillow Cadet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4434",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 22\" PILLOW Emerald",
+ "flagged_pattern": "Madeleine Velvet 22\" Pillow Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4444",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 22\" PILLOW Cadet",
+ "flagged_pattern": "Madeleine Velvet 22\" Pillow Cadet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4454",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 22\" PILLOW Midnight",
+ "flagged_pattern": "Madeleine Velvet 22\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4464",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 24\" PILLOW Emerald",
+ "flagged_pattern": "Madeleine Velvet 24\" Pillow Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4474",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 24\" PILLOW Midnight",
+ "flagged_pattern": "Madeleine Velvet 24\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4484",
+ "vendor": "Schumacher",
+ "mfr_sku": "MADELEINE VELVET 24\" PILLOW Cadet",
+ "flagged_pattern": "Madeleine Velvet 24\" Pillow Cadet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4494",
+ "vendor": "Schumacher",
+ "mfr_sku": "MAGGIORE DAMASCO 18\" PILLOW Midnight",
+ "flagged_pattern": "Maggiore Damasco 18\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4504",
+ "vendor": "Schumacher",
+ "mfr_sku": "MAGIC MOUNTAIN DRAGON PILLOW Blue",
+ "flagged_pattern": "Magic Mountain Dragon Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4514",
+ "vendor": "Schumacher",
+ "mfr_sku": "MAGICAL MING DRAGON 20\" PILLOW Brown&Blue",
+ "flagged_pattern": "Magical Ming Dragon 20\" Pillow Brown&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4524",
+ "vendor": "Schumacher",
+ "mfr_sku": "MAGICAL MING DRAGON 20\" PILLOW Yellow&Red",
+ "flagged_pattern": "Magical Ming Dragon 20\" Pillow Yellow&Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4554",
+ "vendor": "Schumacher",
+ "mfr_sku": "MANTA PERFORMANCE 22\" PILLOW Blue&Black",
+ "flagged_pattern": "Manta Performance 22\" Pillow Blue&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4564",
+ "vendor": "Schumacher",
+ "mfr_sku": "MALABAR VINE PILLOW Sky&Rose",
+ "flagged_pattern": "Maracana Pom Pillow Flax",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4574",
+ "vendor": "Schumacher",
+ "mfr_sku": "MANDEVILLE PILLOW Indigo",
+ "flagged_pattern": "Marella 18\" Pillow Delft",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4584",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARELLA 22\" PILLOW Delft",
+ "flagged_pattern": "Marella 22\" Pillow Delft",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4594",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARACANA POM PILLOW Flax",
+ "flagged_pattern": "Margarete 18\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4604",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGARETE 18\" PILLOW Ivory",
+ "flagged_pattern": "Margarete 18\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4614",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGARETE 20\" PILLOW Ivory",
+ "flagged_pattern": "Margarete 20\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4624",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGARETE 20\" PILLOW Ivory",
+ "flagged_pattern": "Margarete 20\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4634",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGARETE 22\" PILLOW Ivory",
+ "flagged_pattern": "Margarete 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4644",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGARETE 22\" PILLOW Ivory",
+ "flagged_pattern": "Margarete 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4654",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+ "flagged_pattern": "Marguerite Embroidery Pillow Blue&Ochre",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4664",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+ "flagged_pattern": "Marguerite Embroidery Pillow Blue&Ochre",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4674",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blos",
+ "flagged_pattern": "Marguerite Embroidery Pillow Blos",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4684",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+ "flagged_pattern": "Marguerite Embroidery Pillow Blos",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4694",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blue&Ochre",
+ "flagged_pattern": "Marguerite Embroidery Pillow Buttercup",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4704",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Blos",
+ "flagged_pattern": "Marguerite Embroidery Pillow Buttercup",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4734",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Buttercup",
+ "flagged_pattern": "Maria Pillow Raven",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4744",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Sky",
+ "flagged_pattern": "Marigold 22\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4754",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARGUERITE EMBROIDERY PILLOW Sky",
+ "flagged_pattern": "Mariposa A Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4764",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARIA PILLOW Raven",
+ "flagged_pattern": "Mariposa B Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4774",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARKOVA STRIPE PILLOW Black",
+ "flagged_pattern": "Markova Stripe Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4784",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARIPOSA A Red&Blue",
+ "flagged_pattern": "Matsudana 20\" Pillow Jade&Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4794",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARIPOSA B Red&Blue",
+ "flagged_pattern": "Meadow Rock 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4804",
+ "vendor": "Schumacher",
+ "mfr_sku": "MARKOVA STRIPE PILLOW Black",
+ "flagged_pattern": "Meadow Rock 18\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4814",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 18\" PILLOW Blush",
+ "flagged_pattern": "Meadow Rock 18\" Pillow Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4824",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 20\" PILLOW Blue",
+ "flagged_pattern": "Meadow Rock 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4844",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 20\" PILLOW Blush",
+ "flagged_pattern": "Meadow Rock 20\" Pillow Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4854",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 22\" PILLOW Blue",
+ "flagged_pattern": "Meadow Rock 22\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4864",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 22\" PILLOW Natural",
+ "flagged_pattern": "Meadow Rock 22\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4874",
+ "vendor": "Schumacher",
+ "mfr_sku": "MEADOW ROCK 22\" PILLOW Blush",
+ "flagged_pattern": "Meadow Rock 22\" Pillow Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4884",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET 18\" VELVET PILLOW Bronze",
+ "flagged_pattern": "Ming Fret 18\" Velvet Pillow Bronze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4914",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 18\" PILLOW Mineral&White",
+ "flagged_pattern": "Ming Fret Velvet 18\" Pillow Mineral&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4944",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 20\" PILLOW Mineral&White",
+ "flagged_pattern": "Ming Fret Velvet 20\" Pillow Mineral&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4954",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 20\" PILLOW Bronze",
+ "flagged_pattern": "Ming Fret Velvet 20\" Pillow Bronze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4984",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 22\" PILLOW Bronze",
+ "flagged_pattern": "Ming Fret Velvet 22\" Pillow Bronze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-4994",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 22\" PILLOW Mineral&White",
+ "flagged_pattern": "Ming Fret Velvet 22\" Pillow Mineral&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5024",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 24\" PILLOW Mineral&White",
+ "flagged_pattern": "Ming Fret Velvet 24\" Pillow Mineral&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5034",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING FRET VELVET 24\" PILLOW Bronze",
+ "flagged_pattern": "Ming Fret Velvet 24\" Pillow Bronze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5044",
+ "vendor": "Schumacher",
+ "mfr_sku": "MING VASE 18\" PILLOW Multi",
+ "flagged_pattern": "Ming Vase 18\" Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5054",
+ "vendor": "Schumacher",
+ "mfr_sku": "MIXCO PILLOW Jewel",
+ "flagged_pattern": "Mixco Pillow Jewel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5064",
+ "vendor": "Schumacher",
+ "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Pink&Black",
+ "flagged_pattern": "Modern Toile 20\" Box Pillow Pink&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5074",
+ "vendor": "Schumacher",
+ "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Indigo",
+ "flagged_pattern": "Modern Toile 20\" Box Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5094",
+ "vendor": "Schumacher",
+ "mfr_sku": "MODERN TOILE 20\" BOX PILLOW Black",
+ "flagged_pattern": "Modern Toile 20\" Box Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5104",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOHAVE PILLOW Natural&Black",
+ "flagged_pattern": "Mohave Pillow Natural&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5114",
+ "vendor": "Schumacher",
+ "mfr_sku": "MONA 18\" PILLOW Blackwork",
+ "flagged_pattern": "Mona 18\" Pillow Blackwork",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5144",
+ "vendor": "Schumacher",
+ "mfr_sku": "MONTECITO MEDALLION 18\" PILLOW Red&Blue",
+ "flagged_pattern": "Montecito Medallion 18\" Pillow Red&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5154",
+ "vendor": "Schumacher",
+ "mfr_sku": "MONTECITO MEDALLION 18\" PILLOW Indigo",
+ "flagged_pattern": "Montecito Medallion 18\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5164",
+ "vendor": "Schumacher",
+ "mfr_sku": "MONTECITO MEDALLION 20\" PILLOW Indigo",
+ "flagged_pattern": "Montecito Medallion 20\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5174",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOON GARDEN 18\" PILLOW Pewter",
+ "flagged_pattern": "Moon Garden 18\" Pillow Pewter",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5184",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOOREA PILLOW Black",
+ "flagged_pattern": "Moorea Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5194",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOTTLEY GRID 16\" PILLOW Wren",
+ "flagged_pattern": "Mottley Grid 16\" Pillow Wren",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5204",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOTTLEY GRID 18\" PILLOW Wren",
+ "flagged_pattern": "Mottley Grid 18\" Pillow Wren",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5214",
+ "vendor": "Schumacher",
+ "mfr_sku": "MOOREA PILLOW Black",
+ "flagged_pattern": "Mottley Grid 20\" Pillow Wren",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5224",
+ "vendor": "Schumacher",
+ "mfr_sku": "NAKURU LINEN VELVET 22\" PILLOW Mineral",
+ "flagged_pattern": "Nakuru Linen Velvet 22\" Pillow Mineral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5234",
+ "vendor": "Schumacher",
+ "mfr_sku": "NANCY 18\" PILLOW Grisaille&Green",
+ "flagged_pattern": "Nancy 18\" Pillow Grisaille&Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5244",
+ "vendor": "Schumacher",
+ "mfr_sku": "NANJING 18\" PILLOW Porcelain",
+ "flagged_pattern": "Nanjing 18\" Pillow Porcelain",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5274",
+ "vendor": "Schumacher",
+ "mfr_sku": "NEBAHA EMBROIDERY 20\" PILLOW Charcoal",
+ "flagged_pattern": "Nebaha Embroidery 20\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5284",
+ "vendor": "Schumacher",
+ "mfr_sku": "NaturalSO7255018 Furniture&Acces",
+ "flagged_pattern": "Nebaha Embroidery 22\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5304",
+ "vendor": "Schumacher",
+ "mfr_sku": "NICOLETTE EMBROIDERY 22\" PILLOW Ivory",
+ "flagged_pattern": "Nicolette Embroidery 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5314",
+ "vendor": "Schumacher",
+ "mfr_sku": "NOELIA PILLOW Hazel",
+ "flagged_pattern": "Noelia Pillow Hazel",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5324",
+ "vendor": "Schumacher",
+ "mfr_sku": "NeutralSO7919106 Furniture&Acces",
+ "flagged_pattern": "Octavia Velvet 18\" Pillow Peacock&Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5344",
+ "vendor": "Schumacher",
+ "mfr_sku": "NOELIA PILLOW Hazel",
+ "flagged_pattern": "Ojai Paisley Pillow Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5364",
+ "vendor": "Schumacher",
+ "mfr_sku": "OMAR EMBROIDERY 18\" PILLOW Black",
+ "flagged_pattern": "Omar Embroidery 18\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5374",
+ "vendor": "Schumacher",
+ "mfr_sku": "OJAI PAISLEY PILLOW Red",
+ "flagged_pattern": "Paisley Court 20\" Pillow Sky&Rose",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5384",
+ "vendor": "Schumacher",
+ "mfr_sku": "PALMETTO BEACH PILLOW Green",
+ "flagged_pattern": "Palmetto Beach Pillow Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5394",
+ "vendor": "Schumacher",
+ "mfr_sku": "PALMETTO PRINT 20\" PILLOW Lagoon",
+ "flagged_pattern": "Palmetto Print 20\" Pillow Lagoon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5404",
+ "vendor": "Schumacher",
+ "mfr_sku": "PALOMA EMBROIDERY PILLOW Ebony",
+ "flagged_pattern": "Paloma Embroidery Pillow Ebony",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5414",
+ "vendor": "Schumacher",
+ "mfr_sku": "PALMETTO BEACH PILLOW Green",
+ "flagged_pattern": "Pandora Embroidery Pillow Delft&Rose",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5424",
+ "vendor": "Schumacher",
+ "mfr_sku": "PAPILLON VELVET 18\" PILLOW Pewter",
+ "flagged_pattern": "Papillon Velvet 18\" Pillow Pewter",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5434",
+ "vendor": "Schumacher",
+ "mfr_sku": "PALOMA EMBROIDERY PILLOW Ebony",
+ "flagged_pattern": "Pattee & Luna 18\" Pillow Tumeric&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5444",
+ "vendor": "Schumacher",
+ "mfr_sku": "PANDORA EMBROIDERY PILLOW Delft&Rose",
+ "flagged_pattern": "Pattee & Luna 20\" Pillow Tumeric&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5454",
+ "vendor": "Schumacher",
+ "mfr_sku": "PATTEE & LUNA 22\" PILLOW Tumeric&Blue",
+ "flagged_pattern": "Pattee & Luna 22\" Pillow Tumeric&Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5464",
+ "vendor": "Schumacher",
+ "mfr_sku": "PAVONE VELVET PILLOW Carbon",
+ "flagged_pattern": "Pavone Velvet Pillow Carbon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5484",
+ "vendor": "Schumacher",
+ "mfr_sku": "PEARL RIVER 22\" PILLOW Yellow",
+ "flagged_pattern": "Pearl River 22\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5494",
+ "vendor": "Schumacher",
+ "mfr_sku": "PAVONE VELVET PILLOW Carbon",
+ "flagged_pattern": "Pennick Chintz 18\" Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5504",
+ "vendor": "Schumacher",
+ "mfr_sku": "PAVONE VELVET PILLOW Peacock&Sand",
+ "flagged_pattern": "Pennick Chintz 18\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5544",
+ "vendor": "Schumacher",
+ "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+ "flagged_pattern": "Performance Silk Velvet Pillow Merlot",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5554",
+ "vendor": "Schumacher",
+ "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+ "flagged_pattern": "Performance Silk Velvet Pillow Merlot",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5564",
+ "vendor": "Schumacher",
+ "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+ "flagged_pattern": "Persephone 20\" Pillow Celestial",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5574",
+ "vendor": "Schumacher",
+ "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+ "flagged_pattern": "Pica Bella Hand Blocked Pillow Pink&Orange",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5584",
+ "vendor": "Schumacher",
+ "mfr_sku": "PERFORMANCE SILK VELVET PILLOW Merlot",
+ "flagged_pattern": "Plaisirs De La Chine 18\" Pillow Emerald",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5594",
+ "vendor": "Schumacher",
+ "mfr_sku": "POMEGRANATE PRINT 20\" PILLOW Petal",
+ "flagged_pattern": "Pomegranate Print 20\" Pillow Petal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5624",
+ "vendor": "Schumacher",
+ "mfr_sku": "POPLAR I/O 20\" PILLOW Carbon",
+ "flagged_pattern": "Poplar I/O 20\" Pillow Carbon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5634",
+ "vendor": "Schumacher",
+ "mfr_sku": "POPLAR I/O 22\" PILLOW Carbon",
+ "flagged_pattern": "Poplar I/O 22\" Pillow Carbon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5644",
+ "vendor": "Schumacher",
+ "mfr_sku": "POPLAR I/O 24\" PILLOW Carbon",
+ "flagged_pattern": "Poplar I/O 24\" Pillow Carbon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5654",
+ "vendor": "Schumacher",
+ "mfr_sku": "PUNK ROCK PILLOW Navy",
+ "flagged_pattern": "Punk Rock Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5674",
+ "vendor": "Schumacher",
+ "mfr_sku": "PYNE HOLLYHOCK 18\" PILLOW Indigo",
+ "flagged_pattern": "Pyne Hollyhock 18\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5684",
+ "vendor": "Schumacher",
+ "mfr_sku": "PUNK ROCK PILLOW Navy",
+ "flagged_pattern": "Pyne Hollyhock 18\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5694",
+ "vendor": "Schumacher",
+ "mfr_sku": "PUNK ROCK PILLOW Black&White",
+ "flagged_pattern": "Pyne Hollyhock 22\" Pillow Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5714",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 18\" PILLOW Natural",
+ "flagged_pattern": "Queen Of Spain 18\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5724",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 18\" PILLOW Sky",
+ "flagged_pattern": "Queen Of Spain 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5734",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN FRUIT CHINTZ PILLOW Ebony",
+ "flagged_pattern": "Queen Of Spain 18\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5744",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Black",
+ "flagged_pattern": "Queen Of Spain 20\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5754",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Natural",
+ "flagged_pattern": "Queen Of Spain 20\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5764",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 20\" PILLOW Sky",
+ "flagged_pattern": "Queen Of Spain 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5774",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Natural",
+ "flagged_pattern": "Queen Of Spain 22\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5784",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Sky",
+ "flagged_pattern": "Queen Of Spain 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5794",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 22\" PILLOW Black",
+ "flagged_pattern": "Queen Of Spain 22\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5804",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN 24\" PILLOW Black",
+ "flagged_pattern": "Queen Of Spain 24\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5814",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+ "flagged_pattern": "Queen Of Spain Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5824",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+ "flagged_pattern": "Queen Of Spain Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5834",
+ "vendor": "Schumacher",
+ "mfr_sku": "RAFE STRIPE 18\" PILLOW Pink&White",
+ "flagged_pattern": "Rafe Stripe 18\" Pillow Pink&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5844",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+ "flagged_pattern": "Rafe Stripe 20\" Pillow Pink&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5854",
+ "vendor": "Schumacher",
+ "mfr_sku": "QUEEN OF SPAIN PILLOW Black",
+ "flagged_pattern": "Rafe Stripe 22\" Pillow Pink&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5864",
+ "vendor": "Schumacher",
+ "mfr_sku": "RAJA EMBROIDERY 18\" PILLOW Sky",
+ "flagged_pattern": "Raja Embroidery 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5874",
+ "vendor": "Schumacher",
+ "mfr_sku": "RAJA EMBROIDERY 22\" PILLOW Sky",
+ "flagged_pattern": "Raja Embroidery 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5884",
+ "vendor": "Schumacher",
+ "mfr_sku": "REGALIA 20\" PILLOW Blue&White",
+ "flagged_pattern": "Regalia 20\" Pillow Blue&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5894",
+ "vendor": "Schumacher",
+ "mfr_sku": "REGINE STRIE VELVET 20\" PILLOW Ebony",
+ "flagged_pattern": "Regine Strie Velvet 20\" Pillow Ebony",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5904",
+ "vendor": "Schumacher",
+ "mfr_sku": "REGINE STRIE VELVET 22\" PILLOW Ebony",
+ "flagged_pattern": "Regine Strie Velvet 22\" Pillow Ebony",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5914",
+ "vendor": "Schumacher",
+ "mfr_sku": "RHODES STRIPE 20\" PILLOW Navy",
+ "flagged_pattern": "Rhodes Stripe 20\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5924",
+ "vendor": "Schumacher",
+ "mfr_sku": "RHODES STRIPE 22\" PILLOW Navy",
+ "flagged_pattern": "Rhodes Stripe 22\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5934",
+ "vendor": "Schumacher",
+ "mfr_sku": "RHODES STRIPE 24\" PILLOW Navy",
+ "flagged_pattern": "Rhodes Stripe 24\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5954",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROBERT BURNS PILLOW Multi",
+ "flagged_pattern": "Robert Burns Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5964",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROCA REDONDA 22\" PILLOW Carbon&Multi",
+ "flagged_pattern": "Roca Redonda 22\" Pillow Carbon&Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5974",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROLLING HILLS 18\" PILLOW Blue",
+ "flagged_pattern": "Rolling Hills 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5984",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROBERT BURNS PILLOW Multi",
+ "flagged_pattern": "Rolling Hills 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6014",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Royal Silk Embroidery Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6024",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROLLING HILLS PILLOW Blues",
+ "flagged_pattern": "Royal Silk Embroidery Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6034",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROLLING HILLS PILLOW Blues",
+ "flagged_pattern": "Royal Silk Embroidery Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6044",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Royal Silk Embroidery Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6054",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Royal Silk Embroidery Pillow Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6064",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Rubia Embroidery 16\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6074",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Rubia Embroidery 18\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6084",
+ "vendor": "Schumacher",
+ "mfr_sku": "ROYAL SILK EMBROIDERY PILLOW Multi",
+ "flagged_pattern": "Safari Epingle 18\" Pillow Snow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6114",
+ "vendor": "Schumacher",
+ "mfr_sku": "SAMAR IKAT VELVET PILLOW Gold",
+ "flagged_pattern": "Samar Ikat Velvet Pillow Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6124",
+ "vendor": "Schumacher",
+ "mfr_sku": "SAMBAR 20\" PILLOW Black&Gold",
+ "flagged_pattern": "Sambar 20\" Pillow Black&Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6144",
+ "vendor": "Schumacher",
+ "mfr_sku": "SAMAR IKAT VELVET PILLOW Gold",
+ "flagged_pattern": "Sandor Stripe Embroidery Pillow Magenta",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6154",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANDOWAY VINE 18\" PILLOW Linen",
+ "flagged_pattern": "Sandoway Vine 18\" Pillow Linen",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6164",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANGOMAR APPLIQUE 22\" PILLOW Citron",
+ "flagged_pattern": "Sangomar Applique 22\" Pillow Citron",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6184",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANGOMAR APPLIQUE 22\" PILLOW Brown",
+ "flagged_pattern": "Sangomar Applique 22\" Pillow Brown",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6194",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA BARBARA IKAT PILLOW Indigo&White",
+ "flagged_pattern": "Santa Barbara Ikat Pillow Indigo&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6214",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA MONICA IKAT PILLOW Neutral",
+ "flagged_pattern": "Santa Monica Ikat Pillow Neutral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6224",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA BARBARA IKAT PILLOW Indigo&White",
+ "flagged_pattern": "Santa Monica Ikat Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6234",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo Blue",
+ "flagged_pattern": "Santa Monica Ikat Pillow Indigo Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6244",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA MONICA IKAT PILLOW Neutral",
+ "flagged_pattern": "Santorini Print I/O 18\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6254",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo",
+ "flagged_pattern": "Santorini Print I/O 18\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6264",
+ "vendor": "Schumacher",
+ "mfr_sku": "SANTA MONICA IKAT PILLOW Indigo Blue",
+ "flagged_pattern": "Santorini Print I/O 20\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6284",
+ "vendor": "Schumacher",
+ "mfr_sku": "SEA GRAPES 18\" PILLOW Palm",
+ "flagged_pattern": "Sea Grapes 18\" Pillow Palm",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6294",
+ "vendor": "Schumacher",
+ "mfr_sku": "SEA GRAPES 18\" PILLOW Bark",
+ "flagged_pattern": "Sea Grapes 18\" Pillow Bark",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6314",
+ "vendor": "Schumacher",
+ "mfr_sku": "SENZA SATIN STRIPE PILLOW Brown",
+ "flagged_pattern": "Senza Satin Stripe Pillow Brown",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6344",
+ "vendor": "Schumacher",
+ "mfr_sku": "SENZA SATIN STRIPE PILLOW Brown",
+ "flagged_pattern": "Servilia Stripe Pillow Aqua&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6354",
+ "vendor": "Schumacher",
+ "mfr_sku": "SERENGETI PILLOW Tigre",
+ "flagged_pattern": "Shantung Silhouette 18\" Pillow Gray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6364",
+ "vendor": "Schumacher",
+ "mfr_sku": "SERENGETI PILLOW Tigre",
+ "flagged_pattern": "Shasta Embroidery 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6374",
+ "vendor": "Schumacher",
+ "mfr_sku": "SERVILIA STRIPE PILLOW Aqua&White",
+ "flagged_pattern": "Shasta Embroidery 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6394",
+ "vendor": "Schumacher",
+ "mfr_sku": "SHENGYOU TOILE 18\" PILLOW Blue",
+ "flagged_pattern": "Shengyou Toile 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6404",
+ "vendor": "Schumacher",
+ "mfr_sku": "SHOCK WAVE 18\" PILLOW Midnight",
+ "flagged_pattern": "Shock Wave 18\" Pillow Midnight",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6414",
+ "vendor": "Schumacher",
+ "mfr_sku": "SIDONIE 22\" PILLOW Magenta",
+ "flagged_pattern": "Sidonie 22\" Pillow Magenta",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6424",
+ "vendor": "Schumacher",
+ "mfr_sku": "SIERRA 22\" PILLOW Indigo",
+ "flagged_pattern": "Sierra 22\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6434",
+ "vendor": "Schumacher",
+ "mfr_sku": "SIKAR EMBROIDERY 20\" PILLOW Sky",
+ "flagged_pattern": "Sikar Embroidery 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6444",
+ "vendor": "Schumacher",
+ "mfr_sku": "SILJAN PILLOW Ivory",
+ "flagged_pattern": "Siljan Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6454",
+ "vendor": "Schumacher",
+ "mfr_sku": "SINA STRIPE PILLOW Blue",
+ "flagged_pattern": "Sina Stripe Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6464",
+ "vendor": "Schumacher",
+ "mfr_sku": "SOLANDRA VINE 18\" PILLOW Leaf",
+ "flagged_pattern": "Solandra Vine 18\" Pillow Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6474",
+ "vendor": "Schumacher",
+ "mfr_sku": "SILJAN PILLOW Ivory",
+ "flagged_pattern": "Solandra Vine 18\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6504",
+ "vendor": "Schumacher",
+ "mfr_sku": "SONORA 20\" PILLOW Ivory",
+ "flagged_pattern": "Sonora 20\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6514",
+ "vendor": "Schumacher",
+ "mfr_sku": "SONORA 22\" PILLOW Ivory",
+ "flagged_pattern": "Sonora 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6524",
+ "vendor": "Schumacher",
+ "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+ "flagged_pattern": "Sophia Velvet Pillow Cocoa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6534",
+ "vendor": "Schumacher",
+ "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+ "flagged_pattern": "Sophia Velvet Pillow Cocoa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6544",
+ "vendor": "Schumacher",
+ "mfr_sku": "STAR EPINGLE PILLOW Blue",
+ "flagged_pattern": "Star Epingle Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6554",
+ "vendor": "Schumacher",
+ "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+ "flagged_pattern": "Starfish 18\" Pillow Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6564",
+ "vendor": "Schumacher",
+ "mfr_sku": "SOPHIA VELVET PILLOW Cocoa",
+ "flagged_pattern": "Stevie 22\" Pillow Blue&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6574",
+ "vendor": "Schumacher",
+ "mfr_sku": "STAR EPINGLE PILLOW Blue",
+ "flagged_pattern": "Summer Regatta Linen 24\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6594",
+ "vendor": "Schumacher",
+ "mfr_sku": "SUZETTE 20\" PILLOW Navy",
+ "flagged_pattern": "Suzette 20\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6604",
+ "vendor": "Schumacher",
+ "mfr_sku": "TABITHA PILLOW Pink",
+ "flagged_pattern": "Tabitha Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6614",
+ "vendor": "Schumacher",
+ "mfr_sku": "SUNBURST EMBROIDERY PILLOW Blue",
+ "flagged_pattern": "Tabitha Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6624",
+ "vendor": "Schumacher",
+ "mfr_sku": "TALITHA 18\" PILLOW Blackwork",
+ "flagged_pattern": "Talitha 18\" Pillow Blackwork",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6634",
+ "vendor": "Schumacher",
+ "mfr_sku": "TABITHA PILLOW Pink",
+ "flagged_pattern": "Talitha Pillow Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6654",
+ "vendor": "Schumacher",
+ "mfr_sku": "TALOS 22\" PILLOW Ivory",
+ "flagged_pattern": "Talos 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6674",
+ "vendor": "Schumacher",
+ "mfr_sku": "TANGIER EMBROIDERY 18\" PILLOW Silver",
+ "flagged_pattern": "Tangier Embroidery 18\" Pillow Silver",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6684",
+ "vendor": "Schumacher",
+ "mfr_sku": "TANGIER EMBROIDERY 20\" PILLOW Silver",
+ "flagged_pattern": "Tangier Embroidery 20\" Pillow Silver",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6724",
+ "vendor": "Schumacher",
+ "mfr_sku": "TAURIDE EPINGLE 22\" PILLOW Peacock",
+ "flagged_pattern": "Tauride Epingle 22\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6734",
+ "vendor": "Schumacher",
+ "mfr_sku": "TEMARA EMBROIDERED 22\" PILLOW Pomegranate",
+ "flagged_pattern": "Temara Embroidered 22\" Pillow Pomegranate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6744",
+ "vendor": "Schumacher",
+ "mfr_sku": "TEMARA EMBROIDERED PILLOW Spice",
+ "flagged_pattern": "Temara Embroidered Pillow Spice",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6754",
+ "vendor": "Schumacher",
+ "mfr_sku": "TEMARA EMBROIDERED PILLOW Pomegranate",
+ "flagged_pattern": "Temara Embroidered Pillow Pomegranate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6774",
+ "vendor": "Schumacher",
+ "mfr_sku": "TEMARA EMBROIDERED PILLOW Spice",
+ "flagged_pattern": "Terence Ikat 22\" Pillow Peacock",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6784",
+ "vendor": "Schumacher",
+ "mfr_sku": "TEMARA EMBROIDERED PILLOW Pomegranate",
+ "flagged_pattern": "Teton 20\" Pillow Snow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6804",
+ "vendor": "Schumacher",
+ "mfr_sku": "TETON 22\" PILLOW Snow",
+ "flagged_pattern": "Teton 22\" Pillow Snow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6814",
+ "vendor": "Schumacher",
+ "mfr_sku": "TETON 22\" PILLOW Sky",
+ "flagged_pattern": "Teton 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6824",
+ "vendor": "Schumacher",
+ "mfr_sku": "TETON 24\" PILLOW Snow",
+ "flagged_pattern": "Teton 24\" Pillow Snow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6834",
+ "vendor": "Schumacher",
+ "mfr_sku": "TETON 24\" PILLOW Sky",
+ "flagged_pattern": "Teton 24\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6844",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 20\" PILLOW Lettuce",
+ "flagged_pattern": "The Wave 20\" Pillow Lettuce",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6854",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 20\" PILLOW Black",
+ "flagged_pattern": "The Wave 20\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6864",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 20\" PILLOW Chocolate",
+ "flagged_pattern": "The Wave 20\" Pillow Chocolate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6874",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 20\" PILLOW Navy",
+ "flagged_pattern": "The Wave 20\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6884",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 20\" PILLOW Sky",
+ "flagged_pattern": "The Wave 20\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6894",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 22\" PILLOW Black",
+ "flagged_pattern": "The Wave 22\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6904",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 22\" PILLOW Chocolate",
+ "flagged_pattern": "The Wave 22\" Pillow Chocolate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6914",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 22\" PILLOW Navy",
+ "flagged_pattern": "The Wave 22\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6924",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 22\" PILLOW Sky",
+ "flagged_pattern": "The Wave 22\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6934",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 22\" PILLOW Lettuce",
+ "flagged_pattern": "The Wave 22\" Pillow Lettuce",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6944",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 24\" PILLOW Lettuce",
+ "flagged_pattern": "The Wave 24\" Pillow Lettuce",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6954",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 24\" PILLOW Black",
+ "flagged_pattern": "The Wave 24\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6964",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 24\" PILLOW Chocolate",
+ "flagged_pattern": "The Wave 24\" Pillow Chocolate",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6974",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 24\" PILLOW Navy",
+ "flagged_pattern": "The Wave 24\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6984",
+ "vendor": "Schumacher",
+ "mfr_sku": "THE WAVE 24\" PILLOW Sky",
+ "flagged_pattern": "The Wave 24\" Pillow Sky",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-6994",
+ "vendor": "Schumacher",
+ "mfr_sku": "TIANA EMBROIDERY 20\" PILLOW Natural",
+ "flagged_pattern": "Tiana Embroidery 20\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7004",
+ "vendor": "Schumacher",
+ "mfr_sku": "TIANA EMBROIDERY 22\" PILLOW Natural",
+ "flagged_pattern": "Tiana Embroidery 22\" Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7014",
+ "vendor": "Schumacher",
+ "mfr_sku": "TIASQUAM 20\" PILLOW Blue",
+ "flagged_pattern": "Tiasquam 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7024",
+ "vendor": "Schumacher",
+ "mfr_sku": "TIM TIM & MODERN TOILE PILLOW Black",
+ "flagged_pattern": "Tim Tim & Modern Toile Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7034",
+ "vendor": "Schumacher",
+ "mfr_sku": "TIM TIM PILLOW Greige",
+ "flagged_pattern": "Tim Tim Pillow Greige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7074",
+ "vendor": "Schumacher",
+ "mfr_sku": "TING TING & BODHI TREE PILLOW Blue&Pink",
+ "flagged_pattern": "Toile De La Prairie 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7084",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOILE TROPIQUE 20\" PILLOW Black",
+ "flagged_pattern": "Toile Tropique 20\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7094",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOILE TROPIQUE 20\" PILLOW Gold",
+ "flagged_pattern": "Toile Tropique 20\" Pillow Gold",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7104",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOLEDO 22\" PILLOW Noir",
+ "flagged_pattern": "Toledo 22\" Pillow Noir",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7124",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOLEDO PILLOW Noir",
+ "flagged_pattern": "Toledo Pillow Noir",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7134",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOPI 22\" PILLOW Sienna",
+ "flagged_pattern": "Topi 22\" Pillow Sienna",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7144",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOLEDO PILLOW Chambray&White",
+ "flagged_pattern": "Tortola I/O 18\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7154",
+ "vendor": "Schumacher",
+ "mfr_sku": "TOLEDO PILLOW Noir",
+ "flagged_pattern": "Tortola I/O 20\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7164",
+ "vendor": "Schumacher",
+ "mfr_sku": "TORTOLA I/O 24\" PILLOW Marine",
+ "flagged_pattern": "Tortola I/O 24\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7184",
+ "vendor": "Schumacher",
+ "mfr_sku": "TREE RIVER PILLOW Blue&White",
+ "flagged_pattern": "Tree River Pillow Blue&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7194",
+ "vendor": "Schumacher",
+ "mfr_sku": "TRISTAN PATCHWORK 20\" PILLOW Indigo",
+ "flagged_pattern": "Tristan Patchwork 20\" Pillow Indigo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7224",
+ "vendor": "Schumacher",
+ "mfr_sku": "TROPIQUE 18\" PILLOW Blush",
+ "flagged_pattern": "Tropique 18\" Pillow Blush",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7234",
+ "vendor": "Schumacher",
+ "mfr_sku": "TULIP FLAMESTITCH PILLOW Blue",
+ "flagged_pattern": "Tulip Flamestitch Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7244",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUMBLE WEED EPINGLE 22\" PILLOW Delft",
+ "flagged_pattern": "Tumble Weed Epingle 22\" Pillow Delft",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7254",
+ "vendor": "Schumacher",
+ "mfr_sku": "TURKESTAN EMBROIDERY 20\" PILLOW Moonstone",
+ "flagged_pattern": "Turkestan Embroidery 20\" Pillow Moonstone",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7264",
+ "vendor": "Schumacher",
+ "mfr_sku": "TULIP FLAMESTITCH PILLOW Blue",
+ "flagged_pattern": "Tutsi 20\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7274",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI 22\" PILLOW Ivory",
+ "flagged_pattern": "Tutsi 22\" Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7284",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI PILLOW Ivory",
+ "flagged_pattern": "Tutsi Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7294",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI PILLOW Ivory",
+ "flagged_pattern": "Tutsi Pillow Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7304",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI PILLOW Green",
+ "flagged_pattern": "Tutsi Pillow Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7324",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI PILLOW Ivory",
+ "flagged_pattern": "Vanderbilt Velvet 18\" Pillow Lettuce",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7334",
+ "vendor": "Schumacher",
+ "mfr_sku": "TUTSI PILLOW Green",
+ "flagged_pattern": "Vanderbilt Velvet 18\" Pillow Dove",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7344",
+ "vendor": "Schumacher",
+ "mfr_sku": "UNION FLAG PILLOW Midnight",
+ "flagged_pattern": "Vanderbilt Velvet 20\" Pillow Dove",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7364",
+ "vendor": "Schumacher",
+ "mfr_sku": "VANDERBILT VELVET 20\" PILLOW Marine",
+ "flagged_pattern": "Vanderbilt Velvet 20\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7374",
+ "vendor": "Schumacher",
+ "mfr_sku": "VANDERBILT VELVET 22\" PILLOW Marine",
+ "flagged_pattern": "Vanderbilt Velvet 22\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7384",
+ "vendor": "Schumacher",
+ "mfr_sku": "VANDERBILT VELVET 24\" PILLOW Marine",
+ "flagged_pattern": "Vanderbilt Velvet 24\" Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7404",
+ "vendor": "Schumacher",
+ "mfr_sku": "VANDERBILT VELVET PILLOW Marine",
+ "flagged_pattern": "Vanderbilt Velvet Pillow Marine",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7414",
+ "vendor": "Schumacher",
+ "mfr_sku": "VEDADO IKAT 20\" PILLOW Pink",
+ "flagged_pattern": "Vedado Ikat 20\" Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7424",
+ "vendor": "Schumacher",
+ "mfr_sku": "VANDERBILT VELVET PILLOW Lettuce",
+ "flagged_pattern": "Vedado Ikat 22\" Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7454",
+ "vendor": "Schumacher",
+ "mfr_sku": "VEDADO IKAT 24\" PILLOW Pink",
+ "flagged_pattern": "Vedado Ikat 24\" Pillow Pink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7464",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 18\" PILLOW Mink",
+ "flagged_pattern": "Venetian Silk Velvet 18\" Pillow Mink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7474",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 18\" PILLOW Graphite",
+ "flagged_pattern": "Venetian Silk Velvet 18\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7504",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 20\" PILLOW Mink",
+ "flagged_pattern": "Venetian Silk Velvet 20\" Pillow Mink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7514",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 20\" PILLOW Graphite",
+ "flagged_pattern": "Venetian Silk Velvet 20\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7544",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 22\" PILLOW Mink",
+ "flagged_pattern": "Venetian Silk Velvet 22\" Pillow Mink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7554",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 22\" PILLOW Graphite",
+ "flagged_pattern": "Venetian Silk Velvet 22\" Pillow Graphite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7574",
+ "vendor": "Schumacher",
+ "mfr_sku": "VENETIAN SILK VELVET 24\" PILLOW Mink",
+ "flagged_pattern": "Venetian Silk Velvet 24\" Pillow Mink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7604",
+ "vendor": "Schumacher",
+ "mfr_sku": "VINKA EMBROIDERY PILLOW Red&Black",
+ "flagged_pattern": "Vinka Embroidery Pillow Red&Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7614",
+ "vendor": "Schumacher",
+ "mfr_sku": "VINKA EMBROIDERY PILLOW Pink&Yellow",
+ "flagged_pattern": "Vinka Embroidery Pillow Pink&Yellow",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7624",
+ "vendor": "Schumacher",
+ "mfr_sku": "WALKER 18\" PILLOW Blues",
+ "flagged_pattern": "Walker 18\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7634",
+ "vendor": "Schumacher",
+ "mfr_sku": "VINKA EMBROIDERY PILLOW Red&Black",
+ "flagged_pattern": "Walker 20\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7644",
+ "vendor": "Schumacher",
+ "mfr_sku": "VINKA EMBROIDERY PILLOW Pink&Yellow",
+ "flagged_pattern": "Walker 22\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7654",
+ "vendor": "Schumacher",
+ "mfr_sku": "WALKER 24\" PILLOW Blues",
+ "flagged_pattern": "Walker 24\" Pillow Blues",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7664",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Chambray",
+ "flagged_pattern": "Wentworth Embroidery Pillow Chambray",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7674",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Natural",
+ "flagged_pattern": "Wentworth Embroidery Pillow Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7684",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Rose",
+ "flagged_pattern": "Wentworth Embroidery Pillow Rose",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7694",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Chambray",
+ "flagged_pattern": "Wentworth Embroidery Pillow Carbon",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7704",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Natural",
+ "flagged_pattern": "Wentworth Embroidery Pillow Rust",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7714",
+ "vendor": "Schumacher",
+ "mfr_sku": "WENTWORTH EMBROIDERY PILLOW Rose",
+ "flagged_pattern": "Wilhelm 16\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7764",
+ "vendor": "Schumacher",
+ "mfr_sku": "WOODLAND SILHOUETTE 20\" PILLOW Blue",
+ "flagged_pattern": "Woodland Silhouette 20\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7774",
+ "vendor": "Schumacher",
+ "mfr_sku": "WOODLAND LEOPARD VELVET PILLOW Mineral&Gold",
+ "flagged_pattern": "Woodperry 18\" Pillow Pink&Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7784",
+ "vendor": "Schumacher",
+ "mfr_sku": "WOODPERRY 18\" PILLOW Blue",
+ "flagged_pattern": "Woodperry 18\" Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7804",
+ "vendor": "Schumacher",
+ "mfr_sku": "WOODPERRY 20\" PILLOW Pink&Natural",
+ "flagged_pattern": "Woodperry 20\" Pillow Pink&Natural",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7814",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZANZIBAR LINEN PRINT 18\" PILLOW Cerulean",
+ "flagged_pattern": "Zanzibar Linen Print 18\" Pillow Cerulean",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7824",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZANZIBAR LINEN PRINT 18\" PILLOW Hyacinth",
+ "flagged_pattern": "Zanzibar Linen Print 18\" Pillow Hyacinth",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7864",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZEALAND CHECK 16\" PILLOW Navy",
+ "flagged_pattern": "Zealand Check 16\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7874",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZARZUELA EMBROIDERY PILLOW Indigo",
+ "flagged_pattern": "Zealand Check 18\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7884",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZARZUELA EMBROIDERY PILLOW Saffron",
+ "flagged_pattern": "Zealand Check 20\" Pillow Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7894",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZEBRA PALM I/O 16\" PILLOW Leaf",
+ "flagged_pattern": "Zebra Palm I/O 16\" Pillow Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7904",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZEBRA PALM I/O 16\" PILLOW Black",
+ "flagged_pattern": "Zebra Palm I/O 16\" Pillow Black",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7914",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZELLA PILLOW Green&White",
+ "flagged_pattern": "Zella Pillow Green&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7924",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZENYATTA MONDATTA 18\" PILLOW Noir&Blanc",
+ "flagged_pattern": "Zenyatta Mondatta 18\" Pillow Noir&Blanc",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7944",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZELLA PILLOW Green&White",
+ "flagged_pattern": "Ziggurat Pillow Blue&Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7954",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZIMBA 18\" PILLOW Charcoal&White",
+ "flagged_pattern": "Zimba 18\" Pillow Charcoal&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7964",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZIMBA 20\" PILLOW Charcoal&White",
+ "flagged_pattern": "Zimba 20\" Pillow Charcoal&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7984",
+ "vendor": "Schumacher",
+ "mfr_sku": "ZINNIA HANDMADE PRINT PILLOW Blue",
+ "flagged_pattern": "Zinnia Hndmade Print Pillow Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-7990",
+ "vendor": "Schumacher",
+ "mfr_sku": "DWPIL-7963",
+ "flagged_pattern": "Ziz Embroidery 18\" Pillow Green&White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWPIL-5474",
+ "vendor": "Schumacher",
+ "mfr_sku": "PAVONE VELVET PILLOW Peacock&Sand",
+ "flagged_pattern": "Pavone Velvet Pillow Peacock&Sand",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73582",
+ "vendor": "Anna French",
+ "mfr_sku": "73582",
+ "flagged_pattern": "William's Willow Branches",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73583",
+ "vendor": "Anna French",
+ "mfr_sku": "73583",
+ "flagged_pattern": "William's Willow Branches",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73593",
+ "vendor": "Anna French",
+ "mfr_sku": "73593",
+ "flagged_pattern": "Gingko Elegante Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73594",
+ "vendor": "Anna French",
+ "mfr_sku": "73594",
+ "flagged_pattern": "Gingko Elegante Leaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73597",
+ "vendor": "Anna French",
+ "mfr_sku": "73597",
+ "flagged_pattern": "Hiyacinth Harlequin Diamond",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73598",
+ "vendor": "Anna French",
+ "mfr_sku": "73598",
+ "flagged_pattern": "Hiyacinth Harlequin Diamond",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73607",
+ "vendor": "Anna French",
+ "mfr_sku": "73607",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73608",
+ "vendor": "Anna French",
+ "mfr_sku": "73608",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73609",
+ "vendor": "Anna French",
+ "mfr_sku": "73609",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73610",
+ "vendor": "Anna French",
+ "mfr_sku": "73610",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73611",
+ "vendor": "Anna French",
+ "mfr_sku": "73611",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73612",
+ "vendor": "Anna French",
+ "mfr_sku": "73612",
+ "flagged_pattern": "Piza Pussy Willows",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73613",
+ "vendor": "Anna French",
+ "mfr_sku": "73613",
+ "flagged_pattern": "Cynthia's Chinese Lanterns",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73614",
+ "vendor": "Anna French",
+ "mfr_sku": "73614",
+ "flagged_pattern": "Cynthia's Chinese Lanterns",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73615",
+ "vendor": "Anna French",
+ "mfr_sku": "73615",
+ "flagged_pattern": "Cynthia's Chinese Lanterns",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73616",
+ "vendor": "Anna French",
+ "mfr_sku": "73616",
+ "flagged_pattern": "Cynthia's Chinese Lanterns",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73625",
+ "vendor": "Anna French",
+ "mfr_sku": "73625",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73626",
+ "vendor": "Anna French",
+ "mfr_sku": "73626",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73627",
+ "vendor": "Anna French",
+ "mfr_sku": "73627",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73628",
+ "vendor": "Anna French",
+ "mfr_sku": "73628",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73629",
+ "vendor": "Anna French",
+ "mfr_sku": "73629",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73630",
+ "vendor": "Anna French",
+ "mfr_sku": "73630",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73631",
+ "vendor": "Anna French",
+ "mfr_sku": "73631",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73633",
+ "vendor": "Anna French",
+ "mfr_sku": "73633",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73634",
+ "vendor": "Anna French",
+ "mfr_sku": "73634",
+ "flagged_pattern": "Samantha's Striated Stripe",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ROP-73635",
+ "vendor": "Anna French",
+ "mfr_sku": "73635",
+ "flagged_pattern": "Infatuation With Flowers",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65057-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "ATM24573",
+ "flagged_pattern": "SAVERY MURAL WALLPAPER BLUE (ATM24573)",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65058-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "ATM24571",
+ "flagged_pattern": "SAVERY MURAL (ATM24571)",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65059-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "ATM24572",
+ "flagged_pattern": "SAVERY MURAL WALLPAPER",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65212-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9866",
+ "flagged_pattern": "Tree House",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Tree House",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 184.0,
+ "computed_price": 333.03,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWTA-65231-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9621",
+ "flagged_pattern": "Cleo Vine Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65236-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9615",
+ "flagged_pattern": "Colburn Chevron Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65239-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9614",
+ "flagged_pattern": "Colburn Chevron Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65243-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9658",
+ "flagged_pattern": "Gaya Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65250-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9635",
+ "flagged_pattern": "Herriot Way Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65251-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9636",
+ "flagged_pattern": "Herriot Way Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65253-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9671",
+ "flagged_pattern": "Ombre Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65270-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9609",
+ "flagged_pattern": "Riva Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65271-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9610",
+ "flagged_pattern": "Riva Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65279-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9688",
+ "flagged_pattern": "Seton Scallop Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65281-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9689",
+ "flagged_pattern": "Seton Scallop Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65283-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9687",
+ "flagged_pattern": "Seton Scallop Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65313-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78790",
+ "flagged_pattern": "Gibson Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65315-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78757",
+ "flagged_pattern": "Jouy Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65316-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78758",
+ "flagged_pattern": "Jouy Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65317-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78751",
+ "flagged_pattern": "Jouy Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65318-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78760",
+ "flagged_pattern": "Jouy Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65319-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78703",
+ "flagged_pattern": "Jules Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65325-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78706",
+ "flagged_pattern": "Jules Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65326-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78705",
+ "flagged_pattern": "Jules Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65332-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78747",
+ "flagged_pattern": "Kahna Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65339-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78731",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65352-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78756",
+ "flagged_pattern": "Mini Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65354-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78755",
+ "flagged_pattern": "Mini Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65355-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78754",
+ "flagged_pattern": "Mini Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65357-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78720",
+ "flagged_pattern": "Montecito Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65360-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78722",
+ "flagged_pattern": "Montecito Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65361-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78768",
+ "flagged_pattern": "Montecito Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65367-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78735",
+ "flagged_pattern": "Tansman Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65371-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78762",
+ "flagged_pattern": "Vero Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65373-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78765",
+ "flagged_pattern": "Vero Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65374-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78767",
+ "flagged_pattern": "Vero Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65376-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78764",
+ "flagged_pattern": "Vero Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65379-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79179",
+ "flagged_pattern": "Arlen Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65382-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79174",
+ "flagged_pattern": "Arlen Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65387-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79133",
+ "flagged_pattern": "Balin Ikat Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65388-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79136",
+ "flagged_pattern": "Balin Ikat Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65395-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79125",
+ "flagged_pattern": "Baxter Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65399-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79116",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65400-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79120",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65401-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79123",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65405-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79119",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65424-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79137",
+ "flagged_pattern": "Fairfield Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65432-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79171",
+ "flagged_pattern": "Legrelle Bead Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65438-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79149",
+ "flagged_pattern": "Leland Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65439-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79146",
+ "flagged_pattern": "Leland Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65448-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79186",
+ "flagged_pattern": "Manor Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65452-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79156",
+ "flagged_pattern": "Spencer Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65459-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7909",
+ "flagged_pattern": "Burmese Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65467-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7920",
+ "flagged_pattern": "Mamba Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65474-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7943",
+ "flagged_pattern": "Margate Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65485-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7923",
+ "flagged_pattern": "Plumes Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65490-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7934",
+ "flagged_pattern": "Violage Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65506-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6109",
+ "flagged_pattern": "Clarissa Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65513-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6138",
+ "flagged_pattern": "Dawson Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65516-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6112",
+ "flagged_pattern": "Mallorca Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65517-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6113",
+ "flagged_pattern": "Mallorca Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65533-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6019",
+ "flagged_pattern": "Brock Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65535-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6017",
+ "flagged_pattern": "Brock Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65536-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6042",
+ "flagged_pattern": "Garden Silhouette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65537-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6043",
+ "flagged_pattern": "Garden Silhouette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65539-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6039",
+ "flagged_pattern": "Garden Silhouette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65540-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6040",
+ "flagged_pattern": "Garden Silhouette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65541-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6059",
+ "flagged_pattern": "Klein Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65543-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6058",
+ "flagged_pattern": "Klein Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65544-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6055",
+ "flagged_pattern": "Klein Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65546-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6057",
+ "flagged_pattern": "Klein Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65549-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6051",
+ "flagged_pattern": "Palace Gate Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65550-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6049",
+ "flagged_pattern": "Palace Gate Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65552-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6050",
+ "flagged_pattern": "Palace Gate Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65556-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6023",
+ "flagged_pattern": "Seraphina Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65557-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6046",
+ "flagged_pattern": "Spotted Orchid Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65558-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6045",
+ "flagged_pattern": "Spotted Orchid Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65559-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6044",
+ "flagged_pattern": "Spotted Orchid Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65561-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6016",
+ "flagged_pattern": "Surrey Woods Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65565-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6013",
+ "flagged_pattern": "Surrey Woods Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65568-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6010",
+ "flagged_pattern": "Verey Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65569-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6007",
+ "flagged_pattern": "Verey Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65570-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6006",
+ "flagged_pattern": "Verey Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65571-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6011",
+ "flagged_pattern": "Verey Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65572-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6012",
+ "flagged_pattern": "Verey Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65573-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6005",
+ "flagged_pattern": "Winfell Forest Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65575-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6004",
+ "flagged_pattern": "Winfell Forest Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65576-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6000",
+ "flagged_pattern": "Winfell Forest Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65578-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6001",
+ "flagged_pattern": "Winfell Forest Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65580-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6036",
+ "flagged_pattern": "Zane Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65581-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6037",
+ "flagged_pattern": "Zane Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65583-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6033",
+ "flagged_pattern": "Zane Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65585-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6034",
+ "flagged_pattern": "Zane Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65586-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34119",
+ "flagged_pattern": "Abington Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65588-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34115",
+ "flagged_pattern": "Abington Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65589-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34114",
+ "flagged_pattern": "Abington Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65590-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34116",
+ "flagged_pattern": "Abington Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65592-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34113",
+ "flagged_pattern": "Abington Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65599-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34110",
+ "flagged_pattern": "Annette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65600-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34105",
+ "flagged_pattern": "Annette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65601-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34136",
+ "flagged_pattern": "Cantal Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65607-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34103",
+ "flagged_pattern": "Cholla Sisal Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65610-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34104",
+ "flagged_pattern": "Cholla Sisal Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65611-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34102",
+ "flagged_pattern": "Cholla Sisal Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65613-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34146",
+ "flagged_pattern": "Deilen Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65616-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34148",
+ "flagged_pattern": "Deilen Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65619-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34126",
+ "flagged_pattern": "Livorette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65620-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34131",
+ "flagged_pattern": "Livorette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65622-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34130",
+ "flagged_pattern": "Livorette Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65625-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34138",
+ "flagged_pattern": "Rue De Seine Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65629-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34157",
+ "flagged_pattern": "Tuileries Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65630-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34158",
+ "flagged_pattern": "Tuileries Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65631-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34154",
+ "flagged_pattern": "Tuileries Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65632-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34155",
+ "flagged_pattern": "Tuileries Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65633-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34156",
+ "flagged_pattern": "Tuileries Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65634-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34153",
+ "flagged_pattern": "Tyndall Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65635-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34149",
+ "flagged_pattern": "Tyndall Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65636-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34150",
+ "flagged_pattern": "Tyndall Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65637-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34152",
+ "flagged_pattern": "Tyndall Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65638-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34151",
+ "flagged_pattern": "Tyndall Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65639-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34122",
+ "flagged_pattern": "Zola Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65641-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT34125",
+ "flagged_pattern": "Zola Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65648-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT1452",
+ "flagged_pattern": "Arran Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65649-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT1448",
+ "flagged_pattern": "Arran Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65651-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT1407",
+ "flagged_pattern": "Barafundle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65652-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT1409",
+ "flagged_pattern": "Barafundle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65323-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78702",
+ "flagged_pattern": "Jules Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65340-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78795",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65341-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78730",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65342-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78728",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65343-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78729",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65344-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78727",
+ "flagged_pattern": "La Provence Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65368-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT78733",
+ "flagged_pattern": "Tansman Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65378-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79176",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65383-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79178",
+ "flagged_pattern": "Arlen Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65385-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79177",
+ "flagged_pattern": "Arlen Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65390-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79134",
+ "flagged_pattern": "Balin Ikat Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65392-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79135",
+ "flagged_pattern": "Balin Ikat Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65397-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79128",
+ "flagged_pattern": "Baxter Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65403-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79122",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65404-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79115",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65407-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79118",
+ "flagged_pattern": "Bridle Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65416-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79162",
+ "flagged_pattern": "Davis Dot Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65418-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79166",
+ "flagged_pattern": "Davis Dot Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65420-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79167",
+ "flagged_pattern": "Davis Dot Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65426-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79143",
+ "flagged_pattern": "Fairfield Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65427-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79140",
+ "flagged_pattern": "Fairfield Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65435-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79148",
+ "flagged_pattern": "Leland Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65437-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79145",
+ "flagged_pattern": "Leland Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65440-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79147",
+ "flagged_pattern": "Leland Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65449-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79153",
+ "flagged_pattern": "Spencer Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65453-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79155",
+ "flagged_pattern": "Spencer Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65455-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7906",
+ "flagged_pattern": "Burmese Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65456-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7908",
+ "flagged_pattern": "Burmese Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65462-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7937",
+ "flagged_pattern": "Cirrus Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65463-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7938",
+ "flagged_pattern": "Cirrus Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65465-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7936",
+ "flagged_pattern": "Cirrus Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65468-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7921",
+ "flagged_pattern": "Mamba Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65473-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7945",
+ "flagged_pattern": "Margate Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65476-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7905",
+ "flagged_pattern": "Onda Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65478-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7904",
+ "flagged_pattern": "Onda Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65480-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7902",
+ "flagged_pattern": "Onda Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65481-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7924",
+ "flagged_pattern": "Plumes Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65483-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7926",
+ "flagged_pattern": "Plumes Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65492-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7949",
+ "flagged_pattern": "Watercourse Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65495-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7913",
+ "flagged_pattern": "Willow Wood Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65498-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT7916",
+ "flagged_pattern": "Willow Wood Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65507-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6107",
+ "flagged_pattern": "Clarissa Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65508-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6110",
+ "flagged_pattern": "Clarissa Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65509-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6108",
+ "flagged_pattern": "Clarissa Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65510-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6106",
+ "flagged_pattern": "Clarissa Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65511-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6139",
+ "flagged_pattern": "Dawson Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65512-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6137",
+ "flagged_pattern": "Dawson Stripe Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65518-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6111",
+ "flagged_pattern": "Mallorca Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65519-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6115",
+ "flagged_pattern": "Mallorca Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65521-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6114",
+ "flagged_pattern": "Mallorca Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65523-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6031",
+ "flagged_pattern": "Braxton Texture Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65524-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6030",
+ "flagged_pattern": "Braxton Texture Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65525-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6028",
+ "flagged_pattern": "Braxton Texture Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65526-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6029",
+ "flagged_pattern": "Braxton Texture Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65528-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6021",
+ "flagged_pattern": "Brock Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTA-65529-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT6022",
+ "flagged_pattern": "Brock Trellis Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-80986-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9829",
+ "flagged_pattern": "Kyoto Asian Branches Black Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-81011-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9856",
+ "flagged_pattern": "Kimono Geometric Robin'S Egg Aqua Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-81025-SAMPLE",
+ "vendor": "Anna French",
+ "mfr_sku": "AT9870",
+ "flagged_pattern": "Wallpaper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AT79183",
+ "vendor": "Anna French",
+ "mfr_sku": "AT79183",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9829",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9829",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24553",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24553",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15169",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15169",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9633",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9633",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15171",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15171",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15170",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15170",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15172",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15172",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24556",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24556",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78732",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78732",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78733",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78733",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9619",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9619",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9814",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9814",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15108",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15108",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15110",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15110",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15111",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15111",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72992",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72992",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72993",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72993",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72994",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72994",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72995",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72995",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72996",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72996",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57862",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57862",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57860",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57860",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78734",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78734",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72984",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72984",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78736",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78736",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9647",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9647",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9825",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9825",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9817",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9817",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24544",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24544",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9629",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9629",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9630",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9630",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23123",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23123",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23163",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23163",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78703",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78703",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78725",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78725",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78704",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78704",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9632",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9632",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78705",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78705",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23137",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23137",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9636",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9636",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23133",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23133",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23141",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23141",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23134",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23134",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23136",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23136",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78726",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78726",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23138",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23138",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23125",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23125",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9621",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9621",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23122",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23122",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78731",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78731",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9620",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9620",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9616",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9616",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78717",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78717",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78738",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78738",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23157",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23157",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15120",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15120",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15121",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15121",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15122",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15122",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15124",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15124",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23106",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23106",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23109",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23109",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23124",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23124",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16170",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16170",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16167",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16167",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16168",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16168",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16169",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16169",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23148",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23148",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23145",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23145",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23149",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23149",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57852",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57852",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57850",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57850",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57854",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57854",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9822",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9822",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9813",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9813",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23143",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23143",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23139",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23139",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16124",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16124",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9823",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9823",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9818",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9818",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16127",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16127",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72982",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72982",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72983",
+ "vendor": "Anna French",
+ "mfr_sku": "AF72983",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9819",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9819",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9821",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9821",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16128",
+ "vendor": "Anna French",
+ "mfr_sku": "AF16128",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9654",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9654",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78714",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78714",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9816",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9816",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9646",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9646",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9641",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9641",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9638",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9638",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23142",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23142",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23121",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23121",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9815",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9815",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9824",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9824",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9642",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9642",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9618",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9618",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9820",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9820",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23140",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23140",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23146",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23146",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24536",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24536",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24539",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24539",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9863",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9863",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9864",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9864",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9865",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9865",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF73032",
+ "vendor": "Anna French",
+ "mfr_sku": "AF73032",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57858",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57858",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24535",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24535",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23107",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23107",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23108",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23108",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23110",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23110",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23111",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23111",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24561",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24561",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15123",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15123",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15119",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15119",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9617",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9617",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9833",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9833",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15164",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15164",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57853",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57853",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23132",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23132",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23135",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23135",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57851",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57851",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9826",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9826",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23150",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23150",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF57861",
+ "vendor": "Anna French",
+ "mfr_sku": "AF57861",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9635",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9635",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23147",
+ "vendor": "Anna French",
+ "mfr_sku": "AF23147",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24560",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24560",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9643",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9643",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9637",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9637",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9644",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9644",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78740",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78740",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24537",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24537",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24538",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24538",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15112",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15112",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15107",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15107",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9827",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9827",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9828",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9828",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15109",
+ "vendor": "Anna French",
+ "mfr_sku": "AF15109",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9831",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9831",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9860",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9860",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9622",
+ "vendor": "Anna French",
+ "mfr_sku": "AF9622",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24540",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24540",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78737",
+ "vendor": "Anna French",
+ "mfr_sku": "AF78737",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24562",
+ "vendor": "Anna French",
+ "mfr_sku": "AF24562",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-ACT-5065",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5065",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5066",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5066",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5067",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5067",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5068",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5068",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5070",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5070",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5071",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5071",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5072",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5072",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5073",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5073",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5074",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5074",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5075",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5075",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5076",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5076",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5077",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5077",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5078",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5078",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5079",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5079",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5080",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5080",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ACT-5081",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ACT-5081",
+ "flagged_pattern": "Acute",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Acute",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 30.25,
+ "computed_price": 54.75,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ALC-4816",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ALC-4816",
+ "flagged_pattern": "Alchemy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Alchemy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ALC-4820",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ALC-4820",
+ "flagged_pattern": "Alchemy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Alchemy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ALC-4824",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ALC-4824",
+ "flagged_pattern": "Alchemy",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Alchemy",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ATP-4701",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ATP-4701",
+ "flagged_pattern": "Allotrope",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Allotrope",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BBO-4954",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BBO-4954",
+ "flagged_pattern": "Bilbao",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bilbao",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BBO-4955",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BBO-4955",
+ "flagged_pattern": "Bilbao",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bilbao",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BDC-4022",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BDC-4022",
+ "flagged_pattern": "Broadcloth",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Broadcloth",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.5,
+ "computed_price": 75.11,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5015M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5015M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5016",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5016",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5017",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5017",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5018",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5018",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5019M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5019M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5020M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5020M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5021M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5021M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5022",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5022",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5023",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5023",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5024",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5024",
+ "flagged_pattern": "Ballari",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 34.5,
+ "computed_price": 62.44,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5025M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5025M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5026M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5026M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BLR-5027M",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BLR-5027M",
+ "flagged_pattern": "Ballari Mylar",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ballari Mylar",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.75,
+ "computed_price": 77.38,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BOD-3438_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BOD-3438_8",
+ "flagged_pattern": "Bode",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Bode",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-BOS-4399_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "BOS-4399_8",
+ "flagged_pattern": "Boscage",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Boscage",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2670",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2670",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2671",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2671",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2672",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2672",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2673",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2673",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2674",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2674",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2675",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2675",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2676",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2676",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2677",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2677",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2678",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2678",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2679",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2679",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2680",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2680",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CCT-2681",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CCT-2681",
+ "flagged_pattern": "Connections",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Connections",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-COC2474",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "COC2474",
+ "flagged_pattern": "Concourse",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Concourse",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-CSD-4853",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "CSD-4853",
+ "flagged_pattern": "Cascade",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Cascade",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DCHY-560",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DCHY-560",
+ "flagged_pattern": "Chrysocolla",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DCHY-561",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DCHY-561",
+ "flagged_pattern": "Chrysocolla",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DCHY-562",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DCHY-562",
+ "flagged_pattern": "Chrysocolla",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DCPA-450",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DCPA-450",
+ "flagged_pattern": "Catalpa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DECH-490",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DECH-490",
+ "flagged_pattern": "Digital Echo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Digital Echo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DECH-491",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DECH-491",
+ "flagged_pattern": "Digital Echo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Digital Echo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DGBJ-530",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DGBJ-530",
+ "flagged_pattern": "Green Bog Jasper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DGBJ-531",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DGBJ-531",
+ "flagged_pattern": "Green Bog Jasper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DGBJ-532",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DGBJ-532",
+ "flagged_pattern": "Green Bog Jasper",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DNUV-511",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DNUV-511",
+ "flagged_pattern": "Digital Nouveau",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Digital Nouveau",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DNUV-512",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DNUV-512",
+ "flagged_pattern": "Digital Nouveau",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Digital Nouveau",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DOXM-550",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DOXM-550",
+ "flagged_pattern": "Onyx Mexicano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DOXM-551",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DOXM-551",
+ "flagged_pattern": "Onyx Mexicano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DOXM-552",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DOXM-552",
+ "flagged_pattern": "Onyx Mexicano",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DPAW-460",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPAW-460",
+ "flagged_pattern": "Pawpaw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DPAW-461",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPAW-461",
+ "flagged_pattern": "Pawpaw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DPAW-462",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPAW-462",
+ "flagged_pattern": "Pawpaw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DPRH-500",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPRH-500",
+ "flagged_pattern": "Perch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DPRH-501",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPRH-501",
+ "flagged_pattern": "Perch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DPRH-502",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DPRH-502",
+ "flagged_pattern": "Perch",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Perch",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 74.95,
+ "computed_price": 135.66,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5037",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5037",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5038",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5038",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5039",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5039",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5040",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5040",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5041",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5041",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5042",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5042",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5043",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5043",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5044",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5044",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5045",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5045",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5046",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5046",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5047",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5047",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5048",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5048",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5049",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5049",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5050",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5050",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5051",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5051",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5052",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5052",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSM-5053",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSM-5053",
+ "flagged_pattern": "Dasma",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Dasma",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DSTM-540",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSTM-540",
+ "flagged_pattern": "Stromatolite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DSTM-541",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSTM-541",
+ "flagged_pattern": "Stromatolite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DSTM-542",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DSTM-542",
+ "flagged_pattern": "Stromatolite",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTAM-470",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTAM-470",
+ "flagged_pattern": "Tamarack",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTAM-471",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTAM-471",
+ "flagged_pattern": "Tamarack",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTON-401",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTON-401",
+ "flagged_pattern": "Tone",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTUP-480",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTUP-480",
+ "flagged_pattern": "Tupelo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTUP-481",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTUP-481",
+ "flagged_pattern": "Tupelo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DTUP-482",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DTUP-482",
+ "flagged_pattern": "Tupelo",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DVN-200",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DVN-200",
+ "flagged_pattern": "Venice",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-DVTS-520",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DVTS-520",
+ "flagged_pattern": "Vista",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vista",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DVTS-521",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DVTS-521",
+ "flagged_pattern": "Vista",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vista",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-DVTS-522",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "DVTS-522",
+ "flagged_pattern": "Vista",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vista",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRG2111",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRG2111",
+ "flagged_pattern": "Grange",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grange",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 28.95,
+ "computed_price": 52.4,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2885_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2885_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2886_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2886_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2887_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2887_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2888_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2888_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2889_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2889_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2890_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2890_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2891_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2891_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2892_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2892_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2893_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2893_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2894_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2894_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2895_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2895_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2896_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2896_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2897_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2897_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2898_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2898_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2899_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2899_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2900_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2900_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2901_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2901_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2902_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2902_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2903_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2903_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GRV-2904_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GRV-2904_8",
+ "flagged_pattern": "Grove",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Grove",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5383",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5383",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5384",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5384",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5385",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5385",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5387",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5387",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5389",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5389",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5391",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5391",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5392",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5392",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5393",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5393",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5394",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5394",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5395",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5395",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSG9-5396",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSG9-5396",
+ "flagged_pattern": "Glasgow",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Glasgow",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 37.0,
+ "computed_price": 66.97,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSQ-8-3628_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSQ-8-3628_8",
+ "flagged_pattern": "Granary Square",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Granary Square",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.75,
+ "computed_price": 59.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-GSQ-8-3635_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "GSQ-8-3635_8",
+ "flagged_pattern": "Granary Square",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Granary Square",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.75,
+ "computed_price": 59.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HOM-3388",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HOM-3388",
+ "flagged_pattern": "Holmes",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Holmes",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3313_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3313_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3314_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3314_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3315_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3315_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3316_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3316_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3317_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3317_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3318_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3318_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3319_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3319_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3320_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3320_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3321_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3321_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3322_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3322_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3323_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3323_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3324_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3324_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3325_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3325_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3326_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3326_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3327_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3327_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-HUG-3328_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "HUG-3328_8",
+ "flagged_pattern": "Hugo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Hugo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ISN-8-3432",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ISN-8-3432",
+ "flagged_pattern": "Islington Station",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Islington Station",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.75,
+ "computed_price": 59.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5366",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5366",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5367",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5367",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5368",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5368",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5369",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5369",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5370",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5370",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5371",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5371",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-JAI9-5372",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "JAI9-5372",
+ "flagged_pattern": "Jaipur",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Jaipur",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.0,
+ "computed_price": 65.16,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5096",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5096",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5097",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5097",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5098",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5098",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5099",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5099",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5100",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5100",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5101",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5101",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5102",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5102",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5103",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5103",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5104",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5104",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5105",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5105",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5106",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5106",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5107",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5107",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5108",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5108",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5109",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5109",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5110",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5110",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KAM-5111",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KAM-5111",
+ "flagged_pattern": "Kami",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kami",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5121",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5121",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5122",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5122",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5123",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5123",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5124",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5124",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5125",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5125",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5126",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5126",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-KBT-5127",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "KBT-5127",
+ "flagged_pattern": "Kabuto",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Kabuto",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.75,
+ "computed_price": 75.57,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3366_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3366_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3367_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3367_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3368_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3368_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3369_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3369_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3370_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3370_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3371_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3371_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3372_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3372_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3373_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3373_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3374_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3374_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3375_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3375_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3376_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3376_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3377_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3377_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3378_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3378_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3379_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3379_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3380_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3380_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3381_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3381_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3382_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3382_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3383_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3383_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-LYR-3384_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "LYR-3384_8",
+ "flagged_pattern": "Lyra",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Lyra",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MAO-7-4160",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MAO-7-4160",
+ "flagged_pattern": "Macao",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Macao",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 31.25,
+ "computed_price": 56.56,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-568",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-568",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-569",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-569",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-570",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-570",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-571",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-571",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-572",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-572",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-573",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-573",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-574",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-574",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-575",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-575",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-576",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-576",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-METM-577",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "METM-577",
+ "flagged_pattern": "Metamorphosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Metamorphosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.95,
+ "computed_price": 88.6,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3284_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3284_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3285_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3285_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3286_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3286_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3287_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3287_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3288_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3288_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3289_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3289_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3290_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3290_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3291_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3291_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3292_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3292_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3293_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3293_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3294_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3294_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3295_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3295_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3296_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3296_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3297_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3297_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3298_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3298_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3299_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3299_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3300_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3300_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3301_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3301_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRU-3302_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRU-3302_8",
+ "flagged_pattern": "Marlu",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Marlu",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 42.0,
+ "computed_price": 76.02,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-MRY-3173",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "MRY-3173",
+ "flagged_pattern": "Mantaray",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Mantaray",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-NES-3799",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "NES-3799",
+ "flagged_pattern": "Neso",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Neso",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 45.35,
+ "computed_price": 82.08,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-OLS-3561",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "OLS-3561",
+ "flagged_pattern": "Olsen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Olsen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-OLS-3563",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "OLS-3563",
+ "flagged_pattern": "Olsen",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Olsen",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-OSM-2650",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "OSM-2650",
+ "flagged_pattern": "Osmosis",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Osmosis",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 41.5,
+ "computed_price": 75.11,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-PHO-3761",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "PHO-3761",
+ "flagged_pattern": "Phaeo",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Phaeo",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-RON-3345",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "RON-3345",
+ "flagged_pattern": "Ronan",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Ronan",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 48.33,
+ "computed_price": 87.48,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-ROS-4146",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "ROS-4146",
+ "flagged_pattern": "Rossana",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Rossana",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.5,
+ "computed_price": 58.82,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-SDY-3345_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "SDY-3345_8",
+ "flagged_pattern": "Sadeya",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sadeya",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-SDY-3346_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "SDY-3346_8",
+ "flagged_pattern": "Sadeya",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sadeya",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-SDY-3349_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "SDY-3349_8",
+ "flagged_pattern": "Sadeya",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sadeya",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-SDY-3352_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "SDY-3352_8",
+ "flagged_pattern": "Sadeya",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Sadeya",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 36.75,
+ "computed_price": 66.52,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-VAX-8-3496",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "VAX-8-3496",
+ "flagged_pattern": "Vauxhall",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Vauxhall",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 32.75,
+ "computed_price": 59.28,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWWG-WVF-100",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WVF-100",
+ "flagged_pattern": "Wood Veneer",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WVF-119",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WVF-119",
+ "flagged_pattern": "BildenWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-200",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-200",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-202",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-202",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-203",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-203",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-204",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-204",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-205",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-205",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-206",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-206",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-207",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-207",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-208",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-208",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-209",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-209",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-210",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-210",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-212_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-212_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-213_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-213_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-214_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-214_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-215_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-215_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-216_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-216_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-217_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-217_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-218_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-218_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-219_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-219_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-220_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-220_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-221_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-221_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWG-WWDF-223_8",
+ "vendor": "Wolf Gordon",
+ "mfr_sku": "WWDF-223_8",
+ "flagged_pattern": "WonderWood\u00ae",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71000-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T71000",
+ "flagged_pattern": "Cafe Weave Navy",
+ "match_confidence": "exact",
+ "matched_pattern": "Cafe Weave Navy Wide",
+ "matched_color": "light gray",
+ "sourced_cost": 125.43,
+ "computed_price": 227.02,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWTT-70070-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F916241",
+ "flagged_pattern": "Mendoza Suzani Blue And Green On Navy Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-70360-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F920807",
+ "flagged_pattern": "Gogo Spa Blue Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-70380-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F920819",
+ "flagged_pattern": "Maverick Blue Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-70570-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F914312",
+ "flagged_pattern": "Haven Pink Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-70630-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F910844",
+ "flagged_pattern": "Chatelain Green Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71028-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92950",
+ "flagged_pattern": "Alcantara Plum Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71030-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92952",
+ "flagged_pattern": "Alcantara Orange Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71046-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92918",
+ "flagged_pattern": "Desmond Navy Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71047-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92919",
+ "flagged_pattern": "Desmond Black And Charcoal Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71049-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92921",
+ "flagged_pattern": "Desmond Beige And Grey Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71053-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92938",
+ "flagged_pattern": "Dhara Stripe Navy Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71054-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92939",
+ "flagged_pattern": "Dhara Stripe Beige And Black Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71055-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92940",
+ "flagged_pattern": "Dhara Stripe Plum Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71070-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T2979",
+ "flagged_pattern": "Ebru Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71078-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92929",
+ "flagged_pattern": "Kasai Beige Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71079-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92930",
+ "flagged_pattern": "Kasai Aqua Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71081-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92932",
+ "flagged_pattern": "Kasai Charcoal Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71083-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92934",
+ "flagged_pattern": "Kasai Navy Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71092-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92942",
+ "flagged_pattern": "Mitford Black And Plum Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71097-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92947",
+ "flagged_pattern": "Mitford Yellow Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71098-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92948",
+ "flagged_pattern": "Mitford Aqua Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71099-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F92949",
+ "flagged_pattern": "Mitford Green And White Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71160-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T4001",
+ "flagged_pattern": "Martello Aqua",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71180-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T4005",
+ "flagged_pattern": "Sierra Metallic Silver on Metallic Gold on Cream",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71210-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T89103",
+ "flagged_pattern": "Dorian Damask Beige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71220-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T89153",
+ "flagged_pattern": "Clessidra Metallic Gold on Sage",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71230-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T89142",
+ "flagged_pattern": "Passaro Damask Cream on Metallic Metallic Gold on Red",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71250-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T83025",
+ "flagged_pattern": "Herringbone Weave Metallic Silver",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71270-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T83028",
+ "flagged_pattern": "Wallcoverings Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71290-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T83041",
+ "flagged_pattern": "Metal Linen Metallic Metallic Gold and White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71300-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T83022",
+ "flagged_pattern": "Herringbone Weave Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71310-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T83005",
+ "flagged_pattern": "Tribeca Sisal Midnight Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71360-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T88739",
+ "flagged_pattern": "Danube Ikat Aqua",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71390-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T88761",
+ "flagged_pattern": "Island Charcoal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71430-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14225",
+ "flagged_pattern": "Wallcoverings Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71500-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T11038",
+ "flagged_pattern": "Wallcoverings Mineral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71510-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T11059",
+ "flagged_pattern": "Kendall White on Sea Mist",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71530-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T11018",
+ "flagged_pattern": "Gilon Navy",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71540-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T11065",
+ "flagged_pattern": "Kendall Neutral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71570-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T64171",
+ "flagged_pattern": "Caravan Ivory",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71580-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T64113",
+ "flagged_pattern": "Caravan Fuchsia and Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71590-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T64124",
+ "flagged_pattern": "Caravan Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71620-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T41150",
+ "flagged_pattern": "East Gate Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71630-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T41119",
+ "flagged_pattern": "Gulf Shore Khaki",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71640-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T41108",
+ "flagged_pattern": "Pearl Bay Straw",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71650-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T41100",
+ "flagged_pattern": "Pearl Bay Off Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71680-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T36160",
+ "flagged_pattern": "Maze Beige",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Maze Beige",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 71.67,
+ "computed_price": 129.72,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWTT-71710-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T36107",
+ "flagged_pattern": "Halie Aqua and Aqua and Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71740-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T36151",
+ "flagged_pattern": "Nemour Blue",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71750-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T35178",
+ "flagged_pattern": "Allison Black on Metallic Apple Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71780-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T35172",
+ "flagged_pattern": "Taza Black and White",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71800-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T35168",
+ "flagged_pattern": "Taza Metallic Silver on Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71820-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "F916043",
+ "flagged_pattern": "Cozumel Blue Printed Fabrics",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71840-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T16017",
+ "flagged_pattern": "South Sea Turquoise and Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71900-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14142",
+ "flagged_pattern": "Bankun Raffia Apple Green",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71910-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14126",
+ "flagged_pattern": "Bilzen Linen Metallic Grey",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71920-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14108",
+ "flagged_pattern": "Coastal Sisal Beige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71940-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14158",
+ "flagged_pattern": "Flanders Earth",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-71950-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T14151",
+ "flagged_pattern": "Minerals Teal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWTT-72030-SAMPLE",
+ "vendor": "Thibaut",
+ "mfr_sku": "T5707",
+ "flagged_pattern": "Regatta Raffia Pink Coral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81791",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81791",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81795",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81795",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81799",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81799",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711101",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711101",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "F711117",
+ "vendor": "Thibaut",
+ "mfr_sku": "F711117",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "F711118",
+ "vendor": "Thibaut",
+ "mfr_sku": "F711118",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "F711119",
+ "vendor": "Thibaut",
+ "mfr_sku": "F711119",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "F711115",
+ "vendor": "Thibaut",
+ "mfr_sku": "F711115",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711104",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711104",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711102",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711102",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81797",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81797",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81798",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81798",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81800",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81800",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81796",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81796",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81792",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81792",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81793",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81793",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W81794",
+ "vendor": "Thibaut",
+ "mfr_sku": "W81794",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "F711116",
+ "vendor": "Thibaut",
+ "mfr_sku": "F711116",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711103",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711103",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711100",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711100",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "",
+ "vendor": "Thibaut",
+ "mfr_sku": "",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W711100",
+ "vendor": "Thibaut",
+ "mfr_sku": "W711100",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10005",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10005",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10006",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10006",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10007",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10007",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10008",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10008",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10014",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10014",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16158",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF16158",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12342",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12342",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12366",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12366",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16156",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF16156",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12358",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12358",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16157",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF16157",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF16135",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF16135",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15100",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15100",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15101",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15101",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15102",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15102",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15103",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15103",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15104",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15104",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15105",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15105",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15106",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15106",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15157",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15157",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78742",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF78742",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15128",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15128",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15125",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15125",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15126",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15126",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72991",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF72991",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15127",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15127",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72985",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF72985",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF72990",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF72990",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF73015",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF73015",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15129",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15129",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15156",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15156",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15130",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15130",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15155",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15155",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15158",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15158",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF15159",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF15159",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF73013",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF73013",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF73012",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF73012",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9852",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9852",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9853",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9853",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9854",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9854",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24566",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24566",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24565",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24565",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24567",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24567",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24568",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24568",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24569",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24569",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24570",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24570",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24550",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24550",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24549",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24549",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF24551",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF24551",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12343",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12343",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12365",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12365",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12374",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12374",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10009",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10009",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10066",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10066",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10020",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10020",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10010",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10010",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12348",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12348",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10062",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10062",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10024",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10024",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10034",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10034",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10035",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10035",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10001",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10001",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12301",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12301",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12303",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12303",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12305",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12305",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10047",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10047",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12371",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12371",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12373",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12373",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12377",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12377",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12345",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12345",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12346",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12346",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12349",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12349",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12351",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12351",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10050",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10050",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10068",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10068",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10069",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10069",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10032",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10032",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10002",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10002",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12344",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12344",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12362",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12362",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12363",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12363",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12364",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12364",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12368",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12368",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12369",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12369",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12354",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12354",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12355",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12355",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12356",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12356",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12361",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12361",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12326",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12326",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12376",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12376",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10018",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10018",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12357",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12357",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10026",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10026",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10044",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10044",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10012",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10012",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10017",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10017",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10016",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10016",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10025",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10025",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10023",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10023",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10027",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10027",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10019",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10019",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10022",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10022",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10021",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10021",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10000",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10000",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10046",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10046",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10036",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10036",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10037",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10037",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10048",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10048",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10049",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10049",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10011",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10011",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10061",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10061",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10015",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10015",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10028",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10028",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10013",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10013",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10040",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10040",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10041",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10041",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10039",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10039",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10033",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10033",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12347",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12347",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12300",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12300",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12304",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12304",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12306",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12306",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12307",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12307",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12370",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12370",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12372",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12372",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12322",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12322",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12360",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12360",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10042",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10042",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10043",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10043",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12318",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12318",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12353",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12353",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12319",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12319",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12320",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12320",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12321",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12321",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12323",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12323",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12324",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12324",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12325",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12325",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12327",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12327",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10045",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10045",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10038",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10038",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10067",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10067",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10051",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10051",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10064",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10064",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10063",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10063",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10065",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10065",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10004",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10004",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10003",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10003",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9832",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9832",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9837",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9837",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF78741",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF78741",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "T13147",
+ "vendor": "Thibaut",
+ "mfr_sku": "T13147",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12302",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12302",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12341",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12341",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12359",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12359",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9645",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9645",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12367",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12367",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF9639",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF9639",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12375",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12375",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12350",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12350",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AE12352",
+ "vendor": "Thibaut",
+ "mfr_sku": "AE12352",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "AF23144",
+ "vendor": "Thibaut",
+ "mfr_sku": "AF23144",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10029",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10029",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CW10030",
+ "vendor": "Thibaut",
+ "mfr_sku": "CW10030",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-71106",
+ "vendor": "Sandberg",
+ "mfr_sku": "402-54",
+ "flagged_pattern": "Beata orange",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72355",
+ "vendor": "Sandberg",
+ "mfr_sku": "P222-WW",
+ "flagged_pattern": "Texture1",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72447",
+ "vendor": "Sandberg",
+ "mfr_sku": "P418-18",
+ "flagged_pattern": "Hella green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72463",
+ "vendor": "Sandberg",
+ "mfr_sku": "P425-01",
+ "flagged_pattern": "Sigfrid cream Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72501",
+ "vendor": "Sandberg",
+ "mfr_sku": "P444-94",
+ "flagged_pattern": "Raphael dark red Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72503",
+ "vendor": "Sandberg",
+ "mfr_sku": "P479-38",
+ "flagged_pattern": "Liljekonvalj sage green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72504",
+ "vendor": "Sandberg",
+ "mfr_sku": "P479-56",
+ "flagged_pattern": "Liljekonvalj indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72505",
+ "vendor": "Sandberg",
+ "mfr_sku": "P482-01",
+ "flagged_pattern": "Edvin antique white Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72506",
+ "vendor": "Sandberg",
+ "mfr_sku": "P482-16",
+ "flagged_pattern": "Edvin misty blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72507",
+ "vendor": "Sandberg",
+ "mfr_sku": "P482-18",
+ "flagged_pattern": "Edvin willow green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72508",
+ "vendor": "Sandberg",
+ "mfr_sku": "P483-59",
+ "flagged_pattern": "Katarina Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72510",
+ "vendor": "Sandberg",
+ "mfr_sku": "P490-24",
+ "flagged_pattern": "Sanna pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72511",
+ "vendor": "Sandberg",
+ "mfr_sku": "P491-02",
+ "flagged_pattern": "Gabriel yellow Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72512",
+ "vendor": "Sandberg",
+ "mfr_sku": "P491-08",
+ "flagged_pattern": "Gabriel green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72514",
+ "vendor": "Sandberg",
+ "mfr_sku": "P493-01",
+ "flagged_pattern": "Ludvig cream Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72515",
+ "vendor": "Sandberg",
+ "mfr_sku": "P493-22",
+ "flagged_pattern": "Ludvig yellow Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72516",
+ "vendor": "Sandberg",
+ "mfr_sku": "P493-27",
+ "flagged_pattern": "Ludvig turquoise Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72517",
+ "vendor": "Sandberg",
+ "mfr_sku": "P493-31",
+ "flagged_pattern": "Ludvig grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72521",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-01",
+ "flagged_pattern": "Magnus sandstone sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72522",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-02",
+ "flagged_pattern": "Magnus yellow Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72523",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-07",
+ "flagged_pattern": "Magnus light turquoise Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72524",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-18",
+ "flagged_pattern": "Magnus green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72525",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-27",
+ "flagged_pattern": "Magnus turquoise Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72526",
+ "vendor": "Sandberg",
+ "mfr_sku": "P516-59",
+ "flagged_pattern": "Magnus light beige Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72529",
+ "vendor": "Sandberg",
+ "mfr_sku": "P517-71",
+ "flagged_pattern": "Rut dark grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72530",
+ "vendor": "Sandberg",
+ "mfr_sku": "P522-31",
+ "flagged_pattern": "Kaspar grey sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72534",
+ "vendor": "Sandberg",
+ "mfr_sku": "P526-16",
+ "flagged_pattern": "William light blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72535",
+ "vendor": "Sandberg",
+ "mfr_sku": "P526-76",
+ "flagged_pattern": "William blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72536",
+ "vendor": "Sandberg",
+ "mfr_sku": "P549-31",
+ "flagged_pattern": "Gaston grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72537",
+ "vendor": "Sandberg",
+ "mfr_sku": "P549-38",
+ "flagged_pattern": "Gaston green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72538",
+ "vendor": "Sandberg",
+ "mfr_sku": "P549-76",
+ "flagged_pattern": "Gaston blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72540",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-01",
+ "flagged_pattern": "Sten offwhite Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72541",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-03",
+ "flagged_pattern": "Sten light pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72542",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-09",
+ "flagged_pattern": "Sten cream Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72543",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-11",
+ "flagged_pattern": "Sten light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72544",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-41",
+ "flagged_pattern": "Sten grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72545",
+ "vendor": "Sandberg",
+ "mfr_sku": "P583-88",
+ "flagged_pattern": "Sten dark green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72546",
+ "vendor": "Sandberg",
+ "mfr_sku": "P586-03",
+ "flagged_pattern": "Mandaleen pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72547",
+ "vendor": "Sandberg",
+ "mfr_sku": "P589-81",
+ "flagged_pattern": "Leonard black Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72548",
+ "vendor": "Sandberg",
+ "mfr_sku": "P595-21",
+ "flagged_pattern": "Fredsfaglar grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72549",
+ "vendor": "Sandberg",
+ "mfr_sku": "P595-28",
+ "flagged_pattern": "Fredsfaglar green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72550",
+ "vendor": "Sandberg",
+ "mfr_sku": "P595-56",
+ "flagged_pattern": "Fredsfaglar blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72551",
+ "vendor": "Sandberg",
+ "mfr_sku": "P597-31",
+ "flagged_pattern": "Dromstigen grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72555",
+ "vendor": "Sandberg",
+ "mfr_sku": "P618-05",
+ "flagged_pattern": "Gryning grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72556",
+ "vendor": "Sandberg",
+ "mfr_sku": "P622-08",
+ "flagged_pattern": "Skog forest green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72561",
+ "vendor": "Sandberg",
+ "mfr_sku": "P624-04",
+ "flagged_pattern": "Growing garden Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72570",
+ "vendor": "Sandberg",
+ "mfr_sku": "P632-04",
+ "flagged_pattern": "Fjordbyen blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72571",
+ "vendor": "Sandberg",
+ "mfr_sku": "P632-04FS",
+ "flagged_pattern": "Fjordbyen blue 270x1 sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72572",
+ "vendor": "Sandberg",
+ "mfr_sku": "P633-08",
+ "flagged_pattern": "Osterbro black Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72574",
+ "vendor": "Sandberg",
+ "mfr_sku": "P634-01",
+ "flagged_pattern": "Kallio black sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72575",
+ "vendor": "Sandberg",
+ "mfr_sku": "P634-01FS",
+ "flagged_pattern": "Kallio black 108x45c sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72580",
+ "vendor": "Sandberg",
+ "mfr_sku": "P638-01",
+ "flagged_pattern": "Ilse green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72582",
+ "vendor": "Sandberg",
+ "mfr_sku": "P639-04",
+ "flagged_pattern": "Lene pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72583",
+ "vendor": "Sandberg",
+ "mfr_sku": "P639-04FS",
+ "flagged_pattern": "Lene pink sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72585",
+ "vendor": "Sandberg",
+ "mfr_sku": "P640-04FS",
+ "flagged_pattern": "Aralia green 270x180 sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72586",
+ "vendor": "Sandberg",
+ "mfr_sku": "P643-04",
+ "flagged_pattern": "Morangen indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72588",
+ "vendor": "Sandberg",
+ "mfr_sku": "P644-06",
+ "flagged_pattern": "Wabi sabi Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72589",
+ "vendor": "Sandberg",
+ "mfr_sku": "P644-16",
+ "flagged_pattern": "Wabi sabi moonless Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72594",
+ "vendor": "Sandberg",
+ "mfr_sku": "P647-04",
+ "flagged_pattern": "Marieberg blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72595",
+ "vendor": "Sandberg",
+ "mfr_sku": "P647-04FS",
+ "flagged_pattern": "Marieberg blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72596",
+ "vendor": "Sandberg",
+ "mfr_sku": "P648-05",
+ "flagged_pattern": "Ljung light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72603",
+ "vendor": "Sandberg",
+ "mfr_sku": "P651-11",
+ "flagged_pattern": "Sandra powder white Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72606",
+ "vendor": "Sandberg",
+ "mfr_sku": "P651-26CS",
+ "flagged_pattern": "Sandra misty blue CS",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72612",
+ "vendor": "Sandberg",
+ "mfr_sku": "P654-21",
+ "flagged_pattern": "Emilia Ilke Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72614",
+ "vendor": "Sandberg",
+ "mfr_sku": "P656-47",
+ "flagged_pattern": "Sofia Wood skye sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72616",
+ "vendor": "Sandberg",
+ "mfr_sku": "P657-31",
+ "flagged_pattern": "Lofstad slott graphite sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72617",
+ "vendor": "Sandberg",
+ "mfr_sku": "P658-31",
+ "flagged_pattern": "Oak view graphite sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72621",
+ "vendor": "Sandberg",
+ "mfr_sku": "P661-28",
+ "flagged_pattern": "Aino sage green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72622",
+ "vendor": "Sandberg",
+ "mfr_sku": "P661-36",
+ "flagged_pattern": "Aino misty blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72628",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-01",
+ "flagged_pattern": "Kristina white Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72629",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-19",
+ "flagged_pattern": "Kristina beige Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72630",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-21",
+ "flagged_pattern": "Kristina light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72631",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-31",
+ "flagged_pattern": "Kristina grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72632",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-51",
+ "flagged_pattern": "Kristina dark grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72633",
+ "vendor": "Sandberg",
+ "mfr_sku": "P700-56",
+ "flagged_pattern": "Kristina blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72635",
+ "vendor": "Sandberg",
+ "mfr_sku": "P701-66",
+ "flagged_pattern": "Emilia dark blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72636",
+ "vendor": "Sandberg",
+ "mfr_sku": "P702-04",
+ "flagged_pattern": "Einar pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72637",
+ "vendor": "Sandberg",
+ "mfr_sku": "P702-21",
+ "flagged_pattern": "Einar light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72639",
+ "vendor": "Sandberg",
+ "mfr_sku": "P702-56",
+ "flagged_pattern": "Einar blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72640",
+ "vendor": "Sandberg",
+ "mfr_sku": "P703-08",
+ "flagged_pattern": "Vera green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72641",
+ "vendor": "Sandberg",
+ "mfr_sku": "P704-00",
+ "flagged_pattern": "Nils white Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72642",
+ "vendor": "Sandberg",
+ "mfr_sku": "P704-21",
+ "flagged_pattern": "Nils grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72643",
+ "vendor": "Sandberg",
+ "mfr_sku": "P704-34",
+ "flagged_pattern": "Nils light red Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72644",
+ "vendor": "Sandberg",
+ "mfr_sku": "P704-66",
+ "flagged_pattern": "Nils blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72645",
+ "vendor": "Sandberg",
+ "mfr_sku": "P705-07",
+ "flagged_pattern": "Ida light turquoise Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72646",
+ "vendor": "Sandberg",
+ "mfr_sku": "P705-21",
+ "flagged_pattern": "Ida light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72647",
+ "vendor": "Sandberg",
+ "mfr_sku": "P705-91",
+ "flagged_pattern": "Ida black Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72648",
+ "vendor": "Sandberg",
+ "mfr_sku": "P706-31",
+ "flagged_pattern": "Harsyra grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72649",
+ "vendor": "Sandberg",
+ "mfr_sku": "P706-48",
+ "flagged_pattern": "Harsyra green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72650",
+ "vendor": "Sandberg",
+ "mfr_sku": "P707-21",
+ "flagged_pattern": "Murgr\u00f6na light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72652",
+ "vendor": "Sandberg",
+ "mfr_sku": "P707-67",
+ "flagged_pattern": "Murgrona turquoise Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72653",
+ "vendor": "Sandberg",
+ "mfr_sku": "P708-01",
+ "flagged_pattern": "Simons Ang white Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72654",
+ "vendor": "Sandberg",
+ "mfr_sku": "P708-89",
+ "flagged_pattern": "Simons Ang brown Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72655",
+ "vendor": "Sandberg",
+ "mfr_sku": "P709-38",
+ "flagged_pattern": "Hassel green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72656",
+ "vendor": "Sandberg",
+ "mfr_sku": "P709-59",
+ "flagged_pattern": "Hassel brown Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72657",
+ "vendor": "Sandberg",
+ "mfr_sku": "P709-78",
+ "flagged_pattern": "Hassel dark green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72658",
+ "vendor": "Sandberg",
+ "mfr_sku": "P710-22",
+ "flagged_pattern": "Bok yellow Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72659",
+ "vendor": "Sandberg",
+ "mfr_sku": "P710-28",
+ "flagged_pattern": "Bok light green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72660",
+ "vendor": "Sandberg",
+ "mfr_sku": "P710-86",
+ "flagged_pattern": "Bok dark blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72661",
+ "vendor": "Sandberg",
+ "mfr_sku": "P710-88",
+ "flagged_pattern": "Bok dark green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72662",
+ "vendor": "Sandberg",
+ "mfr_sku": "P800-41",
+ "flagged_pattern": "Christian bronze Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72663",
+ "vendor": "Sandberg",
+ "mfr_sku": "P800-88",
+ "flagged_pattern": "Christian green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72664",
+ "vendor": "Sandberg",
+ "mfr_sku": "P800-94",
+ "flagged_pattern": "Christian dark red Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72665",
+ "vendor": "Sandberg",
+ "mfr_sku": "P801-24",
+ "flagged_pattern": "Marie pink Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72666",
+ "vendor": "Sandberg",
+ "mfr_sku": "P801-29",
+ "flagged_pattern": "Marie beige Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72667",
+ "vendor": "Sandberg",
+ "mfr_sku": "P801-78",
+ "flagged_pattern": "Marie green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72668",
+ "vendor": "Sandberg",
+ "mfr_sku": "P802-19",
+ "flagged_pattern": "Bianca cream sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72670",
+ "vendor": "Sandberg",
+ "mfr_sku": "P802-56",
+ "flagged_pattern": "Bianca indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72671",
+ "vendor": "Sandberg",
+ "mfr_sku": "P803-18",
+ "flagged_pattern": "Ginkgo light green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72672",
+ "vendor": "Sandberg",
+ "mfr_sku": "P803-56",
+ "flagged_pattern": "Ginkgo blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72682",
+ "vendor": "Sandberg",
+ "mfr_sku": "P807-21",
+ "flagged_pattern": "Karolina light grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72685",
+ "vendor": "Sandberg",
+ "mfr_sku": "P807-76",
+ "flagged_pattern": "Karolina dark blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72686",
+ "vendor": "Sandberg",
+ "mfr_sku": "P808-11",
+ "flagged_pattern": "Fredrik cream Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72687",
+ "vendor": "Sandberg",
+ "mfr_sku": "P808-21",
+ "flagged_pattern": "Fredrik grey Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72688",
+ "vendor": "Sandberg",
+ "mfr_sku": "P808-22",
+ "flagged_pattern": "Fredrik yellow Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72689",
+ "vendor": "Sandberg",
+ "mfr_sku": "P809-21",
+ "flagged_pattern": "Alva sandstone sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72691",
+ "vendor": "Sandberg",
+ "mfr_sku": "P809-38",
+ "flagged_pattern": "Alva forest green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72692",
+ "vendor": "Sandberg",
+ "mfr_sku": "P811-18",
+ "flagged_pattern": "Margareta garden green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72693",
+ "vendor": "Sandberg",
+ "mfr_sku": "P811-21",
+ "flagged_pattern": "Margareta sandstone Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72694",
+ "vendor": "Sandberg",
+ "mfr_sku": "P811-26",
+ "flagged_pattern": "Margareta powder blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72695",
+ "vendor": "Sandberg",
+ "mfr_sku": "P812-18",
+ "flagged_pattern": "Lisabet garden green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72696",
+ "vendor": "Sandberg",
+ "mfr_sku": "P812-21",
+ "flagged_pattern": "Lisabet sandstone Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72697",
+ "vendor": "Sandberg",
+ "mfr_sku": "P812-26",
+ "flagged_pattern": "Lisabet misty blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72698",
+ "vendor": "Sandberg",
+ "mfr_sku": "P813-19",
+ "flagged_pattern": "Karin wheat Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72699",
+ "vendor": "Sandberg",
+ "mfr_sku": "P813-36",
+ "flagged_pattern": "Karin misty blue Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72700",
+ "vendor": "Sandberg",
+ "mfr_sku": "P813-38",
+ "flagged_pattern": "Karin forest green Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72701",
+ "vendor": "Sandberg",
+ "mfr_sku": "P814-11",
+ "flagged_pattern": "Anton sheer grey sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72702",
+ "vendor": "Sandberg",
+ "mfr_sku": "P814-22",
+ "flagged_pattern": "Anton honey sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72703",
+ "vendor": "Sandberg",
+ "mfr_sku": "P814-38",
+ "flagged_pattern": "Anton forest green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72708",
+ "vendor": "Sandberg",
+ "mfr_sku": "P825-22",
+ "flagged_pattern": "Rio mustard sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72712",
+ "vendor": "Sandberg",
+ "mfr_sku": "P826-37",
+ "flagged_pattern": "Estelle teal sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72716",
+ "vendor": "Sandberg",
+ "mfr_sku": "P827-32",
+ "flagged_pattern": "Eden oat sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72717",
+ "vendor": "Sandberg",
+ "mfr_sku": "P827-41",
+ "flagged_pattern": "Eden sandstone sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72718",
+ "vendor": "Sandberg",
+ "mfr_sku": "P827-88",
+ "flagged_pattern": "Eden juniper sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72719",
+ "vendor": "Sandberg",
+ "mfr_sku": "P828-03",
+ "flagged_pattern": "Otis coral sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72720",
+ "vendor": "Sandberg",
+ "mfr_sku": "P828-09",
+ "flagged_pattern": "Otis graphite sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72721",
+ "vendor": "Sandberg",
+ "mfr_sku": "P829-21",
+ "flagged_pattern": "Lillie sandstone sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72722",
+ "vendor": "Sandberg",
+ "mfr_sku": "P829-24",
+ "flagged_pattern": "Lillie blush sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72723",
+ "vendor": "Sandberg",
+ "mfr_sku": "P829-38",
+ "flagged_pattern": "Lillie garden green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72724",
+ "vendor": "Sandberg",
+ "mfr_sku": "P829-46",
+ "flagged_pattern": "Lillie indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72725",
+ "vendor": "Sandberg",
+ "mfr_sku": "P830-26",
+ "flagged_pattern": "Charlotta sky blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72726",
+ "vendor": "Sandberg",
+ "mfr_sku": "P830-28",
+ "flagged_pattern": "Charlotta spring green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72727",
+ "vendor": "Sandberg",
+ "mfr_sku": "P830-66",
+ "flagged_pattern": "Charlotta petrol sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72729",
+ "vendor": "Sandberg",
+ "mfr_sku": "P831-28",
+ "flagged_pattern": "Sophie spring green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72730",
+ "vendor": "Sandberg",
+ "mfr_sku": "P831-36",
+ "flagged_pattern": "Sophie indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72735",
+ "vendor": "Sandberg",
+ "mfr_sku": "P833-28",
+ "flagged_pattern": "Hedvig garden green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72736",
+ "vendor": "Sandberg",
+ "mfr_sku": "P833-32",
+ "flagged_pattern": "Hedvig honey sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72738",
+ "vendor": "Sandberg",
+ "mfr_sku": "P834-18",
+ "flagged_pattern": "Maria spring green sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72739",
+ "vendor": "Sandberg",
+ "mfr_sku": "P834-31",
+ "flagged_pattern": "Maria sandstone sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72740",
+ "vendor": "Sandberg",
+ "mfr_sku": "P834-36",
+ "flagged_pattern": "Maria indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72742",
+ "vendor": "Sandberg",
+ "mfr_sku": "P835-24",
+ "flagged_pattern": "Emil blush sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72746",
+ "vendor": "Sandberg",
+ "mfr_sku": "P836-56",
+ "flagged_pattern": "Ragnvi indigo blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72748",
+ "vendor": "Sandberg",
+ "mfr_sku": "P837-26",
+ "flagged_pattern": "Elin misty blue sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWSS-72765",
+ "vendor": "Sandberg",
+ "mfr_sku": "P901-01",
+ "flagged_pattern": "Louis(border) Sample",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202058",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17002",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202061",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17006",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202064",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17014",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202065",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17015",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202066",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17019",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202067",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17020",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202068",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17021",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202069",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17023",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202071",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17026",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202073",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17031",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202074",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17034",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202077",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17037",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202078",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17038",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202079",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17039",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202080",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17041",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202081",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17043",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202082",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17046",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202083",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "17047",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202084",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17049",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202085",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17053",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202087",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17054",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202088",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17058",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202090",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17061",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202091",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17064",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202092",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17065",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202094",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17066",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202096",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17070",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202097",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17072",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202098",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17077",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202099",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17078",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202100",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17079",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202101",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17081",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202102",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17082",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202103",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17083",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202104",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17084",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202105",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17085",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202106",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17086",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202108",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17089",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202110",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17094",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202111",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17096",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202112",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17097",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202113",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17098",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202114",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17099",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202115",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17101",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202118",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17106",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202205",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17111",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202206",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17113",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202207",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17114",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202208",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17115",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202209",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc17116",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202130",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16004",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202131",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16008",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202134",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16016",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202135",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16017",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202136",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16018",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202137",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16020",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202139",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16030",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202140",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16031",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202141",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16033",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202142",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16034",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202143",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16037",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202144",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16038",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202145",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16039",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202146",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16040",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202147",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16044",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202148",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16045",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202149",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16046",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202150",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16047",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202152",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16048",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202153",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16049",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202154",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16051",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202157",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16060",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202158",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16061",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202159",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16067",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202160",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16068",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202161",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16071",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202162",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16072",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202165",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16077",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202166",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16080",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202167",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16081",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202168",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16082",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202170",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16092",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202171",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16093",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202172",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16094",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202173",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16095",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202174",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16098",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202175",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16099",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202176",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16101",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202177",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16105",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202178",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16106",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202179",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16107",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202180",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16108",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202181",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16109",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202182",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16111",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202183",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16112",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202184",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16113",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202185",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc16118",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202203",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "0rc18092",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202210",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18001",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18001",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202211",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18002",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18002",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202212",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18004",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18004",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202213",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18006",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18006",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202214",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "18007",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18007",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202215",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18008",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202216",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18009",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202217",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18010",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202218",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18015",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202219",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18016",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202220",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18017",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18017",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202221",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18018",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202222",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18022",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202223",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18023",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202224",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18026",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202225",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18027",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202227",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18032",
+ "flagged_pattern": "Emiliana Parati, Lymphae, 18032",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202228",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18034",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202229",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "18035",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202230",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18040",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202231",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18041",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202232",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18042",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202233",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18044",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202234",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18046",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202235",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18047",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202236",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18048",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202237",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18053",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202238",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18054",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202239",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18056",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202240",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18058",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202241",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18059",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202242",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18060",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202243",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18061",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202244",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18062",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202245",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18063",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202246",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18064",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202247",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18065",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202248",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18066",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202249",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18067",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202250",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18069",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202251",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18071",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202252",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18072",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202253",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18077",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202254",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18079",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202255",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18080",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202256",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18082",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202258",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18084",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202259",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18087",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202261",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18090",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202262",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18091",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWRC-202265",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "mfr_sku": "rc18097",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-500960",
+ "vendor": "Marburg",
+ "mfr_sku": "32002",
+ "flagged_pattern": "Memento, 32002",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-500970",
+ "vendor": "Marburg",
+ "mfr_sku": "32003",
+ "flagged_pattern": "Memento, 32003",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-500980",
+ "vendor": "Marburg",
+ "mfr_sku": "32044",
+ "flagged_pattern": "Grains & Plains",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-500990",
+ "vendor": "Marburg",
+ "mfr_sku": "34159",
+ "flagged_pattern": "Loft Superior",
+ "match_confidence": "exact",
+ "matched_pattern": "Loft Superior",
+ "matched_color": "Beige, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501000",
+ "vendor": "Marburg",
+ "mfr_sku": "34170",
+ "flagged_pattern": "Wood & Stones",
+ "match_confidence": "exact",
+ "matched_pattern": "Wood & Stones",
+ "matched_color": "Black",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501510",
+ "vendor": "Marburg",
+ "mfr_sku": "33727",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501520",
+ "vendor": "Marburg",
+ "mfr_sku": "33722",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Black",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501530",
+ "vendor": "Marburg",
+ "mfr_sku": "33705",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Gold, Black",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501540",
+ "vendor": "Marburg",
+ "mfr_sku": "33711",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501560",
+ "vendor": "Marburg",
+ "mfr_sku": "33719",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Platin",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501570",
+ "vendor": "Marburg",
+ "mfr_sku": "33720",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Grey, Silver",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501580",
+ "vendor": "Marburg",
+ "mfr_sku": "33713",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Anthracite",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501590",
+ "vendor": "Marburg",
+ "mfr_sku": "33715",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Gold, Black",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501600",
+ "vendor": "Marburg",
+ "mfr_sku": "33748",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501610",
+ "vendor": "Marburg",
+ "mfr_sku": "33706",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Gold, Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501620",
+ "vendor": "Marburg",
+ "mfr_sku": "33707",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501630",
+ "vendor": "Marburg",
+ "mfr_sku": "33758",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Black",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501640",
+ "vendor": "Marburg",
+ "mfr_sku": "33759",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Orange, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501650",
+ "vendor": "Marburg",
+ "mfr_sku": "33747",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501660",
+ "vendor": "Marburg",
+ "mfr_sku": "33733",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501670",
+ "vendor": "Marburg",
+ "mfr_sku": "33797",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501680",
+ "vendor": "Marburg",
+ "mfr_sku": "33701",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Pearl",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501690",
+ "vendor": "Marburg",
+ "mfr_sku": "33743",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501710",
+ "vendor": "Marburg",
+ "mfr_sku": "33744",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501720",
+ "vendor": "Marburg",
+ "mfr_sku": "33737",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501740",
+ "vendor": "Marburg",
+ "mfr_sku": "33717",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Pearl, White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501750",
+ "vendor": "Marburg",
+ "mfr_sku": "33754",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501760",
+ "vendor": "Marburg",
+ "mfr_sku": "33745",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501770",
+ "vendor": "Marburg",
+ "mfr_sku": "33716",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501780",
+ "vendor": "Marburg",
+ "mfr_sku": "33710",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Blue",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501800",
+ "vendor": "Marburg",
+ "mfr_sku": "33721",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Anthracite, Gold",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501810",
+ "vendor": "Marburg",
+ "mfr_sku": "33714",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501820",
+ "vendor": "Marburg",
+ "mfr_sku": "33751",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Blue",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501830",
+ "vendor": "Marburg",
+ "mfr_sku": "33755",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501840",
+ "vendor": "Marburg",
+ "mfr_sku": "33738",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501850",
+ "vendor": "Marburg",
+ "mfr_sku": "33703",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Grey, Silver",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501860",
+ "vendor": "Marburg",
+ "mfr_sku": "33736",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501870",
+ "vendor": "Marburg",
+ "mfr_sku": "33725",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501890",
+ "vendor": "Marburg",
+ "mfr_sku": "33734",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Grau-beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501900",
+ "vendor": "Marburg",
+ "mfr_sku": "33732",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501910",
+ "vendor": "Marburg",
+ "mfr_sku": "33731",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501920",
+ "vendor": "Marburg",
+ "mfr_sku": "33729",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501930",
+ "vendor": "Marburg",
+ "mfr_sku": "33740",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Blue, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501940",
+ "vendor": "Marburg",
+ "mfr_sku": "33799",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501950",
+ "vendor": "Marburg",
+ "mfr_sku": "33746",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501960",
+ "vendor": "Marburg",
+ "mfr_sku": "33726",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-501970",
+ "vendor": "Marburg",
+ "mfr_sku": "33739",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501980",
+ "vendor": "Marburg",
+ "mfr_sku": "33741",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-501990",
+ "vendor": "Marburg",
+ "mfr_sku": "33735",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502000",
+ "vendor": "Marburg",
+ "mfr_sku": "33709",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502010",
+ "vendor": "Marburg",
+ "mfr_sku": "33712",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502020",
+ "vendor": "Marburg",
+ "mfr_sku": "33704",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Grau-beige, Pearl",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502040",
+ "vendor": "Marburg",
+ "mfr_sku": "33728",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Orange, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502050",
+ "vendor": "Marburg",
+ "mfr_sku": "33702",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday",
+ "matched_color": "Beige, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502060",
+ "vendor": "Marburg",
+ "mfr_sku": "35801",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Beige, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502070",
+ "vendor": "Marburg",
+ "mfr_sku": "35838",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502080",
+ "vendor": "Marburg",
+ "mfr_sku": "35823",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502100",
+ "vendor": "Marburg",
+ "mfr_sku": "35850",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gold, Gruen, Silver",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502110",
+ "vendor": "Marburg",
+ "mfr_sku": "35806",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502120",
+ "vendor": "Marburg",
+ "mfr_sku": "35886",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Azul",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502130",
+ "vendor": "Marburg",
+ "mfr_sku": "63417",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blanco",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502140",
+ "vendor": "Marburg",
+ "mfr_sku": "35889",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Verde",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502150",
+ "vendor": "Marburg",
+ "mfr_sku": "35898",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-502160",
+ "vendor": "Marburg",
+ "mfr_sku": "35890",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Rosa",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502170",
+ "vendor": "Marburg",
+ "mfr_sku": "35899",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-502180",
+ "vendor": "Marburg",
+ "mfr_sku": "35888",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Verde",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502190",
+ "vendor": "Marburg",
+ "mfr_sku": "35897",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-502200",
+ "vendor": "Marburg",
+ "mfr_sku": "35884",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Antracita, Gris",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502210",
+ "vendor": "Marburg",
+ "mfr_sku": "35852",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gold",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502220",
+ "vendor": "Marburg",
+ "mfr_sku": "35846",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502230",
+ "vendor": "Marburg",
+ "mfr_sku": "35844",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue, Purple, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502240",
+ "vendor": "Marburg",
+ "mfr_sku": "35843",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Beige, Blue, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502250",
+ "vendor": "Marburg",
+ "mfr_sku": "35845",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502260",
+ "vendor": "Marburg",
+ "mfr_sku": "35848",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502270",
+ "vendor": "Marburg",
+ "mfr_sku": "35842",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Beige, Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502280",
+ "vendor": "Marburg",
+ "mfr_sku": "35849",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Anthracite, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502290",
+ "vendor": "Marburg",
+ "mfr_sku": "35808",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502300",
+ "vendor": "Marburg",
+ "mfr_sku": "35840",
+ "flagged_pattern": "Papis Loveday Fashion Icon",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502310",
+ "vendor": "Marburg",
+ "mfr_sku": "35851",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue, Copper",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502320",
+ "vendor": "Marburg",
+ "mfr_sku": "35833",
+ "flagged_pattern": "Papis Loveday Fashion Icon",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502330",
+ "vendor": "Marburg",
+ "mfr_sku": "35832",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gris",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502340",
+ "vendor": "Marburg",
+ "mfr_sku": "35839",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Anthracite, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502350",
+ "vendor": "Marburg",
+ "mfr_sku": "35837",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "camel",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502360",
+ "vendor": "Marburg",
+ "mfr_sku": "35841",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue, Grey, Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502370",
+ "vendor": "Marburg",
+ "mfr_sku": "35829",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502380",
+ "vendor": "Marburg",
+ "mfr_sku": "35883",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blanco, Gris",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502400",
+ "vendor": "Marburg",
+ "mfr_sku": "35831",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Azul",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502410",
+ "vendor": "Marburg",
+ "mfr_sku": "35834",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502420",
+ "vendor": "Marburg",
+ "mfr_sku": "35835",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502440",
+ "vendor": "Marburg",
+ "mfr_sku": "35885",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Dorado, Marr\u00f3n",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502450",
+ "vendor": "Marburg",
+ "mfr_sku": "35836",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502460",
+ "vendor": "Marburg",
+ "mfr_sku": "35828",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Blue",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502470",
+ "vendor": "Marburg",
+ "mfr_sku": "35824",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502480",
+ "vendor": "Marburg",
+ "mfr_sku": "35822",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Beige",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502490",
+ "vendor": "Marburg",
+ "mfr_sku": "35821",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502500",
+ "vendor": "Marburg",
+ "mfr_sku": "35820",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502510",
+ "vendor": "Marburg",
+ "mfr_sku": "35825",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502520",
+ "vendor": "Marburg",
+ "mfr_sku": "35826",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Copper",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502530",
+ "vendor": "Marburg",
+ "mfr_sku": "35813",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502540",
+ "vendor": "Marburg",
+ "mfr_sku": "35819",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502550",
+ "vendor": "Marburg",
+ "mfr_sku": "35818",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Copper",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502560",
+ "vendor": "Marburg",
+ "mfr_sku": "35815",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gold",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502570",
+ "vendor": "Marburg",
+ "mfr_sku": "35807",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502580",
+ "vendor": "Marburg",
+ "mfr_sku": "35805",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Brown, Gold",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502590",
+ "vendor": "Marburg",
+ "mfr_sku": "35810",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502600",
+ "vendor": "Marburg",
+ "mfr_sku": "35812",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Brown, Red",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502610",
+ "vendor": "Marburg",
+ "mfr_sku": "35814",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Silver",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502620",
+ "vendor": "Marburg",
+ "mfr_sku": "35816",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gold, Silver",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502630",
+ "vendor": "Marburg",
+ "mfr_sku": "35809",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Grey, White",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502640",
+ "vendor": "Marburg",
+ "mfr_sku": "35804",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Anthracite, Grey",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502650",
+ "vendor": "Marburg",
+ "mfr_sku": "35802",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Pink",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWWC-502660",
+ "vendor": "Marburg",
+ "mfr_sku": "35803",
+ "flagged_pattern": "Papis Loveday Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Papis Loveday Fashion Icon",
+ "matched_color": "Gruen",
+ "sourced_cost": 1.0,
+ "computed_price": 1.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15435",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-001",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Light Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15434",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-002",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Off-White",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15433",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-003",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15432",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-004",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "White",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15431",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-005",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Light Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15430",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-006",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Charcoal Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15429",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-007",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Taupe",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15428",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-008",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Teal",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15427",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COA-009",
+ "flagged_pattern": "Coast",
+ "match_confidence": "exact",
+ "matched_pattern": "Coast Wallcovering",
+ "matched_color": "Light Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15426",
+ "vendor": "Innovations USA",
+ "mfr_sku": "COAST",
+ "flagged_pattern": "Coast",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15420",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-001",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Off-White",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15419",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-002",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15418",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-003",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Dark Brown",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15417",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-004",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Off-White",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15416",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-005",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15415",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-006",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Charcoal Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15414",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-007",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Dark Blue",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15413",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-008",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Charcoal Gray",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15412",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-009",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Dark Green",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15411",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-010",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Taupe",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15410",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-011",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15409",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-012",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15408",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAI-013",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "exact",
+ "matched_pattern": "Daintree Wallcovering",
+ "matched_color": "Light Tan",
+ "sourced_cost": 31.95,
+ "computed_price": 57.83,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15407",
+ "vendor": "Innovations USA",
+ "mfr_sku": "DAINTREE",
+ "flagged_pattern": "Daintree",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15399",
+ "vendor": "Innovations USA",
+ "mfr_sku": "FELIX",
+ "flagged_pattern": "Felix",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15381",
+ "vendor": "Innovations USA",
+ "mfr_sku": "FUSE",
+ "flagged_pattern": "Fuse",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15325",
+ "vendor": "Innovations USA",
+ "mfr_sku": "HUN-05",
+ "flagged_pattern": "Huntress Olinda Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Huntress Wallcovering",
+ "matched_color": "Steel Blue",
+ "sourced_cost": 104.95,
+ "computed_price": 189.95,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15324",
+ "vendor": "Innovations USA",
+ "mfr_sku": "HUN-06",
+ "flagged_pattern": "Huntress Castro Wallcovering",
+ "match_confidence": "exact",
+ "matched_pattern": "Huntress Wallcovering",
+ "matched_color": "Dark Gray",
+ "sourced_cost": 104.95,
+ "computed_price": 189.95,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15261",
+ "vendor": "Innovations USA",
+ "mfr_sku": "MAZE",
+ "flagged_pattern": "Maze",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15236",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15235",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15234",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15233",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15232",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15231",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15230",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15229",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15228",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami Pewter Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15227",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami Royal Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15214",
+ "vendor": "Innovations USA",
+ "mfr_sku": "RANGOON-SILK",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15210",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15209",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15208",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15207",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15199",
+ "vendor": "Innovations USA",
+ "mfr_sku": "SANCTUARY",
+ "flagged_pattern": "Sanctuary",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15172",
+ "vendor": "Innovations USA",
+ "mfr_sku": "SPALT",
+ "flagged_pattern": "Spalt",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15128",
+ "vendor": "Innovations USA",
+ "mfr_sku": "VAN-001",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "exact",
+ "matched_pattern": "Vandal Wallcovering",
+ "matched_color": "Off-White",
+ "sourced_cost": 105.95,
+ "computed_price": 191.76,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15128",
+ "vendor": "Innovations USA",
+ "mfr_sku": "VAN-001",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "exact",
+ "matched_pattern": "Vandal Wallcovering",
+ "matched_color": "Off-White",
+ "sourced_cost": 105.95,
+ "computed_price": 191.76,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15127",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15127",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15127",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15127",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15126",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15126",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15126",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15126",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15125",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15125",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15125",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15125",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Vandal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15112",
+ "vendor": "Innovations USA",
+ "mfr_sku": "YUMA",
+ "flagged_pattern": "Yuma",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15111",
+ "vendor": "Innovations USA",
+ "mfr_sku": "YUM-01",
+ "flagged_pattern": "Yuma",
+ "match_confidence": "exact",
+ "matched_pattern": "Yuma Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 43.95,
+ "computed_price": 79.55,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15111",
+ "vendor": "Innovations USA",
+ "mfr_sku": "YUM-01",
+ "flagged_pattern": "Yuma",
+ "match_confidence": "exact",
+ "matched_pattern": "Yuma Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 43.95,
+ "computed_price": 79.55,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15110",
+ "vendor": "Innovations USA",
+ "mfr_sku": "YUM-03",
+ "flagged_pattern": "Yuma",
+ "match_confidence": "exact",
+ "matched_pattern": "Yuma Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 43.95,
+ "computed_price": 79.55,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15110",
+ "vendor": "Innovations USA",
+ "mfr_sku": "YUM-03",
+ "flagged_pattern": "Yuma",
+ "match_confidence": "exact",
+ "matched_pattern": "Yuma Wallcovering",
+ "matched_color": "Beige",
+ "sourced_cost": 43.95,
+ "computed_price": 79.55,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15108",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZION",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15108",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZION",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15108",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-01",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15108",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-01",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15107",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-02",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Taupe",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15106",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-03",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15105",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-04",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Taupe",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15104",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-05",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Taupe",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15103",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-06",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15102",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-07",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Dark Brown",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15101",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-08",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Dark Brown",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15100",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-09",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Brown",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15099",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-10",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Brown",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15098",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-11",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Terra Cotta",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15097",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-12",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Brown",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15096",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-13",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Tan",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15095",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-14",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Olive",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15094",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-15",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Dark Olive Green",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15093",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-16",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15092",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-17",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15091",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-19",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15090",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-20",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Dark Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15089",
+ "vendor": "Innovations USA",
+ "mfr_sku": "ZIO-21",
+ "flagged_pattern": "Zion",
+ "match_confidence": "exact",
+ "matched_pattern": "Zion Wallcovering",
+ "matched_color": "Charcoal Gray",
+ "sourced_cost": 52.95,
+ "computed_price": 95.84,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWIN-15088",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15087",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Zion",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15084",
+ "vendor": "Innovations USA",
+ "mfr_sku": "HUNTRESS",
+ "flagged_pattern": "Huntress",
+ "match_confidence": "fuzzy-high",
+ "matched_pattern": "Huntress",
+ "matched_color": "(pattern-consistent cost)",
+ "sourced_cost": 104.95,
+ "computed_price": 189.95,
+ "price_basis": "cost/0.65/0.85",
+ "rule": "C: single cost across colorways"
+ },
+ {
+ "dw_sku": "DWIN-15066",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15065",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15064",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15063",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15062",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15061",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15060",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Nautilus",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15057",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15056",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Origami",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15043",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15042",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15041",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWIN-15040",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "Rangoon Silk",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "",
+ "vendor": "Innovations USA",
+ "mfr_sku": "",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96700",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96700",
+ "flagged_pattern": "Kamome Island Japanese Floral Damask",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96701",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96701",
+ "flagged_pattern": "Kamome Island Japanese Floral Damask",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96702",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96702",
+ "flagged_pattern": "Kamome Island Japanese Floral Damask",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96703",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96703",
+ "flagged_pattern": "Kamome Island Japanese Floral Damask",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96704",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96704",
+ "flagged_pattern": "Kamome Island Japanese Floral Damask",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96705",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96705",
+ "flagged_pattern": "Oshima Faux Finish Greek Key",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96706",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96706",
+ "flagged_pattern": "Oshima Faux Finish Greek Key",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96707",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96707",
+ "flagged_pattern": "Oshima Faux Finish Greek Key",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96708",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96708",
+ "flagged_pattern": "Oshima Faux Finish Greek Key",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96709",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96709",
+ "flagged_pattern": "Oshima Faux Finish Greek Key",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96714",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96714",
+ "flagged_pattern": "Odaiba Printed Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96715",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96715",
+ "flagged_pattern": "Odaiba Printed Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96716",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96716",
+ "flagged_pattern": "Odaiba Printed Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96717",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96717",
+ "flagged_pattern": "Odaiba Printed Texture",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96719",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96719",
+ "flagged_pattern": "Yagishiri Island Koi Fish",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96720",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96720",
+ "flagged_pattern": "Yagishiri Island Koi Fish",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96721",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96721",
+ "flagged_pattern": "Yagishiri Island Koi Fish",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96722",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96722",
+ "flagged_pattern": "Yagishiri Island Koi Fish",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96723",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96723",
+ "flagged_pattern": "Ko Island Printed Horizontal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96724",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96724",
+ "flagged_pattern": "Ko Island Printed Horizontal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96725",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96725",
+ "flagged_pattern": "Ko Island Printed Horizontal",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96726",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96726",
+ "flagged_pattern": "Mitsu Gingko Tree",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96727",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96727",
+ "flagged_pattern": "Mitsu Gingko Tree",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96729",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96729",
+ "flagged_pattern": "Sado Contemporary Scallop",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96730",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96730",
+ "flagged_pattern": "Sado Contemporary Scallop",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96731",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96731",
+ "flagged_pattern": "Sado Contemporary Scallop",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96732",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96732",
+ "flagged_pattern": "Sado Contemporary Scallop",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96733",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96733",
+ "flagged_pattern": "Teuri Island Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96734",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96734",
+ "flagged_pattern": "Teuri Island Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96735",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96735",
+ "flagged_pattern": "Teuri Island Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96736",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96736",
+ "flagged_pattern": "Teuri Island Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96737",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96737",
+ "flagged_pattern": "Wakusa Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96738",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96738",
+ "flagged_pattern": "Wakusa Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96739",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96739",
+ "flagged_pattern": "Wakusa Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96740",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96740",
+ "flagged_pattern": "Wakusa Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96741",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96741",
+ "flagged_pattern": "Wakusa Cherry Blossom",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96742",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96742",
+ "flagged_pattern": "Wakusa Stone Grouted",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96743",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96743",
+ "flagged_pattern": "Wakusa Stone Grouted",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96744",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96744",
+ "flagged_pattern": "Wakusa Stone Grouted",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96745",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96745",
+ "flagged_pattern": "Wakusa Stone Grouted",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96746",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96746",
+ "flagged_pattern": "Rishiri Island Tropical Lilly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96747",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96747",
+ "flagged_pattern": "Rishiri Island Tropical Lilly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96748",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96748",
+ "flagged_pattern": "Rishiri Island Tropical Lilly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96749",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96749",
+ "flagged_pattern": "Rishiri Island Tropical Lilly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96750",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96750",
+ "flagged_pattern": "Rishiri Island Tropical Lilly",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96751",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96751",
+ "flagged_pattern": "Rebun Island Lattice Trellis",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96753",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96753",
+ "flagged_pattern": "Rebun Island Lattice Trellis",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96754",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96754",
+ "flagged_pattern": "Rebun Island Lattice Trellis",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96755",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96755",
+ "flagged_pattern": "Rebun Island Lattice Trellis",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96756",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96756",
+ "flagged_pattern": "Rebun Island Lattice Trellis",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96757",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96757",
+ "flagged_pattern": "Todo Island Printed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96758",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96758",
+ "flagged_pattern": "Todo Island Printed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96759",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96759",
+ "flagged_pattern": "Todo Island Printed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "CDA-96760",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "96760",
+ "flagged_pattern": "Todo Island Printed",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LOD-43310",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "43310",
+ "flagged_pattern": "Lodge Living El Dorado",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-56166",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "FI71007",
+ "flagged_pattern": "Damask Contemporary Damask Metallic Cream and Tan",
+ "match_confidence": "exact",
+ "matched_pattern": "Damask",
+ "matched_color": "cream",
+ "sourced_cost": 5.0,
+ "computed_price": 9.05,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWQW-57001",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "AH40500",
+ "flagged_pattern": "Watercolor Sunflower Contemporary Floral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-57002",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "AH40502",
+ "flagged_pattern": "Watercolor Sunflower Contemporary Floral",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-58287",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "BD50000",
+ "flagged_pattern": "Persei Palm Contemporary Botanical",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-58289",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "BD50003",
+ "flagged_pattern": "Persei Palm Contemporary Botanical",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-58416",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "PR11708",
+ "flagged_pattern": "Bird Floral Prepasted Vintage Botanical",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-58456",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "ET10805",
+ "flagged_pattern": "Athena Palm Coastal Botanical",
+ "match_confidence": "exact",
+ "matched_pattern": "Athena Palm",
+ "matched_color": "Beige",
+ "sourced_cost": 5.0,
+ "computed_price": 9.05,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWQW-58483",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "ET13005",
+ "flagged_pattern": "Gulf Tropical Leaves Tropical Palm Leaves",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWQW-58603",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "DBW1000",
+ "flagged_pattern": "Kaleidoscope Contemporary Abstract",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40201",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40201",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40202",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40202",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40204",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40204",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40208",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40208",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40212",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40212",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "LN40218",
+ "vendor": "Malibu Wallpaper",
+ "mfr_sku": "LN40218",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-43240",
+ "vendor": "Versace",
+ "mfr_sku": "York",
+ "flagged_pattern": "Lampa Island",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "Versace",
+ "vendor": "Versace",
+ "mfr_sku": "VERSACE-WALLCOVERING-VERSACE",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-46292",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46293",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46294",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46295",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46296",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46297",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46299",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46300",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46301",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46302",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46303",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46304",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46305",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46306",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46307",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46308",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46309",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VERROOM-46311",
+ "vendor": "Versace",
+ "mfr_sku": "SANCAR",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-40535",
+ "vendor": "Versace",
+ "mfr_sku": "370535",
+ "flagged_pattern": "Isola Paradise Birds",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-40493",
+ "vendor": "Versace",
+ "mfr_sku": "370493",
+ "flagged_pattern": "Ravenna Royal Rings",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-40493",
+ "vendor": "Versace",
+ "mfr_sku": "370493",
+ "flagged_pattern": "Ravenna Royal Rings",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-40493",
+ "vendor": "Versace",
+ "mfr_sku": "40494",
+ "flagged_pattern": "Ravenna Royal Rings",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "VER-40493",
+ "vendor": "Versace",
+ "mfr_sku": "40494",
+ "flagged_pattern": "Ravenna Royal Rings",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "3683343254",
+ "vendor": "Versace",
+ "mfr_sku": "3683343254",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper ornaments, flowers & butterflies - metallic, pink",
+ "matched_color": "pink",
+ "sourced_cost": 96.95,
+ "computed_price": 175.48,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370553",
+ "vendor": "Versace",
+ "mfr_sku": "3796370553",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Crowns & Roses",
+ "matched_color": "black",
+ "sourced_cost": 109.9,
+ "computed_price": 198.91,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370552",
+ "vendor": "Versace",
+ "mfr_sku": "3796370552",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "3796370555",
+ "vendor": "Versace",
+ "mfr_sku": "3796370555",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Crowns & Roses",
+ "matched_color": "beige",
+ "sourced_cost": 109.9,
+ "computed_price": 198.91,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979386094",
+ "vendor": "Versace",
+ "mfr_sku": "3979386094",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Meander wallpaper VERSACE with structure design - white",
+ "matched_color": "White",
+ "sourced_cost": 89.95,
+ "computed_price": 162.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935221",
+ "vendor": "Versace",
+ "mfr_sku": "1202935221",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper border with meander design - metallic, red",
+ "matched_color": "white",
+ "sourced_cost": 10.95,
+ "computed_price": 19.82,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935241",
+ "vendor": "Versace",
+ "mfr_sku": "1202935241",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper striped with meander pattern - white, gold",
+ "matched_color": "white",
+ "sourced_cost": 79.9,
+ "computed_price": 144.62,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935704",
+ "vendor": "Versace",
+ "mfr_sku": "1202935704",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Mediterranean textured wallpaper - red",
+ "matched_color": "Red",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370492",
+ "vendor": "Versace",
+ "mfr_sku": "3796370492",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Home wallpaper circle pattern and Medusa - gold, silver, white",
+ "matched_color": "ivory",
+ "sourced_cost": 103.95,
+ "computed_price": 188.14,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370496",
+ "vendor": "Versace",
+ "mfr_sku": "3796370496",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Home wallpaper circle pattern and Medusa - silver, gold, pink",
+ "matched_color": "pink",
+ "sourced_cost": 103.95,
+ "computed_price": 188.14,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370494",
+ "vendor": "Versace",
+ "mfr_sku": "3796370494",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Home wallpaper circle pattern, metallic effect - silver, black",
+ "matched_color": "gray",
+ "sourced_cost": 103.95,
+ "computed_price": 188.14,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3683348624",
+ "vendor": "Versace",
+ "mfr_sku": "3683348624",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Golden VERSACE non-woven wallpaper with Medusa motif - metallic",
+ "matched_color": "Metallic",
+ "sourced_cost": 37.95,
+ "computed_price": 68.69,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979386102",
+ "vendor": "Versace",
+ "mfr_sku": "3979386102",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper Medusa Design Lable - Metallic, Black, White",
+ "matched_color": "ivory",
+ "sourced_cost": 89.95,
+ "computed_price": 162.81,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935472",
+ "vendor": "Versace",
+ "mfr_sku": "1202935472",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Black and white ornament border with metallic effect",
+ "matched_color": "white",
+ "sourced_cost": 10.95,
+ "computed_price": 19.82,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370531",
+ "vendor": "Versace",
+ "mfr_sku": "3796370531",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Home wallpaper paradise birds & golden accents - gold, black, yellow",
+ "matched_color": "black",
+ "sourced_cost": 109.9,
+ "computed_price": 198.91,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3683935825",
+ "vendor": "Versace",
+ "mfr_sku": "3683935825",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Plaster optics wallpaper cream white with texture pattern",
+ "matched_color": "cream",
+ "sourced_cost": 27.95,
+ "computed_price": 50.59,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3683935828",
+ "vendor": "Versace",
+ "mfr_sku": "3683935828",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Wallpaper wall plaster look with texture effect & mottled colour - grey",
+ "matched_color": "Grey",
+ "sourced_cost": 27.95,
+ "computed_price": 50.59,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3683935826",
+ "vendor": "Versace",
+ "mfr_sku": "3683935826",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Plaster optics wallpaper white with 3D texture pattern",
+ "matched_color": "White",
+ "sourced_cost": 27.95,
+ "computed_price": 50.59,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935244",
+ "vendor": "Versace",
+ "mfr_sku": "1202935244",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper black with stripes pattern - black, gold",
+ "matched_color": "black",
+ "sourced_cost": 79.9,
+ "computed_price": 144.62,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979387052",
+ "vendor": "Versace",
+ "mfr_sku": "3979387052",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Pastel VERSACE wallpaper with brand design - colourful",
+ "matched_color": "cream",
+ "sourced_cost": 100.95,
+ "computed_price": 182.71,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935841",
+ "vendor": "Versace",
+ "mfr_sku": "1202935841",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE gold wallpaper with floral pattern - metallic",
+ "matched_color": "Metallic",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979387062",
+ "vendor": "Versace",
+ "mfr_sku": "3979387062",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Pastel wallpaper VERSACE with floral ornament - multicoloured, metallic",
+ "matched_color": "cream",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796935857",
+ "vendor": "Versace",
+ "mfr_sku": "3796935857",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Red VERSACE wallpaper with floral pattern - red, gold, brown",
+ "matched_color": "burgundy",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935843",
+ "vendor": "Versace",
+ "mfr_sku": "1202935843",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Golden floral wallpaper from VERSACE with metallic colour",
+ "matched_color": "Gold",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935893",
+ "vendor": "Versace",
+ "mfr_sku": "1202935893",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Golden stripe wallpaper with lines & texture effect - metallic",
+ "matched_color": "Metallic",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979383838",
+ "vendor": "Versace",
+ "mfr_sku": "3979383838",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Fir green wallpaper VERSACE with structure embossing - green",
+ "matched_color": "Green",
+ "sourced_cost": 75.95,
+ "computed_price": 137.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979387031",
+ "vendor": "Versace",
+ "mfr_sku": "3979387031",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Colorful VERSACE wallpaper with gold ornament and jungle motif",
+ "matched_color": "aqua",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935465",
+ "vendor": "Versace",
+ "mfr_sku": "1202935465",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Wallpaper with silver metallic stripes - cream, grey",
+ "matched_color": "beige",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3511962285",
+ "vendor": "Versace",
+ "mfr_sku": "3511962285",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Dark green wallpaper non-woven mottled colour plain",
+ "matched_color": "green",
+ "sourced_cost": 27.95,
+ "computed_price": 50.59,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796366926",
+ "vendor": "Versace",
+ "mfr_sku": "3796366926",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper ornamental floral pattern - green, metallic, yellow",
+ "matched_color": "green",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935461",
+ "vendor": "Versace",
+ "mfr_sku": "1202935461",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Metallic wallpaper with plastic stripe pattern - grey, white",
+ "matched_color": "white",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935822",
+ "vendor": "Versace",
+ "mfr_sku": "1202935822",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Cream VERSACE plain wallpaper with fine structure - cream",
+ "matched_color": "Cream",
+ "sourced_cost": 73.95,
+ "computed_price": 133.85,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935823",
+ "vendor": "Versace",
+ "mfr_sku": "1202935823",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Golden VERSACE plain wallpaper with fine structure - gold",
+ "matched_color": "Gold",
+ "sourced_cost": 73.95,
+ "computed_price": 133.85,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935824",
+ "vendor": "Versace",
+ "mfr_sku": "1202935824",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Black non-woven wallpaper plain with texture pattern",
+ "matched_color": "black",
+ "sourced_cost": 27.95,
+ "computed_price": 50.59,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935894",
+ "vendor": "Versace",
+ "mfr_sku": "1202935894",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Dark wallpaper stripes pattern with texture effect - brown",
+ "matched_color": "Brown",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935914",
+ "vendor": "Versace",
+ "mfr_sku": "1202935914",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Black VERSACE plain wallpaper with fine structure - Black",
+ "matched_color": "Black",
+ "sourced_cost": 73.95,
+ "computed_price": 133.85,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "1202935904",
+ "vendor": "Versace",
+ "mfr_sku": "1202935904",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Wallpaper with narrow & moving stripes - brown",
+ "matched_color": "Brown",
+ "sourced_cost": 29.95,
+ "computed_price": 54.21,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3683343272",
+ "vendor": "Versace",
+ "mfr_sku": "3683343272",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Pink non-woven wallpaper plain with metallic sheen for baby room",
+ "matched_color": "pink",
+ "sourced_cost": 69.95,
+ "computed_price": 126.61,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3796370502",
+ "vendor": "Versace",
+ "mfr_sku": "3796370502",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE Home plain wallpaper pink and shimmer effect - pink",
+ "matched_color": "Pink",
+ "sourced_cost": 79.9,
+ "computed_price": 144.62,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979383846",
+ "vendor": "Versace",
+ "mfr_sku": "3979383846",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper mint green with satin gloss effect - green",
+ "matched_color": "Green",
+ "sourced_cost": 75.95,
+ "computed_price": 137.47,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "3979387044",
+ "vendor": "Versace",
+ "mfr_sku": "3979387044",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "VERSACE wallpaper silver ornament in tile pattern - grey, black",
+ "matched_color": "gray",
+ "sourced_cost": 99.95,
+ "computed_price": 180.9,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "366922",
+ "vendor": "Versace",
+ "mfr_sku": "366922",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806001-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW001TCAI5UL005",
+ "flagged_pattern": "LEOPARDO SOLO MURAL ALESSIO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806002-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW001TCAI5UL033",
+ "flagged_pattern": "LEOPARDO MURAL ELENA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806003-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW001TCAI5UZ005",
+ "flagged_pattern": "ZEBRA MURAL LUCIA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806004-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW001TCAI8UB003",
+ "flagged_pattern": "VASE MEDITERRANEO MURAL FREDERICO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806006-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW003TCAHPUC072",
+ "flagged_pattern": "GEO CARRETTO MURAL CARRETTO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806008-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHNU0011",
+ "flagged_pattern": "TELLETA LUNA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806009-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHNU0018",
+ "flagged_pattern": "TELLETA CHIARA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806010-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHNU0051",
+ "flagged_pattern": "TELLETA ARIA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806011-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHNU0059",
+ "flagged_pattern": "TELLETA GIANA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806012-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHNU0060",
+ "flagged_pattern": "TELLETA GIOVANNI BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806013-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOU0072",
+ "flagged_pattern": "DG MEDIANO MEZZANOTTE BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806014-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOU0073",
+ "flagged_pattern": "DG MEDIANO CREMA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806015-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOU0074",
+ "flagged_pattern": "DG MEDIANO PICCOLO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806016-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOU0075",
+ "flagged_pattern": "DG MEDIANO CLASSICO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806017-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOUL022",
+ "flagged_pattern": "LEOPARDO INCOGNITO ALESSIA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806020-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOUZ006",
+ "flagged_pattern": "ZEBRA ROMANCE CARINA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806021-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAHOUZ011",
+ "flagged_pattern": "ZEBRA ROMANCE CONTRASTO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806023-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "tcw007tcai9ub001",
+ "flagged_pattern": "BLU MEDITERRANEO GAIA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806024-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAI9UL001",
+ "flagged_pattern": "LEOPARDO DOLCE FRANCESCA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806026-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAI9UL037",
+ "flagged_pattern": "LEOPARDO DOLCE PANTERA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806029-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAI9UZ026",
+ "flagged_pattern": "ZEBRA DOLCE GIADA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806031-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAIBU0018",
+ "flagged_pattern": "DAMASCO SALVATORE BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806032-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAL9U0009",
+ "flagged_pattern": "DG GRANDE LORENZO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806033-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW007TCAL9U0010",
+ "flagged_pattern": "DG GRANDE ANTONIO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806034-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW009TCAI5UL040",
+ "flagged_pattern": "LEOPARDO INCOGNITO MURAL JEMMA BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806035-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW009TCAI5UZ018",
+ "flagged_pattern": "MULTI ZEBRA MURAL TULLIO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DGW-806036-SAMPLE",
+ "vendor": "Dolce & Gabbana",
+ "mfr_sku": "TCW011TCAHPUC092",
+ "flagged_pattern": "SOL CARRETTO MURAL ROCCO BY DOLCE & GABANNA",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14364",
+ "vendor": "William Morris",
+ "mfr_sku": "216459",
+ "flagged_pattern": "| William Morris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14365",
+ "vendor": "William Morris",
+ "mfr_sku": "216484",
+ "flagged_pattern": "| William Morris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14366",
+ "vendor": "William Morris",
+ "mfr_sku": "216819",
+ "flagged_pattern": "| William Morris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14367",
+ "vendor": "William Morris",
+ "mfr_sku": "216840",
+ "flagged_pattern": "| William Morris",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14368",
+ "vendor": "William Morris",
+ "mfr_sku": "216859",
+ "flagged_pattern": "Fruit 1 Gold-Coral Beige",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14870",
+ "vendor": "William Morris",
+ "mfr_sku": "210368",
+ "flagged_pattern": "Marigold Wedgwood",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14871",
+ "vendor": "William Morris",
+ "mfr_sku": "210369",
+ "flagged_pattern": "Marigold Artichoke",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14879",
+ "vendor": "William Morris",
+ "mfr_sku": "214713",
+ "flagged_pattern": "Morris Seaweed Thyme Cobalt",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14880",
+ "vendor": "William Morris",
+ "mfr_sku": "214714",
+ "flagged_pattern": "Morris Seaweed Woad Ink",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14881",
+ "vendor": "William Morris",
+ "mfr_sku": "214715",
+ "flagged_pattern": "Morris Seaweed Ecru Silver",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14882",
+ "vendor": "William Morris",
+ "mfr_sku": "214716",
+ "flagged_pattern": "Morris Seaweed Poppy Ebony",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14892",
+ "vendor": "William Morris",
+ "mfr_sku": "210388",
+ "flagged_pattern": "Pimpernel Manilla Bayleaf",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWM-14893",
+ "vendor": "William Morris",
+ "mfr_sku": "210389",
+ "flagged_pattern": "Pimpernel Slate Privet",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-198443",
+ "vendor": "Romo",
+ "mfr_sku": "W450/05",
+ "flagged_pattern": "Delilah",
+ "match_confidence": "exact",
+ "matched_pattern": "Delilah",
+ "matched_color": "Jade",
+ "sourced_cost": 130.2,
+ "computed_price": 235.66,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWC-187944",
+ "vendor": "Romo",
+ "mfr_sku": "W450/03",
+ "flagged_pattern": "Delilah",
+ "match_confidence": "exact",
+ "matched_pattern": "Delilah",
+ "matched_color": "Boudoir",
+ "sourced_cost": 130.2,
+ "computed_price": 235.66,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWRO-29359",
+ "vendor": "Romo",
+ "mfr_sku": "W939-02",
+ "flagged_pattern": "Naira Wallpaper Mehndi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W924/02FP",
+ "vendor": "Romo",
+ "mfr_sku": "W924/02FP",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W444/03",
+ "vendor": "Romo",
+ "mfr_sku": "W444/03",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W590/01",
+ "vendor": "Romo",
+ "mfr_sku": "W590/01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W924/03FP",
+ "vendor": "Romo",
+ "mfr_sku": "W924/03FP",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W606/02",
+ "vendor": "Romo",
+ "mfr_sku": "W606/02",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W592/01",
+ "vendor": "Romo",
+ "mfr_sku": "W592/01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W577/01",
+ "vendor": "Romo",
+ "mfr_sku": "W577/01",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "W464/13",
+ "vendor": "Romo",
+ "mfr_sku": "W464/13",
+ "flagged_pattern": "",
+ "match_confidence": "exact",
+ "matched_pattern": "Raya Silk Embossed",
+ "matched_color": "Azure",
+ "sourced_cost": 143.85,
+ "computed_price": 260.36,
+ "price_basis": "cost/0.65/0.85"
+ },
+ {
+ "dw_sku": "DWHG-1000-SAMPLE",
+ "vendor": "Hygge & West",
+ "mfr_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-SKY",
+ "flagged_pattern": "Back to the Future",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWHG-1001",
+ "vendor": "Hygge & West",
+ "mfr_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-DENIM",
+ "flagged_pattern": "Back to the Future",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-BLACK",
+ "vendor": "Hygge & West",
+ "mfr_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-BLACK",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-RED",
+ "vendor": "Hygge & West",
+ "mfr_sku": "BACK-TO-THE-FUTURE-HILL-VALLEY-WALLPAPER-RED",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ET-BE-GOOD-WALLPAPER-MIDNIGHT",
+ "vendor": "Hygge & West",
+ "mfr_sku": "ET-BE-GOOD-WALLPAPER-MIDNIGHT",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "ET-BE-GOOD-WALLPAPER-DUSK",
+ "vendor": "Hygge & West",
+ "mfr_sku": "ET-BE-GOOD-WALLPAPER-DUSK",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "JAWS-AMITY-WALLPAPER-SKY",
+ "vendor": "Hygge & West",
+ "mfr_sku": "JAWS-AMITY-WALLPAPER-SKY",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "JAWS-AMITY-WALLPAPER-INK",
+ "vendor": "Hygge & West",
+ "mfr_sku": "JAWS-AMITY-WALLPAPER-INK",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "COPY-OF-JAWS-AMITY-WALLPAPER-INDIGO",
+ "vendor": "Hygge & West",
+ "mfr_sku": "COPY-OF-JAWS-AMITY-WALLPAPER-INDIGO",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "JAWS-AMITY-WALLPAPER-BLUSH",
+ "vendor": "Hygge & West",
+ "mfr_sku": "JAWS-AMITY-WALLPAPER-BLUSH",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001679",
+ "vendor": "NLXL",
+ "mfr_sku": "1001705",
+ "flagged_pattern": "Nizwa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001680",
+ "vendor": "NLXL",
+ "mfr_sku": "1001706",
+ "flagged_pattern": "Nizwa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001681",
+ "vendor": "NLXL",
+ "mfr_sku": "1001707",
+ "flagged_pattern": "Nizwa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001686",
+ "vendor": "NLXL",
+ "mfr_sku": "1001712",
+ "flagged_pattern": "Witmore Diamond Webbing",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001713",
+ "vendor": "NLXL",
+ "mfr_sku": "1001739",
+ "flagged_pattern": "Walter Wainscotting",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001714",
+ "vendor": "NLXL",
+ "mfr_sku": "mrv-23ls",
+ "flagged_pattern": "Walter Wainscotting",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001715",
+ "vendor": "NLXL",
+ "mfr_sku": "MRV-24",
+ "flagged_pattern": "Walter Wainscotting",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001716",
+ "vendor": "NLXL",
+ "mfr_sku": "MRV-25 WHITE GOLD",
+ "flagged_pattern": "Walter Wainscotting",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWC-1001798",
+ "vendor": "NLXL",
+ "mfr_sku": "1001830",
+ "flagged_pattern": "Samantha Square Webbing",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWJS-14580",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "TL1925",
+ "flagged_pattern": "Herve Red & Blue Multi",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWJS-17217",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "TC2646",
+ "flagged_pattern": "Hannah Coral Hawthorne Coral & Cream Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWJS-14674",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "CL2572",
+ "flagged_pattern": "Ludovic Black Liquid Ivory & Charcoal Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWJS-15863",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "RP7301",
+ "flagged_pattern": "Marlette Menagerie Rust Wallcoveri Rust Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWJS-16382",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "HO2168",
+ "flagged_pattern": "Sherman Shirting Cream & Sand Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "",
+ "vendor": "Jeffrey Stevens",
+ "mfr_sku": "",
+ "flagged_pattern": "",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503280",
+ "vendor": "Malibu",
+ "mfr_sku": "da61204",
+ "flagged_pattern": "Masaccio Ground",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503280",
+ "vendor": "Malibu",
+ "mfr_sku": "da61204",
+ "flagged_pattern": "Hiding Tigers",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503300",
+ "vendor": "Malibu",
+ "mfr_sku": "CN31304-2",
+ "flagged_pattern": "Masaccio Ground",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503300",
+ "vendor": "Malibu",
+ "mfr_sku": "CN31304-2",
+ "flagged_pattern": "Charleston Trellis Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503320",
+ "vendor": "Malibu",
+ "mfr_sku": "jb20204",
+ "flagged_pattern": "Saratoga",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-503320",
+ "vendor": "Malibu",
+ "mfr_sku": "jb20204",
+ "flagged_pattern": "Trail Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-502880",
+ "vendor": "Zoffany",
+ "mfr_sku": "313114",
+ "flagged_pattern": "Papaver Stripe Tuscan Pink/Nimbus Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWA-80658",
+ "vendor": "Scalamandre Fabrics",
+ "mfr_sku": "S7ATTC-003",
+ "flagged_pattern": "TUNDAR BLANKET",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-502830",
+ "vendor": "Farrow & Ball",
+ "mfr_sku": "PURNONBP",
+ "flagged_pattern": "Purnon Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWWC-507900",
+ "vendor": "Studio Ditte",
+ "mfr_sku": "90876",
+ "flagged_pattern": "Bird wallpaper blue & gold Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWKK-143827",
+ "vendor": "Threads",
+ "mfr_sku": "EW15005_905",
+ "flagged_pattern": "Whistler",
+ "match_confidence": "review",
+ "matched_pattern": "Whistler",
+ "matched_color": "(multi-cost pattern)",
+ "sourced_cost_range": [
+ 17.95,
+ 31.95
+ ],
+ "computed_price_range": [
+ 17.95,
+ 31.95
+ ],
+ "price_basis": "MAP",
+ "rule": "B: pattern has >1 distinct cost"
+ },
+ {
+ "dw_sku": "DWWC-500460",
+ "vendor": "Rebel Studio",
+ "mfr_sku": "16211",
+ "flagged_pattern": "The Swedish Forest Wallcovering",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "DWKK-128016",
+ "vendor": "Clarke And Clarke",
+ "mfr_sku": "W0187/01.CAC.0",
+ "flagged_pattern": "Mombasa",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ },
+ {
+ "dw_sku": "1436006",
+ "vendor": "Contrado",
+ "mfr_sku": "SHOPPER-BAGS",
+ "flagged_pattern": "Shopper Bags",
+ "match_confidence": "unresolved",
+ "matched_pattern": null,
+ "sourced_cost": null,
+ "computed_price": null
+ }
+ ]
+}
\ No newline at end of file
← 9ebc57f Part A APPLIED: 1086 product_map durable costs + 1101 workli
·
back to Dw Five Field Step0
·
auto-save: 2026-06-21T19:31:37 (1 files) — vendor-pricelists 71eb013 →