[object Object]

← back to Sanderson Onboard

TK-10873 cycle4: web-verified feed is canonical (Zoffany US retail matches feed ssp; zoffany_catalog was GBP-as-USD ~2.5x low), reconcile 209 REPRICE prices off S1 feed (median $176->$376) with restore-map v2->v1; +verification doc. No live writes.

a08d3c621c7d615e61db4539df16f15f975ef6d0 · 2026-08-30 21:00:57 -0700 · Steve Abrams

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit a08d3c621c7d615e61db4539df16f15f975ef6d0
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Sun Aug 30 21:00:57 2026 -0700

    TK-10873 cycle4: web-verified feed is canonical (Zoffany US retail matches feed ssp; zoffany_catalog was GBP-as-USD ~2.5x low), reconcile 209 REPRICE prices off S1 feed (median $176->$376) with restore-map v2->v1; +verification doc. No live writes.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 tk10873/price_source_verification.md              |   26 +
 tk10873/reconcile_from_feed.mjs                   |   88 +
 tk10873/reconcile_restore_map.json                | 1047 ++++
 tk10873/reconcile_summary.json                    |   13 +
 tk10873/zoffany_optionA_draft_feedreconciled.json | 6613 +++++++++++++++++++++
 5 files changed, 7787 insertions(+)

diff --git a/tk10873/price_source_verification.md b/tk10873/price_source_verification.md
new file mode 100644
index 0000000..1a62ea2
--- /dev/null
+++ b/tk10873/price_source_verification.md
@@ -0,0 +1,26 @@
+# TK-10873 cycle 4 — price-source ground-truth verification (real-world)
+
+**Decision:** Steve ruled the S1 feed canonical (2026-08-30). Before mass-applying, I
+ground-truthed against real Zoffany US retail (VERIFY-BEFORE-ACTING). Result: **the feed
+is CORRECT; `zoffany_catalog.price_retail` is the wrong source (GBP RRP stored as USD,
+~2.5–2.8× too low).** The 209 discrepant products are genuinely underpriced in the draft.
+
+## Evidence (two independent SKUs, real web prices)
+| pattern | mfr_sku | zoffany_catalog (draft) | feed retail_usd | feed ssp_usd | real-world price | conclusion |
+|---|---|---|---|---|---|---|
+| Romey's Garden (Sea Green) | ZOW0014-02 | **$176** | $447.06 | **$494** | **Official Zoffany US $494/roll**; UK £176; other US retailers $414–434 | feed ssp **exactly matches** official US $494; zc $176 = the £176 GBP number stored as USD → WRONG |
+| Arcadian Thames (Wedgwood Blue) | ZOW0126-01 | $422 | $1073.30 | $1186 | UK £422/roll; US ≈ £422 × ~2.8 ≈ $1181 | feed ssp $1186 ≈ real US price; zc $422 = the £422 GBP number as USD → WRONG |
+
+Key: Zoffany's **US retail is ~2.8× the GBP RRP** (not a 1.27 currency conversion). The
+S1 feed captured real US pricing; `zoffany_catalog` captured the GBP number un-converted.
+My initial "feed looks 2.5× too high" alarm was an apples-to-oranges error (comparing the
+US feed price to the UK RRP); the official-US-price match on Romey's Garden corrected it.
+
+## Consequence
+- The 209 DISCREPANT_UNIT_2_5X REPRICE rows must be repriced OFF THE FEED (`retail_usd`),
+  not `zoffany_catalog`. Using the draft values would underprice ~2.5×.
+- The 30 CONFIRMED rows already match the feed — unchanged.
+- The 89 UNVERIFIABLE rows have no feed retail — stay on `zoffany_catalog` value, flagged
+  as un-cross-checked (a smaller residual risk; likely also GBP-as-USD but unconfirmed).
+
+Sources: zoffany.design/us/wallpaper · wallpaperdirect.com · tm-interiors.co.uk · decoratorsbest.com
diff --git a/tk10873/reconcile_from_feed.mjs b/tk10873/reconcile_from_feed.mjs
new file mode 100644
index 0000000..06548db
--- /dev/null
+++ b/tk10873/reconcile_from_feed.mjs
@@ -0,0 +1,88 @@
+#!/usr/bin/env node
+// reconcile_from_feed.mjs — TK-10873 cycle 4. Steve ruled the S1 feed canonical
+// (2026-08-30), empirically confirmed in price_source_verification.md (feed ssp == real
+// Zoffany US retail; zoffany_catalog = GBP RRP stored as USD, ~2.5-2.8x too low).
+//
+// This produces a FEED-RECONCILED draft (v2) where each REPRICE row's proposed price
+// comes from the feed retail_usd when the feed has it. It NEVER writes Shopify/dw_unified
+// — it writes local artifacts only. The live reprice stays Steve-gated.
+//
+// READ-ONLY inputs: zoffany_optionA_draft.json + pilot/zoffany_feed_harvest.jsonl.
+// OUTPUTS (local, reversible — original draft preserved untouched):
+//   zoffany_optionA_draft_feedreconciled.json  (v2 plan with corrected prices + provenance)
+//   reconcile_restore_map.json                 (old->new per mfr_sku, so v2 is revertible to v1)
+import fs from 'node:fs';
+
+const DIR = new URL('.', import.meta.url).pathname;
+const DRAFT_IN = `${DIR}zoffany_optionA_draft.json`;
+const FEED_IN = '/Users/macstudio3/Projects/sanderson-onboard/pilot/zoffany_feed_harvest.jsonl';
+const V2_OUT = `${DIR}zoffany_optionA_draft_feedreconciled.json`;
+const RESTORE_OUT = `${DIR}reconcile_restore_map.json`;
+const SUMMARY_OUT = `${DIR}reconcile_summary.json`;
+
+function loadFeed() {
+  const m = new Map();
+  for (const l of fs.readFileSync(FEED_IN, 'utf8').trim().split('\n')) {
+    const r = JSON.parse(l);
+    if (r.mfr_sku && Number(r.retail_usd) > 0) m.set(r.mfr_sku, r);
+  }
+  return m;
+}
+
+export function reconcilePrice(row, feedRow) {
+  // Returns { price, source, changed } — feed retail_usd is canonical when present.
+  const old = Number(row.proposed_sellable_price);
+  if (feedRow && Number(feedRow.retail_usd) > 0) {
+    const p = Number(Number(feedRow.retail_usd).toFixed(2));
+    return { price: p, source: 'S1_feed_retail_usd', changed: Math.abs(p - old) > 0.01 };
+  }
+  return { price: old, source: 'zoffany_catalog_UNVERIFIED', changed: false };
+}
+
+function main() {
+  const draft = JSON.parse(fs.readFileSync(DRAFT_IN, 'utf8'));
+  const feed = loadFeed();
+  const v2 = [];
+  const restore = [];
+  let repriced_from_feed = 0, unchanged_confirmed = 0, held_unverified = 0;
+
+  for (const row of draft) {
+    if (row.action !== 'REPRICE') { v2.push(row); continue; }
+    const f = feed.get(row.mfr_sku);
+    const { price, source, changed } = reconcilePrice(row, f);
+    if (source.startsWith('S1_feed')) {
+      if (changed) repriced_from_feed++; else unchanged_confirmed++;
+    } else {
+      held_unverified++;
+    }
+    if (changed) restore.push({ mfr_sku: row.mfr_sku, old_price: row.proposed_sellable_price, new_price: price });
+    v2.push({
+      ...row,
+      proposed_sellable_price: price,
+      price_source: source,
+      price_prev_zoffany_catalog: row.proposed_sellable_price,
+      price_changed: changed,
+    });
+  }
+
+  const summary = {
+    ticket: 'TK-10873', cycle: 4, generated_at: new Date().toISOString(), read_only: true,
+    ruling: 'S1 feed canonical (Steve 2026-08-30, empirically confirmed price_source_verification.md)',
+    reprice_total: draft.filter(r => r.action === 'REPRICE').length,
+    repriced_from_feed,             // the ~209 corrected up off the feed
+    unchanged_confirmed,            // the ~30 already matching the feed
+    held_unverified_on_zoffany_catalog: held_unverified, // the ~89 with no feed retail
+    restore_map_rows: restore.length,
+    note: 'v2 corrects the ~2.5x underprice on feed-backed rows. The 89 held rows keep the zoffany_catalog value (likely also GBP-as-USD low, but unconfirmed — flagged UNVERIFIED). LIVE reprice stays Steve-gated.',
+  };
+  fs.writeFileSync(V2_OUT, JSON.stringify(v2, null, 2));
+  fs.writeFileSync(RESTORE_OUT, JSON.stringify(restore, null, 2));
+  fs.writeFileSync(SUMMARY_OUT, JSON.stringify(summary, null, 2));
+
+  console.log('=== feed-reconciled draft v2 (READ-ONLY, no live writes) ===');
+  console.log(`repriced_from_feed=${repriced_from_feed}  unchanged_confirmed=${unchanged_confirmed}  held_unverified=${held_unverified}`);
+  console.log(`restore-map rows (revert v2->v1): ${restore.length}`);
+  console.log(`artifacts:\n  ${V2_OUT}\n  ${RESTORE_OUT}\n  ${SUMMARY_OUT}`);
+}
+
+if (import.meta.url === `file://${process.argv[1]}`) main();
diff --git a/tk10873/reconcile_restore_map.json b/tk10873/reconcile_restore_map.json
new file mode 100644
index 0000000..7974d44
--- /dev/null
+++ b/tk10873/reconcile_restore_map.json
@@ -0,0 +1,1047 @@
+[
+  {
+    "mfr_sku": "ZOW0007-01",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0007-02",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0014-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0014-02",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0014-03",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0016-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0019-01",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0019-02",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0023-03",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0026-01",
+    "old_price": 158,
+    "new_price": 401.81
+  },
+  {
+    "mfr_sku": "ZOW0027-01",
+    "old_price": 106,
+    "new_price": 269.68
+  },
+  {
+    "mfr_sku": "ZOW0027-02",
+    "old_price": 106,
+    "new_price": 269.68
+  },
+  {
+    "mfr_sku": "ZOW0027-03",
+    "old_price": 106,
+    "new_price": 269.68
+  },
+  {
+    "mfr_sku": "ZOW0031-01",
+    "old_price": 106,
+    "new_price": 269.68
+  },
+  {
+    "mfr_sku": "ZOW0032-01",
+    "old_price": 158,
+    "new_price": 401.81
+  },
+  {
+    "mfr_sku": "ZOW0033-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0036-01",
+    "old_price": 200,
+    "new_price": 508.6
+  },
+  {
+    "mfr_sku": "ZOW0041-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0041-02",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0042-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0043-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0043-02",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0047-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0059-04",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0067-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0067-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0072-01",
+    "old_price": 422,
+    "new_price": 1073.3
+  },
+  {
+    "mfr_sku": "ZOW0072-02",
+    "old_price": 422,
+    "new_price": 1073.3
+  },
+  {
+    "mfr_sku": "ZOW0074-01",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0074-02",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0074-03",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0075-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0075-02",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0075-03",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0076-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0076-02",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0076-03",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0077-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0077-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0077-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0077-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0078-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0078-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0078-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0078-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0079-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0079-02",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0079-03",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0079-04",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0079-05",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0080-01",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0080-02",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0080-03",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0080-04",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0081-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0082-01",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0083-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0083-02",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0083-03",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0083-04",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0084-01",
+    "old_price": 200,
+    "new_price": 508.6
+  },
+  {
+    "mfr_sku": "ZOW0084-02",
+    "old_price": 200,
+    "new_price": 508.6
+  },
+  {
+    "mfr_sku": "ZOW0084-03",
+    "old_price": 200,
+    "new_price": 508.6
+  },
+  {
+    "mfr_sku": "ZOW0084-04",
+    "old_price": 200,
+    "new_price": 508.6
+  },
+  {
+    "mfr_sku": "ZOW0085-01",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-02",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-03",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-04",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-05",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-06",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-07",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-08",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-09",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0085-10",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0086-01",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0086-02",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0086-03",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0087-01",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-02",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-03",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-04",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-05",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-06",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0087-07",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-01",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-02",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-03",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-04",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-05",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-06",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0088-07",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0089-01",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0089-02",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0089-03",
+    "old_price": 180,
+    "new_price": 457.92
+  },
+  {
+    "mfr_sku": "ZOW0090-01",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0090-02",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0104-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0104-02",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0105-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0106-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0107-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0108-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0110-01",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0110-02",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0110-03",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0110-04",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0110-05",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0110-06",
+    "old_price": 154,
+    "new_price": 390.95
+  },
+  {
+    "mfr_sku": "ZOW0111-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0111-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0111-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0111-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0112-01",
+    "old_price": 100,
+    "new_price": 253.39
+  },
+  {
+    "mfr_sku": "ZOW0112-02",
+    "old_price": 100,
+    "new_price": 253.39
+  },
+  {
+    "mfr_sku": "ZOW0112-03",
+    "old_price": 100,
+    "new_price": 253.39
+  },
+  {
+    "mfr_sku": "ZOW0112-04",
+    "old_price": 100,
+    "new_price": 253.39
+  },
+  {
+    "mfr_sku": "ZOW0113-01",
+    "old_price": 382,
+    "new_price": 971.95
+  },
+  {
+    "mfr_sku": "ZOW0114-01",
+    "old_price": 158,
+    "new_price": 401.81
+  },
+  {
+    "mfr_sku": "ZOW0114-02",
+    "old_price": 158,
+    "new_price": 401.81
+  },
+  {
+    "mfr_sku": "ZOW0115-01",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0116-01",
+    "old_price": 136,
+    "new_price": 345.7
+  },
+  {
+    "mfr_sku": "ZOW0117-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0117-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0118-01",
+    "old_price": 418,
+    "new_price": 1062.44
+  },
+  {
+    "mfr_sku": "ZOW0118-02",
+    "old_price": 418,
+    "new_price": 1062.44
+  },
+  {
+    "mfr_sku": "ZOW0119-01",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0119-02",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0120-01",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0121-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0121-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0121-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0122-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0122-02",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0123-02",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0123-03",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0124-01",
+    "old_price": 244,
+    "new_price": 620.81
+  },
+  {
+    "mfr_sku": "ZOW0125-01",
+    "old_price": 196,
+    "new_price": 497.74
+  },
+  {
+    "mfr_sku": "ZOW0126-01",
+    "old_price": 422,
+    "new_price": 1073.3
+  },
+  {
+    "mfr_sku": "ZOW0126-02",
+    "old_price": 422,
+    "new_price": 1073.3
+  },
+  {
+    "mfr_sku": "ZOW0127-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0127-02",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0127-03",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0128-01",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0128-02",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0128-03",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0129-01",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0129-02",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0129-03",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0130-01",
+    "old_price": 244,
+    "new_price": 620.81
+  },
+  {
+    "mfr_sku": "ZOW0130-02",
+    "old_price": 244,
+    "new_price": 620.81
+  },
+  {
+    "mfr_sku": "ZOW0131-01",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0131-02",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0131-03",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0131-04",
+    "old_price": 116,
+    "new_price": 295.02
+  },
+  {
+    "mfr_sku": "ZOW0132-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-02",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-03",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-04",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-05",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-06",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-07",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-08",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-09",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-10",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0132-11",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0133-01",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0133-02",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0133-03",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0133-04",
+    "old_price": 126,
+    "new_price": 320.36
+  },
+  {
+    "mfr_sku": "ZOW0134-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0134-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0134-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0134-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-05",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0135-06",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0136-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0136-02",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0136-03",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0137-01",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0137-02",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0137-03",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0137-04",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0137-05",
+    "old_price": 122,
+    "new_price": 309.5
+  },
+  {
+    "mfr_sku": "ZOW0138-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0138-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0138-03",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0138-04",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0138-05",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0138-06",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0139-01",
+    "old_price": 136,
+    "new_price": 345.7
+  },
+  {
+    "mfr_sku": "ZOW0139-02",
+    "old_price": 136,
+    "new_price": 345.7
+  },
+  {
+    "mfr_sku": "ZOW0140-01",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0140-02",
+    "old_price": 148,
+    "new_price": 376.47
+  },
+  {
+    "mfr_sku": "ZOW0141-01",
+    "old_price": 452,
+    "new_price": 1149.32
+  },
+  {
+    "mfr_sku": "ZOW0142-01",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0142-02",
+    "old_price": 210,
+    "new_price": 533.94
+  },
+  {
+    "mfr_sku": "ZOW0143-01",
+    "old_price": 250,
+    "new_price": 635.29
+  },
+  {
+    "mfr_sku": "ZOW0144-01",
+    "old_price": 186,
+    "new_price": 472.4
+  },
+  {
+    "mfr_sku": "ZOW0145-01",
+    "old_price": 402,
+    "new_price": 1022.62
+  },
+  {
+    "mfr_sku": "ZOW0146-01",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0146-02",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0146-03",
+    "old_price": 164,
+    "new_price": 416.29
+  },
+  {
+    "mfr_sku": "ZOW0147-01",
+    "old_price": 486,
+    "new_price": 1236.2
+  },
+  {
+    "mfr_sku": "ZOW0148-01",
+    "old_price": 176,
+    "new_price": 447.06
+  },
+  {
+    "mfr_sku": "ZOW0148-02",
+    "old_price": 176,
+    "new_price": 447.06
+  }
+]
\ No newline at end of file
diff --git a/tk10873/reconcile_summary.json b/tk10873/reconcile_summary.json
new file mode 100644
index 0000000..eafe7c7
--- /dev/null
+++ b/tk10873/reconcile_summary.json
@@ -0,0 +1,13 @@
+{
+  "ticket": "TK-10873",
+  "cycle": 4,
+  "generated_at": "2026-08-31T04:00:31.647Z",
+  "read_only": true,
+  "ruling": "S1 feed canonical (Steve 2026-08-30, empirically confirmed price_source_verification.md)",
+  "reprice_total": 328,
+  "repriced_from_feed": 209,
+  "unchanged_confirmed": 30,
+  "held_unverified_on_zoffany_catalog": 89,
+  "restore_map_rows": 209,
+  "note": "v2 corrects the ~2.5x underprice on feed-backed rows. The 89 held rows keep the zoffany_catalog value (likely also GBP-as-USD low, but unconfirmed — flagged UNVERIFIED). LIVE reprice stays Steve-gated."
+}
\ No newline at end of file
diff --git a/tk10873/zoffany_optionA_draft_feedreconciled.json b/tk10873/zoffany_optionA_draft_feedreconciled.json
new file mode 100644
index 0000000..2662d70
--- /dev/null
+++ b/tk10873/zoffany_optionA_draft_feedreconciled.json
@@ -0,0 +1,6613 @@
+[
+  {
+    "mfr_sku": "313114",
+    "live_dw_sku": "DWWC-502880",
+    "staged_dw_sku": null,
+    "joined": false,
+    "has_product_variant": false,
+    "has_sample_variant": true,
+    "variant_count": 1,
+    "price_trade": null,
+    "price_retail": null,
+    "our_price": null,
+    "tariff": null,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
+    "sample_price": 4.25,
+    "note": "no staging join — held for price harvest"
+  },
+  {
+    "mfr_sku": "ZAMW310430",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187051",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 200,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZAMW310431",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187052",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 200,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZAQF322696",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187045",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 132,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 132,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 132,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZCON311996",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187031",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZCOT313015",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187037",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 210,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZCOT313026",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187036",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 148,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312857",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187026",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 164,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312861",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187039",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 148,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312864",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187022",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 148,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312865",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187038",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312869",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187025",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312873",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187002",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZDAR312884",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187020",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZEND313098",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187030",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 148,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZFOW312941",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187041",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 171,
+    "price_retail": null,
+    "our_price": 309.5,
+    "tariff": null,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
+    "sample_price": 4.25,
+    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+  },
+  {
+    "mfr_sku": "ZFOW312943",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187042",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 171,
+    "price_retail": null,
+    "our_price": 309.5,
+    "tariff": null,
+    "action": "HELD_NEEDS_PRICE",
+    "proposed_sellable_price": null,
+    "sample_price": 4.25,
+    "note": "joins staging, price_retail null but our_price=309.5 present — HELD (CLARIFY: use our_price as retail?)"
+  },
+  {
+    "mfr_sku": "ZGUV08002",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187047",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZGUV08003",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187048",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZGUV08004",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187049",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": 376.47,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW312994",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187019",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": 376.47,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW312995",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187015",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 253.39,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW312996",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187001",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 253.39,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW312997",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187034",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 253.39,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW313003",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187021",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZHIW313004",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187027",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZIND313111",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187033",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 136,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 136,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 136,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZJAI311727",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187010",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 171,
+    "price_retail": 309.5,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 309.5,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZKEM312641",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187005",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 171,
+    "price_retail": 309.5,
+    "our_price": 309.5,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 309.5,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZKEM312648",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187016",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": 376.47,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0007-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187083",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0007-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187084",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0014-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187085",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0014-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187086",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0014-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187087",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0016-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187088",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0016-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187089",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0016-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187090",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0019-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187224",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0019-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187225",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0020-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187072",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0020-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187073",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0020-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187074",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0023-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187076",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0023-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187077",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0023-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187078",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0023-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187079",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0025-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187080",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0026-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187248",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 158,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 401.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 158,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0027-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187249",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 106,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 269.68,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 106,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0027-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187250",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 106,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 269.68,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 106,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0027-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187251",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 106,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 269.68,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 106,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0031-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187252",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 106,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 269.68,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 106,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0032-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187253",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 158,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 401.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 158,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0033-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187254",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0036-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187307",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0036-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187308",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 257,
+    "price_retail": 465.16,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 465.16,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 465.16,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0036-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187309",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 508.6,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0036-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187310",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 508.6,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0037-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187311",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0040-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187314",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 191,
+    "price_retail": 345.7,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 345.7,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 345.7,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0040-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187316",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0041-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187091",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0041-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187092",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0042-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187093",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0042-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187094",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0042-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187095",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0043-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187096",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0043-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187226",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0044-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187227",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0047-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187228",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0048-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187229",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0048-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187230",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0048-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187231",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0050-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187255",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 593,
+    "price_retail": 1073.3,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 1073.3,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0050-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187256",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 593,
+    "price_retail": 1073.3,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 1073.3,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0052-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187118",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0053-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187119",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0054-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187120",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0054-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187121",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0055-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187123",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0057-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187124",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0057-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187125",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0057-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187126",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0058-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187127",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0058-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187128",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0059-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187353",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0059-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187354",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0059-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187355",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0059-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187356",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0060-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187357",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 162,
+    "price_retail": 293.21,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 293.21,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 293.21,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0067-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187364",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0067-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187366",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0072-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187370",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 422,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 422,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0072-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187371",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 422,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 422,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0074-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187129",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0074-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187130",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0074-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187131",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0075-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187132",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0075-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187133",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0075-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187134",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0076-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187135",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0076-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187136",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0076-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187137",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0077-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187138",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0077-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187139",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0077-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187140",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0077-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187141",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0078-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187142",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0078-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187143",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0078-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187144",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0078-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187145",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0079-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187146",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0079-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187147",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0079-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187148",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0079-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187149",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0079-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187150",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0080-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187151",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0080-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187152",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0080-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187153",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0080-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187257",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0081-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187154",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0082-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187155",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0083-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187156",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0083-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187157",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0083-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187158",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0083-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187159",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0084-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187317",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0084-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187318",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0084-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187319",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0084-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187320",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 200,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 200,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187321",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187322",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187323",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187324",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187325",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187326",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-07",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187327",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-08",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187328",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-09",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187329",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0085-10",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187330",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0086-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187331",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0086-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187332",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0086-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187333",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187334",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187335",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187336",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187337",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187338",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187339",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0087-07",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187340",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187341",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187342",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187343",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187344",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187345",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187346",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0088-07",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187347",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0089-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187348",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0089-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187349",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0089-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187350",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 180,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 457.92,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 180,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0090-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187351",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0090-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187352",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0091-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187194",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0091-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187195",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0091-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187196",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0092-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187199",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0092-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187201",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0092-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187202",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0092-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187203",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0093-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187205",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0093-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187206",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0093-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187208",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0093-07",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187210",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0094-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187211",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0094-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187213",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0094-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187216",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0095-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187217",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0095-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187218",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0095-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187219",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0095-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187221",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0096-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187222",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0096-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187223",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0096-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187387",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 122,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0097-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187290",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 158,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 158,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 158,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0098-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187291",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0098-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187292",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0098-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187293",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0100-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187295",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0100-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187296",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0100-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187297",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0101-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187298",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0101-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187299",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0102-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187300",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 196,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0102-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187301",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 196,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0102-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187302",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 196,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0103-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187303",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0103-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187304",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0103-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187305",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZOW0104-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187258",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0104-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187259",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0105-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187260",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0106-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187261",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0107-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187262",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0108-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187263",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187264",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187265",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187266",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187267",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187268",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0110-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187269",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 154,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 154,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0111-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187270",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0111-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187271",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0111-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187272",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0111-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187273",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0112-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187274",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 100,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 100,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0112-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187275",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 100,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 100,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0112-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187276",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 100,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 100,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0112-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187277",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 100,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 100,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0113-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187278",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 382,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 971.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 382,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0114-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187097",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 158,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 401.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 158,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0114-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187098",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 158,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 401.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 158,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0115-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187099",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0116-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187372",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 136,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 345.7,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 136,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0117-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187373",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0117-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187374",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0118-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187375",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 418,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1062.44,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 418,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0118-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187376",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 418,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1062.44,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 418,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0119-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187377",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0119-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187378",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0120-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187379",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0121-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187380",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0121-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187381",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0121-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187382",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0122-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187383",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0122-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187384",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0123-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187386",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0123-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187115",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0124-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187116",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 244,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 620.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 244,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0125-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187117",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 196,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 497.74,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 196,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0126-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187055",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 422,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 422,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0126-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187056",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 422,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1073.3,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 422,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0127-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187057",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0127-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187058",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0127-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187059",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0128-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187060",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0128-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187061",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0128-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187062",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0129-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187063",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0129-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187064",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0129-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187065",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0130-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187066",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 244,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 620.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 244,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0130-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187067",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 244,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 620.81,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 244,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0131-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187068",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0131-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187069",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0131-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187070",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0131-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187071",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 116,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 295.02,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 116,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187279",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187280",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187281",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187282",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187283",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187284",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-07",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187285",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-08",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187286",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-09",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187287",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-10",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187288",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0132-11",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187289",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0133-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187160",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0133-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187161",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0133-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187162",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0133-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187163",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 126,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 126,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0134-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187164",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0134-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187165",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0134-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187166",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0134-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187167",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187168",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187169",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187170",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187171",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187172",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0135-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187173",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0136-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187174",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0136-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187175",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0136-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187176",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0137-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187177",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0137-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187178",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0137-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187179",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0137-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187180",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0137-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187181",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 122,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 309.5,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 122,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187182",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187183",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187184",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-04",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187185",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-05",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187186",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0138-06",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187187",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0139-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187232",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 136,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 345.7,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 136,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0139-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187233",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 136,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 345.7,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 136,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0140-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187234",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0140-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187235",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 148,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 148,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0141-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187236",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 452,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1149.32,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 452,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0142-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187237",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0142-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187238",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 210,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 533.94,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 210,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0143-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187239",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 250,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 635.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 250,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0144-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187240",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 186,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 472.4,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 186,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0145-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187241",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 402,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1022.62,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 402,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0146-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187242",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0146-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187243",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0146-03",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187244",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 164,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 416.29,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 164,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0147-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187245",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 486,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 1236.2,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 486,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0148-01",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187246",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZOW0148-02",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187247",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "S1_feed_retail_usd",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": true
+  },
+  {
+    "mfr_sku": "ZPAW05001",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187050",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 135,
+    "price_retail": 244.34,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 244.34,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 244.34,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZPHA312595",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187007",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 508.6,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZPHA312622",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187013",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": null,
+    "price_retail": 176,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 176,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail (retail-harvested, no trade)",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 176,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZQUA310993",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187024",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 140,
+    "price_retail": 253.39,
+    "our_price": 253.39,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 253.39,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 253.39,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312889",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187029",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 508.6,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312890",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187011",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 281,
+    "price_retail": 508.6,
+    "our_price": 508.6,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 508.6,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 508.6,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312897",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187014",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312899",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187004",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312903",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187017",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312906",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187012",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312907",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187000",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312910",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187006",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 216,
+    "price_retail": 390.95,
+    "our_price": 390.95,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 390.95,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 390.95,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312914",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187023",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": 320.36,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZRHW312916",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187032",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 177,
+    "price_retail": 320.36,
+    "our_price": 320.36,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 320.36,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 320.36,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZTOT312747",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187003",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": 447.06,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZWOO311333",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187053",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZWOO311336",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187009",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZWOO311338",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187054",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 247,
+    "price_retail": 447.06,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 447.06,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 447.06,
+    "price_changed": false
+  },
+  {
+    "mfr_sku": "ZWOO311346",
+    "live_dw_sku": null,
+    "staged_dw_sku": "DWZF-187008",
+    "joined": true,
+    "has_product_variant": true,
+    "has_sample_variant": true,
+    "variant_count": 2,
+    "price_trade": 208,
+    "price_retail": 376.47,
+    "our_price": null,
+    "tariff": null,
+    "action": "REPRICE",
+    "proposed_sellable_price": 376.47,
+    "sample_price": 4.25,
+    "note": "reprice to staged retail",
+    "price_source": "zoffany_catalog_UNVERIFIED",
+    "price_prev_zoffany_catalog": 376.47,
+    "price_changed": false
+  }
+]
\ No newline at end of file

← b68c064 TK-10873 cycle4: cross-validate REPRICE prices vs independen  ·  back to Sanderson Onboard  ·  TK-10873 cycle4 Cody-fix: exclude 89 unverified rows from RE 6bc0c25 →