[object Object]

← back to Dw Five Field Step0

JD combined cost dry-run: Pointe-xref + JD own-line, 1,934/2,095 unlocked (READ-ONLY, write gated)

d906de55cf2c4625f00b7b20aa0999f598fea0bc · 2026-06-21 19:49:06 -0700 · Steve Abrams

Files touched

Diff

commit d906de55cf2c4625f00b7b20aa0999f598fea0bc
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Sun Jun 21 19:49:06 2026 -0700

    JD combined cost dry-run: Pointe-xref + JD own-line, 1,934/2,095 unlocked (READ-ONLY, write gated)
---
 match-jd-combined-cost.py                |   221 +
 out/jd-combined-cost-diff.json           | 39914 +++++++++++++++++++++++++++++
 vendor-pricelists/jd-ownline-prices.json |     1 +
 3 files changed, 40136 insertions(+)

diff --git a/match-jd-combined-cost.py b/match-jd-combined-cost.py
new file mode 100644
index 0000000..338771b
--- /dev/null
+++ b/match-jd-combined-cost.py
@@ -0,0 +1,221 @@
+#!/usr/bin/env python3
+"""
+COMBINED DRY-RUN: cost-source the ~2,095 live Justin-David private-label products
+(mfr_sku 'JD-PATTERN-COLOR', live under Shopify vendor "Los Angeles Fabrics" +
+a few "Phillipe Romano" / "Architectural Wallcoverings") from BOTH price lists
+that arrived in the info@ inbox:
+
+  (A) POINTE xref list  -> vendor-pricelists/pointe-jd-prices.json
+      keyed on alnum(pattern+color) == its `jd` field ("Pattern/Color").
+      Color-specific cut_yd_price. Already cleanly unlocked 371 (prior pass).
+
+  (B) JD OWN-LINE list  -> vendor-pricelists/jd-ownline-prices.json
+      509 patterns, single per-yard pattern-level `price` (no per-color).
+      Source = JD's own "2026 January Price List" PDF.
+
+READ-ONLY. Writes NO cost to dw_unified / Shopify. The cost write stays GATED
+for Steve after he reviews the combined unlock.
+
+DTD-locked (panel 3/3, 2026-06-21, all-A):
+  Q1 own-line PATTERN match = LONGEST-PREFIX with '-' word-boundary guard
+     (alnum(sku-JD) must start with an ownline alnum(pattern); pick the longest;
+      the matched prefix must end on a '-' boundary in the raw sku so JD-ALDEN
+      matches 'Alden' but JD-ALDENWOOD does NOT).
+  Q2 SOURCE PRECEDENCE = prefer Pointe/cut_yd_price (color-specific); own-line
+     only fills the Pointe misses.
+  Q3 cost = matched price/yd; retail = cost/0.65/0.85; tariff pass-through
+     (mirrors the already-locked Pointe policy).
+  Only price ACTIVE/STANDARD/in-line items; hold discontinued/MTO.
+
+NEVER expose Pointe / Justin David / Command54 customer-facing (private label).
+"""
+import json, re, subprocess
+from collections import Counter
+
+HERE = "/Users/stevestudio2/Projects/dw-five-field-step0"
+POINTE = f"{HERE}/vendor-pricelists/pointe-jd-prices.json"
+OWNLINE = f"{HERE}/vendor-pricelists/jd-ownline-prices.json"
+OUT = f"{HERE}/out/jd-combined-cost-diff.json"
+
+alnum = lambda s: re.sub(r'[^A-Z0-9]', '', (s or '').upper())
+nstat = lambda s: (s or '').strip().upper()
+# pattern flags ('+', '*') are catalog annotations, not part of the name
+clean_pat = lambda s: re.sub(r'[+*]', ' ', (s or '')).strip()
+
+# Pointe statuses that count as in-line / sellable
+LIVE_POINTE = ('STANDARD', 'ACTIVE')
+
+
+def live_rows():
+    sql = ("select shopify_id||'|'||coalesce(mfr_sku,'')||'|'||coalesce(dw_sku,'')"
+           "||'|'||coalesce(vendor,'')||'|'||coalesce(status,'')||'|'"
+           "||coalesce(cost::text,'')||'|'||replace(coalesce(title,''),'|','')"
+           " from shopify_products where mfr_sku like 'JD-%';")
+    out = subprocess.check_output(["psql", "-d", "dw_unified", "-tAc", sql], text=True)
+    rows = []
+    for line in out.splitlines():
+        p = line.split('|')
+        if len(p) < 7:
+            continue
+        rows.append(dict(shopify_id=p[0], mfr_sku=p[1], dw_sku=p[2], vendor=p[3],
+                         status=p[4], cost=p[5], title=p[6]))
+    return rows
+
+
+def build_pointe_idx():
+    """alnum(pattern+color) -> best priced/STANDARD row (prefer cut_yd_price)."""
+    d = json.load(open(POINTE))
+    idx = {}
+    for r in d:
+        if not r.get('jd') or '/' not in r['jd']:
+            continue
+        p, c = r['jd'].split('/', 1)
+        idx.setdefault(alnum(p) + alnum(c), []).append(r)
+    best = {}
+    for k, rs in idx.items():
+        best[k] = sorted(rs, key=lambda r: (1 if r.get('cut_yd_price') else 0,
+                         {'STANDARD': 3, 'ACTIVE': 2}.get(nstat(r['status']), 0)),
+                         reverse=True)[0]
+    return best
+
+
+def build_ownline():
+    """list of (alnum_pattern, raw_pattern_clean, row) sorted longest alnum first."""
+    d = json.load(open(OWNLINE))
+    out = []
+    for r in d:
+        pc = clean_pat(r.get('pattern'))
+        ap = alnum(pc)
+        if ap:
+            out.append((ap, pc, r))
+    # longest alnum first so longest-prefix wins
+    out.sort(key=lambda t: len(t[0]), reverse=True)
+    return out
+
+
+def ownline_match(mfr_sku, ownline):
+    """Longest-prefix match with '-' word-boundary guard. Returns row or None."""
+    body = mfr_sku[3:] if mfr_sku.upper().startswith('JD-') else mfr_sku  # drop 'JD-'
+    a = alnum(body)
+    if not a:
+        return None
+    for ap, pc, r in ownline:  # already longest-first
+        if a.startswith(ap):
+            # boundary guard: the pattern prefix must end at a '-' (or end-of-sku)
+            # in the RAW body. Walk the raw body counting alnum chars until we have
+            # consumed len(ap) alnum chars; the next raw char must be '-' or EOS.
+            consumed, i = 0, 0
+            while i < len(body) and consumed < len(ap):
+                if body[i].isalnum():
+                    consumed += 1
+                i += 1
+            nxt = body[i] if i < len(body) else ''
+            if nxt in ('', '-'):
+                return r
+    return None
+
+
+def retail(cost):
+    return round(cost / 0.65 / 0.85, 2) if cost else None
+
+
+def main():
+    pointe = build_pointe_idx()
+    ownline = build_ownline()
+    rows = live_rows()
+    lkey = lambda m: alnum(m[3:] if m.upper().startswith('JD-') else m)
+
+    out_rows = []
+    for row in rows:
+        mfr = row['mfr_sku']
+        # --- (A) Pointe xref (color-specific) takes precedence ---
+        p = pointe.get(lkey(mfr))
+        if p:
+            st = nstat(p['status'])
+            cost = p.get('cut_yd_price')
+            load = bool(cost and st in LIVE_POINTE)
+            out_rows.append(dict(
+                shopify_id=row['shopify_id'], mfr_sku=mfr, dw_sku=row['dw_sku'] or None,
+                vendor=row['vendor'], shopify_status=row['status'],
+                current_cost=row['cost'] or None, private_label_title=row['title'],
+                source='pointe-xref', matched_pattern=p.get('jd'),
+                matched_pointe=p.get('pointe'), source_status=p.get('status'),
+                type=p.get('type'), proposed_cost=cost,
+                tariff_passthrough=p.get('tariff'), proposed_retail=retail(cost),
+                will_load=load,
+                block_reason=None if load else ('no_price' if not cost else 'discontinued_or_mto'),
+            ))
+            continue
+        # --- (B) JD own-line (pattern-level) fallback ---
+        o = ownline_match(mfr, ownline)
+        if o:
+            cost = o.get('price')
+            # ownline list = JD's current in-line catalog -> all rows sellable
+            load = bool(cost)
+            tariff = o.get('tariff')
+            tariff = None if (tariff in (None, '', 'n/a')) else tariff
+            out_rows.append(dict(
+                shopify_id=row['shopify_id'], mfr_sku=mfr, dw_sku=row['dw_sku'] or None,
+                vendor=row['vendor'], shopify_status=row['status'],
+                current_cost=row['cost'] or None, private_label_title=row['title'],
+                source='jd-ownline', matched_pattern=o.get('pattern'),
+                matched_pointe=None, source_status='IN-LINE',
+                type=o.get('collection'), proposed_cost=cost,
+                tariff_passthrough=tariff, proposed_retail=retail(cost),
+                will_load=load, block_reason=None if load else 'no_price',
+            ))
+            continue
+        # --- unmatched ---
+        out_rows.append(dict(
+            shopify_id=row['shopify_id'], mfr_sku=mfr, dw_sku=row['dw_sku'] or None,
+            vendor=row['vendor'], shopify_status=row['status'],
+            current_cost=row['cost'] or None, private_label_title=row['title'],
+            source=None, matched_pattern=None, matched_pointe=None, source_status=None,
+            type=None, proposed_cost=None, tariff_passthrough=None, proposed_retail=None,
+            will_load=False, block_reason='unmatched',
+        ))
+
+    unlock = [x for x in out_rows if x['will_load']]
+    blocked = [x for x in out_rows if not x['will_load'] and x['source']]  # matched but held
+    unmatched = [x for x in out_rows if x['source'] is None]
+    by_src = Counter(x['source'] for x in unlock)
+    costs = [x['proposed_cost'] for x in unlock]
+    active_nocost = [x for x in unlock
+                     if x['shopify_status'] == 'ACTIVE' and not x['current_cost']]
+
+    # 10-row sample: mfr_sku -> source -> pattern -> cost -> retail
+    sample = [dict(mfr_sku=x['mfr_sku'], source=x['source'],
+                   pattern=x['matched_pattern'], cost=x['proposed_cost'],
+                   retail=x['proposed_retail'])
+              for x in unlock[:10]]
+
+    summary = dict(
+        generated='2026-06-21',
+        mode='READ-ONLY combined dry-run (cost write GATED for Steve)',
+        sources=dict(
+            pointe='vendor-pricelists/pointe-jd-prices.json (color-specific cut_yd_price; precedence)',
+            ownline='vendor-pricelists/jd-ownline-prices.json (509 JD own-line patterns; fallback)'),
+        dtd='panel 3/3 all-A 2026-06-21: Q1 longest-prefix+boundary, Q2 Pointe-first, Q3 cost=price retail=/0.65/0.85 tariff-passthrough',
+        live_jd_mfr_rows=len(rows),
+        combined_unlock=len(unlock),
+        unlock_by_source=dict(by_src),
+        unlock_currently_active_and_nocost=len(active_nocost),
+        held_discontinued_or_mto=len(blocked),
+        held_breakdown=dict(Counter(x['block_reason'] for x in blocked)),
+        still_unmatched=len(unmatched),
+        cost_range=[min(costs), max(costs)] if costs else None,
+        retail_range=[min(x['proposed_retail'] for x in unlock),
+                      max(x['proposed_retail'] for x in unlock)] if unlock else None,
+        unlock_vendor_split=dict(Counter(x['vendor'] for x in unlock)),
+    )
+    json.dump(dict(summary=summary, sample_10=sample, rows=out_rows),
+              open(OUT, 'w'), indent=1)
+    print(json.dumps(summary, indent=1))
+    print('\n--- 10-row sample (mfr_sku -> source -> pattern -> cost -> retail) ---')
+    for s in sample:
+        print(f"  {s['mfr_sku']:34} {s['source']:11} {str(s['pattern'])[:24]:24} "
+              f"${s['cost']:>6} -> ${s['retail']}")
+
+
+if __name__ == '__main__':
+    main()
diff --git a/out/jd-combined-cost-diff.json b/out/jd-combined-cost-diff.json
new file mode 100644
index 0000000..39e40d0
--- /dev/null
+++ b/out/jd-combined-cost-diff.json
@@ -0,0 +1,39914 @@
+{
+ "summary": {
+  "generated": "2026-06-21",
+  "mode": "READ-ONLY combined dry-run (cost write GATED for Steve)",
+  "sources": {
+   "pointe": "vendor-pricelists/pointe-jd-prices.json (color-specific cut_yd_price; precedence)",
+   "ownline": "vendor-pricelists/jd-ownline-prices.json (509 JD own-line patterns; fallback)"
+  },
+  "dtd": "panel 3/3 all-A 2026-06-21: Q1 longest-prefix+boundary, Q2 Pointe-first, Q3 cost=price retail=/0.65/0.85 tariff-passthrough",
+  "live_jd_mfr_rows": 2095,
+  "combined_unlock": 1934,
+  "unlock_by_source": {
+   "jd-ownline": 1563,
+   "pointe-xref": 371
+  },
+  "unlock_currently_active_and_nocost": 1457,
+  "held_discontinued_or_mto": 114,
+  "held_breakdown": {
+   "discontinued_or_mto": 114
+  },
+  "still_unmatched": 47,
+  "cost_range": [
+   15.5,
+   299.0
+  ],
+  "retail_range": [
+   28.05,
+   541.18
+  ],
+  "unlock_vendor_split": {
+   "Los Angeles Fabrics": 1929,
+   "Architectural Wallcoverings": 5
+  }
+ },
+ "sample_10": [
+  {
+   "mfr_sku": "JD-GARBO-DUST-CLOUD",
+   "source": "jd-ownline",
+   "pattern": "Garbo",
+   "cost": 29.5,
+   "retail": 53.39
+  },
+  {
+   "mfr_sku": "JD-GARBO-ANGEL-WING",
+   "source": "jd-ownline",
+   "pattern": "Garbo",
+   "cost": 29.5,
+   "retail": 53.39
+  },
+  {
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "source": "pointe-xref",
+   "pattern": "Aura/Country Road",
+   "cost": 41.5,
+   "retail": 75.11
+  },
+  {
+   "mfr_sku": "JD-MAKITA-HONEY",
+   "source": "jd-ownline",
+   "pattern": "Makita",
+   "cost": 59.5,
+   "retail": 107.69
+  },
+  {
+   "mfr_sku": "JD-MAKITA-COCOA",
+   "source": "jd-ownline",
+   "pattern": "Makita",
+   "cost": 59.5,
+   "retail": 107.69
+  },
+  {
+   "mfr_sku": "JD-BERNARD-AUBURN",
+   "source": "jd-ownline",
+   "pattern": "Bernard",
+   "cost": 32.5,
+   "retail": 58.82
+  },
+  {
+   "mfr_sku": "JD-BERNARD-CALLA-LILY",
+   "source": "jd-ownline",
+   "pattern": "Bernard",
+   "cost": 32.5,
+   "retail": 58.82
+  },
+  {
+   "mfr_sku": "JD-BERNARD-KIMONO",
+   "source": "jd-ownline",
+   "pattern": "Bernard",
+   "cost": 32.5,
+   "retail": 58.82
+  },
+  {
+   "mfr_sku": "JD-BERNARD",
+   "source": "jd-ownline",
+   "pattern": "Bernard",
+   "cost": 32.5,
+   "retail": 58.82
+  },
+  {
+   "mfr_sku": "JD-AESOP-SATYR",
+   "source": "jd-ownline",
+   "pattern": "Aesop",
+   "cost": 33.5,
+   "retail": 60.63
+  }
+ ],
+ "rows": [
+  {
+   "shopify_id": "gid://shopify/Product/7795700367411",
+   "mfr_sku": "JD-ANNENDALE-CANCUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Lagoon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cancun",
+   "matched_pointe": "GALLERIA TRIPOD/SURF",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700826163",
+   "mfr_sku": "JD-ANNENDALE-LANDSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Panorama Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Landscape",
+   "matched_pointe": "GALLERIA TRIPOD/REFRESH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581397555",
+   "mfr_sku": "JD-GARBO-DUST-CLOUD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Glamour - Harmattan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Garbo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581332019",
+   "mfr_sku": "JD-GARBO-ANGEL-WING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Glamour - Seagull  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Garbo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441805875",
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pathways  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Country Road",
+   "matched_pointe": "BEYOND SYNERGY/MUSHROOM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810554134579",
+   "mfr_sku": "JD-MAKITA-HONEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cyclone - Nectar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Makita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810554003507",
+   "mfr_sku": "JD-MAKITA-COCOA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cyclone - Xocolatl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Makita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288454707",
+   "mfr_sku": "JD-BERNARD-AUBURN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Mahogany Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289011763",
+   "mfr_sku": "JD-BERNARD-CALLA-LILY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Orchid Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289306675",
+   "mfr_sku": "JD-BERNARD-KIMONO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Silk Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288258099",
+   "mfr_sku": "JD-BERNARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693322291",
+   "mfr_sku": "JD-AESOP-SATYR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Faun Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693158451",
+   "mfr_sku": "JD-AESOP-OLIVE-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Pistachio Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692634163",
+   "mfr_sku": "JD-AESOP-ACROPOLIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Temple Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810454913075",
+   "mfr_sku": "JD-HANOVER-GRAYSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Slate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563899443",
+   "mfr_sku": "JD-CRUSOE-STARFISH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Seastar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693387827",
+   "mfr_sku": "JD-AKIRA-BLUE-WILLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Porcelain Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580643891",
+   "mfr_sku": "JD-FRICK-MOZAMBIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery - Swahili  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426077235",
+   "mfr_sku": "JD-AURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aura *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284555315",
+   "mfr_sku": "JD-BASQUETTA-KOLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Cola Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701284915",
+   "mfr_sku": "JD-ANTIGUA-FLARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Radiance Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695419443",
+   "mfr_sku": "JD-ALEUTIAN-ABYSS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Trench Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Abyss",
+   "matched_pointe": "SKINTEX SF ASPECT/INDIGO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580086835",
+   "mfr_sku": "JD-FRANCISCAN-GOLDEN-THREAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Filigree  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Golden Thread",
+   "matched_pointe": "SKINTEX SF RETRO/CUSTARD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580185139",
+   "mfr_sku": "JD-FRANCISCAN-MEYER-LEMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Keylime  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Meyer Lemon",
+   "matched_pointe": "SKINTEX SF RETRO/SPROUT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571173939",
+   "mfr_sku": "JD-ECLIPSE-EMPEROR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Regalia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571141171",
+   "mfr_sku": "JD-ECLIPSE-ELK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Sandalwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580119603",
+   "mfr_sku": "JD-FRANCISCAN-HARISSA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Pimento  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Harissa",
+   "matched_pointe": "SKINTEX SF RETRO/GALLERY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580217907",
+   "mfr_sku": "JD-FRANCISCAN-MONACO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Riviera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Monaco",
+   "matched_pointe": "SKINTEX SF RETRO/MINERAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580250675",
+   "mfr_sku": "JD-FRANCISCAN-SHADOW-PUPPET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Silhouette  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Shadow Puppet",
+   "matched_pointe": "SKINTEX SF RETRO/DUSK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579922995",
+   "mfr_sku": "JD-FRANCISCAN-ASHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Tinder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Asher",
+   "matched_pointe": "SKINTEX SF RETRO/SLEET",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579988531",
+   "mfr_sku": "JD-FRANCISCAN-BASKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Wicker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Basket",
+   "matched_pointe": "SKINTEX SF RETRO/MUDSLIDE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448818227",
+   "mfr_sku": "JD-FRANCISCAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Franciscan *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Moxie",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": "$2.15",
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286455859",
+   "mfr_sku": "JD-BELVEDERE-BACKWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Bayou Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440233011",
+   "mfr_sku": "JD-ASHANTI-AIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Zephyr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580578355",
+   "mfr_sku": "JD-FRICK-IRON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery - Rebar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273840179",
+   "mfr_sku": "JD-ASHTON-TOLTEC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Olmec Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582675507",
+   "mfr_sku": "JD-SPIRIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Voyager  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566586419",
+   "mfr_sku": "JD-DENZEL-COSMO-CUSTOM-4PASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Aurora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Denzel +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559082547",
+   "mfr_sku": "JD-CHECKERED-RACE-TRACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Speedway  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289830963",
+   "mfr_sku": "JD-BERNARD-VENDELA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Shell Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445312051",
+   "mfr_sku": "JD-BARNUM-LARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Tern  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426404915",
+   "mfr_sku": "JD-BARNUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696107571",
+   "mfr_sku": "JD-ALEUTIAN-RED-TOMATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Hibiscus Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Red Tomato",
+   "matched_pointe": "SKINTEX SF ASPECT/CORAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567733299",
+   "mfr_sku": "JD-PICKWICK-NAUTICAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangosteen - Seafaring  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pickwick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553315379",
+   "mfr_sku": "JD-CARVILLE-QUADRILLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Carousel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552070195",
+   "mfr_sku": "JD-CARVILLE-ARIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Harmonics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429747251",
+   "mfr_sku": "JD-ABRAXAS-DESERT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Sahara  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553577523",
+   "mfr_sku": "JD-CARVILLE-VIGNETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Sketch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553348147",
+   "mfr_sku": "JD-CARVILLE-RIALTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Venetian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561638451",
+   "mfr_sku": "JD-CONFLUENCE-LACHLAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Tidepool  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Lachlan",
+   "matched_pointe": "GALLERIA SF HAMILTON/PORCELAIN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565374003",
+   "mfr_sku": "JD-DAYDREAM-ORION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Nebula  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280918067",
+   "mfr_sku": "JD-BALBOA-HERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ancestry Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Heritage",
+   "matched_pointe": "CONTESSA SIENA/CHAMPAGNE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281016371",
+   "mfr_sku": "JD-BALBOA-MARSTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Atoll Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Marston",
+   "matched_pointe": "CONTESSA SIENA/MERLOT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281671731",
+   "mfr_sku": "JD-BALBOA-WORLDBEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Calypso Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Worldbeat",
+   "matched_pointe": "CONTESSA SIENA/ORANGE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280623155",
+   "mfr_sku": "JD-BALBOA-ANDALUSIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Castanet Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Andalusian",
+   "matched_pointe": "CONTESSA SIENA/BLUE JAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281573427",
+   "mfr_sku": "JD-BALBOA-SPANISH-LEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Cordovan Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Spanish Leather",
+   "matched_pointe": "CONTESSA SIENA/TRUFFLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281638963",
+   "mfr_sku": "JD-BALBOA-TOLEDO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Damascus Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Toledo",
+   "matched_pointe": "CONTESSA SIENA/FUDGE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452160563",
+   "mfr_sku": "JD-BIANCA-CAPE-COD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Seaboard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452095027",
+   "mfr_sku": "JD-BIANCA-CALISTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Serene  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452422707",
+   "mfr_sku": "JD-BIANCA-ROCKSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Terraces  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436497459",
+   "mfr_sku": "JD-ANTONI-MARINARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Pimento  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543648819",
+   "mfr_sku": "JD-IOMMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tsunami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Iommi",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694960691",
+   "mfr_sku": "JD-ALDEN-POLLEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Hibiscus Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447704115",
+   "mfr_sku": "JD-BELLAMY-BLUE-LAGOON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Aquatic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810454749235",
+   "mfr_sku": "JD-HANOVER-FUDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Caramel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810454978611",
+   "mfr_sku": "JD-HANOVER-HAVANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Cigar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563604531",
+   "mfr_sku": "JD-CRUSOE-PALM-FROND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Fanleaf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563735603",
+   "mfr_sku": "JD-CRUSOE-PUTTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Grout  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447769651",
+   "mfr_sku": "JD-BELLAMY-BORDELLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447802419",
+   "mfr_sku": "JD-BELLAMY-CANDLEWAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Honeycomb  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563997747",
+   "mfr_sku": "JD-CRUSOE-TERRIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Jackal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453962803",
+   "mfr_sku": "JD-HANOVER-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456911923",
+   "mfr_sku": "JD-BORREGO-BONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564063283",
+   "mfr_sku": "JD-CRUSOE-WOODCHIP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Mulch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563440691",
+   "mfr_sku": "JD-CRUSOE-BROWN-SUGAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Muscovado  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563932211",
+   "mfr_sku": "JD-CRUSOE-STARRY-NIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Nocturne  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563407923",
+   "mfr_sku": "JD-CRUSOE-AUTUMN-LEAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692863539",
+   "mfr_sku": "JD-AESOP-CHEVAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Stallion Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447835187",
+   "mfr_sku": "JD-BELLAMY-GOLDFINCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Saffron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563506227",
+   "mfr_sku": "JD-CRUSOE-FIRST-MATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Skipper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563538995",
+   "mfr_sku": "JD-CRUSOE-OCEAN-BREEZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Zephyr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426601523",
+   "mfr_sku": "JD-BELLAMY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691782195",
+   "mfr_sku": "JD-ADELAIDE-BISHOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Cardinal Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692535859",
+   "mfr_sku": "JD-ADELAIDE-WESTMINSTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Colonial Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691913267",
+   "mfr_sku": "JD-ADELAIDE-DRACO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Constellation Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691618355",
+   "mfr_sku": "JD-ADELAIDE-ARAGON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Kingdom Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692175411",
+   "mfr_sku": "JD-ADELAIDE-KNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Paladin Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691847731",
+   "mfr_sku": "JD-ADELAIDE-CARAVAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Safari Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692404787",
+   "mfr_sku": "JD-ADELAIDE-SERENE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Tranquil Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560491571",
+   "mfr_sku": "JD-MOLINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Molina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.30",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575335475",
+   "mfr_sku": "JD-ROQUET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Roquet",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$2.45",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292452403",
+   "mfr_sku": "JD-BEVERLY-RESPITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Oasis Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292354099",
+   "mfr_sku": "JD-BEVERLY-REPOSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Siesta Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698663475",
+   "mfr_sku": "JD-ANITA-GERMAINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell - Lush Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698892851",
+   "mfr_sku": "JD-ANITA-LUNAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell - Moonstone Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698565171",
+   "mfr_sku": "JD-ANITA-ENDURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell - Resilient Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577793075",
+   "mfr_sku": "JD-SANTACRUZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Santa Cruz",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574352435",
+   "mfr_sku": "JD-ESCALANTE-SEAPORT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Harbor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Seaport",
+   "matched_pointe": "SKINTEX SF EXOTIC/COBALT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574090291",
+   "mfr_sku": "JD-ESCALANTE-ALABASTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Alabaster",
+   "matched_pointe": "SKINTEX SF EXOTIC/VANILLA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574254131",
+   "mfr_sku": "JD-ESCALANTE-JUNGLE-NIGHTS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Nocturnal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Jungle Nights",
+   "matched_pointe": "SKINTEX SF EXOTIC/EBONY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574385203",
+   "mfr_sku": "JD-ESCALANTE-SUMMER-SUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Sol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Summer Sun",
+   "matched_pointe": "SKINTEX SF EXOTIC/CINNABAR",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574155827",
+   "mfr_sku": "JD-ESCALANTE-BONFIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Sunset  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Bonfire",
+   "matched_pointe": "SKINTEX SF EXOTIC/LIPSTICK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574188595",
+   "mfr_sku": "JD-ESCALANTE-CLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Clay",
+   "matched_pointe": "SKINTEX SF EXOTIC/FAWN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574221363",
+   "mfr_sku": "JD-ESCALANTE-GRAPEVINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Trellis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Grapevine",
+   "matched_pointe": "SKINTEX SF EXOTIC/PURPLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546892851",
+   "mfr_sku": "JD-CALIFA-PEACH-SORBET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Lilikoi  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579136563",
+   "mfr_sku": "JD-FLANDERS-STARDUST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Cosmic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578776115",
+   "mfr_sku": "JD-FLANDERS-CANDY-APPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697778739",
+   "mfr_sku": "JD-AMARA-PADLOCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Shackle Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545942579",
+   "mfr_sku": "JD-LANDON-RIVERWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Aqua  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574450739",
+   "mfr_sku": "JD-ESPRIT-AUBEROSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567503923",
+   "mfr_sku": "JD-PICCADILLY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Piccadilly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tekloom",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$2.45",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280229939",
+   "mfr_sku": "JD-BAHARA-ALLEGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Calypso Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281606195",
+   "mfr_sku": "JD-BALBOA-TIMKEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Bearing Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Timken",
+   "matched_pointe": "CONTESSA SIENA/RUSTIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286390323",
+   "mfr_sku": "JD-BELVEDERE-AZORES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Islander Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284817459",
+   "mfr_sku": "JD-BASQUETTA-TALISMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Amulet Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288356403",
+   "mfr_sku": "JD-BERNARD-APOLLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Sunbeam Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283965491",
+   "mfr_sku": "JD-BARNUM-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Atoll Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284031027",
+   "mfr_sku": "JD-BARNUM-SILVER-ASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Driftwood Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283473971",
+   "mfr_sku": "JD-BARNUM-ARROWHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Obsidian Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445246515",
+   "mfr_sku": "JD-BARNUM-FLINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283768883",
+   "mfr_sku": "JD-BARNUM-HIGHLANDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Plateau Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283441203",
+   "mfr_sku": "JD-BARNUM-ANASAZI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Ruins Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283506739",
+   "mfr_sku": "JD-BARNUM-BEDOUIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Sahara Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283801651",
+   "mfr_sku": "JD-BARNUM-LARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Tern Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283342899",
+   "mfr_sku": "JD-BARNUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560360499",
+   "mfr_sku": "JD-CICERO-PENNYCRESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Dune  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569797683",
+   "mfr_sku": "JD-DUVALL-MARQUEE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Festival  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569601075",
+   "mfr_sku": "JD-DUVALL-FAME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Renown  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435612723",
+   "mfr_sku": "JD-ANNENDALE-STAMPED-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Tsunami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Stamped Concrete",
+   "matched_pointe": "GALLERIA TRIPOD/CIRRUS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294123571",
+   "mfr_sku": "JD-BIANCA-REEF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Atoll Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440265779",
+   "mfr_sku": "JD-ASHANTI-ARUBA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Dividivi  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440626227",
+   "mfr_sku": "JD-ASHANTI-VIKING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692011571",
+   "mfr_sku": "JD-ADELAIDE-ELEMENTAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Tsunami Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581266483",
+   "mfr_sku": "JD-SKYLINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Horizon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Skyline *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283375667",
+   "mfr_sku": "JD-BARNUM-ABALONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Seashell Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705151539",
+   "mfr_sku": "JD-ASHANTI-PARASOL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Veranda Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286226483",
+   "mfr_sku": "JD-BELMONT-THUNDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monsoon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Thunder",
+   "matched_pointe": "SKINTEX SF SERENITY/MIDNIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285734963",
+   "mfr_sku": "JD-BELMONT-CROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Royalty Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Crown",
+   "matched_pointe": "SKINTEX SF SERENITY/SORBET",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558951475",
+   "mfr_sku": "JD-CHECKERED-MERCHANT-MARINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545319987",
+   "mfr_sku": "JD-KEATON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Alani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Keaton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692994611",
+   "mfr_sku": "JD-AESOP-HELIOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Solstice Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572877875",
+   "mfr_sku": "JD-REMBRANDT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ambergris  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rembrandt",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tekloom",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": "$2.55",
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572812339",
+   "mfr_sku": "JD-REGINALD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mariner  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Reginald",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572058675",
+   "mfr_sku": "JD-ENO-SAGITTARIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Constellation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572156979",
+   "mfr_sku": "JD-ENO-VISTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Panorama  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442264627",
+   "mfr_sku": "JD-ENO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810549874739",
+   "mfr_sku": "JD-CARA-MONARCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Butterfly  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550431795",
+   "mfr_sku": "JD-CARA-MORNING-MIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Dewdrop  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551447603",
+   "mfr_sku": "JD-CARA-TEATIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Earlgrey  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548891699",
+   "mfr_sku": "JD-CARA-LAFITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551316531",
+   "mfr_sku": "JD-CARA-SURF-CITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Waikiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281704499",
+   "mfr_sku": "JD-BANDOLIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bandolier *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572845107",
+   "mfr_sku": "JD-RELIANCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchor  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542764083",
+   "mfr_sku": "JD-BRISTOL-AQUAMARINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Beryl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543484979",
+   "mfr_sku": "JD-BRISTOL-VERDIGRIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Copperleaf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543321139",
+   "mfr_sku": "JD-BRISTOL-TABASCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Habanero  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543353907",
+   "mfr_sku": "JD-BRISTOL-TANGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542796851",
+   "mfr_sku": "JD-BRISTOL-AZUL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Indigo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542927923",
+   "mfr_sku": "JD-BRISTOL-FESTIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Lively  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543583283",
+   "mfr_sku": "JD-BRISTOL-WHEATFIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Pampas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543091763",
+   "mfr_sku": "JD-BRISTOL-HUME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Soil  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437480499",
+   "mfr_sku": "JD-APHRODITE-INTUITION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anemone - Insight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559836211",
+   "mfr_sku": "JD-MERINO-KHAKI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Drab  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559934515",
+   "mfr_sku": "JD-MERINO-SWEETPEPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Pimento  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559901747",
+   "mfr_sku": "JD-MERINO-SHITAKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Umami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544009267",
+   "mfr_sku": "JD-BROADCAST-CAPITOL-HILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Summit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Capitol Hill",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/MUSLIN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572222515",
+   "mfr_sku": "JD-ENYA-ANTIOCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mystique - Caravan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Enya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283867187",
+   "mfr_sku": "JD-BARNUM-LIBERTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Breeze Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429026355",
+   "mfr_sku": "JD-BRIGHTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567897139",
+   "mfr_sku": "JD-DIONYSUS-KINETIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Current  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558197811",
+   "mfr_sku": "JD-CHAINMAIL-ANCHORS-AWEIGH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Voyager  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Anchors Aweigh",
+   "matched_pointe": "TEKLOOM WICKER/MARINE",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435481651",
+   "mfr_sku": "JD-ANNENDALE-ELUSIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Mirage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Elusive",
+   "matched_pointe": "GALLERIA TRIPOD/COCONUT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569044019",
+   "mfr_sku": "JD-DOYLE-BERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Acai  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553610291",
+   "mfr_sku": "JD-MAGELLAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Magellan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568093747",
+   "mfr_sku": "JD-DIONYSUS-SHEET-METAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Galvanized  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441674803",
+   "mfr_sku": "JD-ECLIPSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442723379",
+   "mfr_sku": "JD-BALBOA-ADOBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Adobe",
+   "matched_pointe": "CONTESSA SIENA/CLAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558427187",
+   "mfr_sku": "JD-CHAINMAIL-LINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Tarp  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Lino",
+   "matched_pointe": "TEKLOOM WICKER/SHELL",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443411507",
+   "mfr_sku": "JD-BALBOA-PANAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Sombrero  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Panama",
+   "matched_pointe": "CONTESSA SIENA/CHINA BLUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444689459",
+   "mfr_sku": "JD-FANDO-GRETTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Cave  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444984371",
+   "mfr_sku": "JD-BARNUM-ANASAZI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Ruins  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444951603",
+   "mfr_sku": "JD-BARNUM-AMARYLLIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Lily  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445082675",
+   "mfr_sku": "JD-BARNUM-BEDOUIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Sahara  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445672499",
+   "mfr_sku": "JD-BARNUM-WRANGLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Vaquero  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445869107",
+   "mfr_sku": "JD-BARRYMORE-REGAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Sovereign  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560000051",
+   "mfr_sku": "JD-MILOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Zenith  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Milos",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445836339",
+   "mfr_sku": "JD-BARRYMORE-GLAMOUR-SHOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Flashbulb  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691454515",
+   "mfr_sku": "JD-ABRAXAS-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Lava Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447966259",
+   "mfr_sku": "JD-BELLAMY-PUMPKIN-PIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Custard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693518899",
+   "mfr_sku": "JD-AKIRA-BURNT-BUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Ashen Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694731315",
+   "mfr_sku": "JD-ALDEN-BREEZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Zephyr Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693846579",
+   "mfr_sku": "JD-ALASTAIR-ALMONDINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Vanilla Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Almondine",
+   "matched_pointe": "TEKLOOM REVELRY/FOSSIL",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694633011",
+   "mfr_sku": "JD-ALDEN-BLACKTIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Alden - Blacktie Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694534707",
+   "mfr_sku": "JD-ALDEN-ARGONAUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Nautilus Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696402483",
+   "mfr_sku": "JD-ALEUTIAN-TECHNO-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Graphite Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Techno Grey",
+   "matched_pointe": "SKINTEX SF ASPECT/POWDER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696468019",
+   "mfr_sku": "JD-ALEUTIAN-VEIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Gossamer Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Veil",
+   "matched_pointe": "SKINTEX SF ASPECT/CLOUD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697025075",
+   "mfr_sku": "JD-ALLEGRO-GOLDEN-HARP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Laguna - Lyre Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697221683",
+   "mfr_sku": "JD-ALLEGRO-PIN-STRIPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Laguna - Seersucker Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697090611",
+   "mfr_sku": "JD-ALLEGRO-HIGH-WIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Laguna - Tightrope Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698434099",
+   "mfr_sku": "JD-AMAZONIA-MAJESTIC-PURPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Royalty Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Majestic Purple",
+   "matched_pointe": "NEW WAVE MAMBA II/AUBERGINE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697516595",
+   "mfr_sku": "JD-AMARA-LABYRINTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Reefmaze Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700203571",
+   "mfr_sku": "JD-ANNALISA-GLORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Palmetto - Triumph Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Annalisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795699679283",
+   "mfr_sku": "JD-ANITA-PRIMAVERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell - Bloom Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795699384371",
+   "mfr_sku": "JD-ANITA-POLISHED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell - Shimmering Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700269107",
+   "mfr_sku": "JD-ANNENDALE-ADMIRAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Seafarer Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Admiral",
+   "matched_pointe": "GALLERIA TRIPOD/STORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701088307",
+   "mfr_sku": "JD-ANTIGUA-BEACHCOMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Drifter Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701252147",
+   "mfr_sku": "JD-ANTIGUA-DUTCHMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Reefgold Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701579827",
+   "mfr_sku": "JD-ANTIGUA-SUGAR-MILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Plantation Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701678131",
+   "mfr_sku": "JD-ANTONI-ALPINE-MIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Cloudforest Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702202419",
+   "mfr_sku": "JD-APHRODITE-MANIFESTATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Anemone - Awakening Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702136883",
+   "mfr_sku": "JD-APHRODITE-INTUITION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Anemone - Insight Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451898419",
+   "mfr_sku": "JD-BEVERLY-GALLERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Atelier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704856627",
+   "mfr_sku": "JD-ASHANTI-CENTENNIAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Jubilee Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703939123",
+   "mfr_sku": "JD-ARTEMIS-CHAKRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Energy Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704594483",
+   "mfr_sku": "JD-ASHANTI-ARUBA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - DiviDivi Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704954931",
+   "mfr_sku": "JD-ASHANTI-CORDELIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Tiare Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452619315",
+   "mfr_sku": "JD-GRIFFIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Griffin *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Le Cirque",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705872435",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-BLADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Rapier Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456748083",
+   "mfr_sku": "JD-HEARST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hearst *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Le Cirque",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457370675",
+   "mfr_sku": "JD-BOULEVARD-DOWNTOWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Cityscape  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Downtown",
+   "matched_pointe": "GALLERIA STITCH/MYSTIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698073651",
+   "mfr_sku": "JD-AMAZONIA-GLITTERATI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Spectra Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Glitterati",
+   "matched_pointe": "NEW WAVE MAMBA II/PARCHMENT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702267955",
+   "mfr_sku": "JD-APHRODITE-ORACLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Anemone - Mystic Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703185459",
+   "mfr_sku": "JD-ARIETTA-TURNSOLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Pelican - Sunflower Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705741363",
+   "mfr_sku": "JD-ASHANTI-VIKING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Seafarer Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704070195",
+   "mfr_sku": "JD-ARTEMIS-IONIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Aegean Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457698355",
+   "mfr_sku": "JD-BOWIE-CALADESI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pompano - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bowie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457829427",
+   "mfr_sku": "JD-HEMINGWAY-HARVEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Ambarella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539618355",
+   "mfr_sku": "JD-BRADFORD-IMAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Mirage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539749427",
+   "mfr_sku": "JD-BRADFORD-TALENT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Virtuoso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541060147",
+   "mfr_sku": "JD-BRAHMS-SEA-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Kelp  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542436403",
+   "mfr_sku": "JD-BRIGHTON-IGLOO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Dome  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542305331",
+   "mfr_sku": "JD-BRIGHTON-COFFEEHOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Cafe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542665779",
+   "mfr_sku": "JD-INDULGENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Indulgence",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Indulgence",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284948531",
+   "mfr_sku": "JD-BASTION-CAMELOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman - Kingdom Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543845427",
+   "mfr_sku": "JD-JERICHO-POMODORO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kaimana - Sunblush  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jericho *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566127667",
+   "mfr_sku": "JD-PERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Perry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702497331",
+   "mfr_sku": "JD-ARIES-COIN-OP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Arcade Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702530099",
+   "mfr_sku": "JD-ARIES-ESSENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Aroma Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702464563",
+   "mfr_sku": "JD-ARIES-CASABLANCA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Courtyard Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702792243",
+   "mfr_sku": "JD-ARIES-RADIATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Glow Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702825011",
+   "mfr_sku": "JD-ARIES-SHOWSTOPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Spectacle Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703054387",
+   "mfr_sku": "JD-ARIETTA-INGOT-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Pelican - Pewter Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545287219",
+   "mfr_sku": "JD-BUBBLES-SAND-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Effervescence - Sirocco  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545680435",
+   "mfr_sku": "JD-CAGNEY-CHALK-HILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hollywood - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cagney",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562719795",
+   "mfr_sku": "JD-CRAWFORD-PIRANHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Predator  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703119923",
+   "mfr_sku": "JD-ARIETTA-OAK-LAMELLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Pelican - Driftwood Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545713203",
+   "mfr_sku": "JD-LANDON-CORIANDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Cilantro  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546827315",
+   "mfr_sku": "JD-CALIFA-ORLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Goldenrod  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546106419",
+   "mfr_sku": "JD-CALIFA-AYALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Gazelle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548105267",
+   "mfr_sku": "JD-LOBOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pelican  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lobos",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547941427",
+   "mfr_sku": "JD-LINUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Linus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics / Sheerly Elegant",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695124531",
+   "mfr_sku": "JD-ALDEN-SCALLION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Chive Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553806899",
+   "mfr_sku": "JD-CASSIUS-ROCKY-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Lavaflow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560622643",
+   "mfr_sku": "JD-COACHELLA-COVEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Mystique  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Coven",
+   "matched_pointe": "GALLERIA KALOONG/RAVEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562326579",
+   "mfr_sku": "JD-NOLEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Palmetto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nolen *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$2.70",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583855155",
+   "mfr_sku": "JD-GRIFFIN-CHARIOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Galleon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Chariot",
+   "matched_pointe": "NEW WAVE TRAVERSE/HARVEST",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563145779",
+   "mfr_sku": "JD-OSTARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Passiflora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ostara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583920691",
+   "mfr_sku": "JD-GRIFFIN-CORNUCOPIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Harvest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Cornucopia",
+   "matched_pointe": "NEW WAVE TRAVERSE/RHUBARB",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563113011",
+   "mfr_sku": "JD-OSKAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Oskar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563276851",
+   "mfr_sku": "JD-CRESTA-GRAINS-OF-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563375155",
+   "mfr_sku": "JD-CRESTA-SAILCLOTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Canvas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273578035",
+   "mfr_sku": "JD-ASHTON-ORAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Citron Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273709107",
+   "mfr_sku": "JD-ASHTON-SCULPTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Artifact Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585559091",
+   "mfr_sku": "JD-GRIFFIN-ROSETTA-STONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Hieroglyph  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Rosetta Stone",
+   "matched_pointe": "NEW WAVE TRAVERSE/GRAPHITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274331699",
+   "mfr_sku": "JD-ASTRID-SLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Shale Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796275216435",
+   "mfr_sku": "JD-ATHENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563964979",
+   "mfr_sku": "JD-CRUSOE-SUNNYSIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Vista  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796275937331",
+   "mfr_sku": "JD-ATHENA-EXUMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Cay Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276461619",
+   "mfr_sku": "JD-ATHENA-PAVILLION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Gazebo Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276690995",
+   "mfr_sku": "JD-ATHENA-SWAN-LAKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Laguna Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564948019",
+   "mfr_sku": "JD-DAYDREAM-ARCHIPELAGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Atolls  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276756531",
+   "mfr_sku": "JD-ATHENA-SWEET-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Custard Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276887603",
+   "mfr_sku": "JD-ATHENA-VALHALLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Paradise Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277182515",
+   "mfr_sku": "JD-AURA-COYOTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jackal Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Coyote",
+   "matched_pointe": "BEYOND SYNERGY/REED",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566193203",
+   "mfr_sku": "JD-PERSEPHONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tiare  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Persephone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279902259",
+   "mfr_sku": "JD-AURELIUS-BEDSTRAW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Thatch Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280655923",
+   "mfr_sku": "JD-BALBOA-CACTUS-GARDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Succulent Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Cactus Garden",
+   "matched_pointe": "CONTESSA SIENA/WILLOW",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280393779",
+   "mfr_sku": "JD-BAHARA-MARTINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Paradise Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280426547",
+   "mfr_sku": "JD-BALBOA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Balboa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$2.05",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280557619",
+   "mfr_sku": "JD-BALBOA-ADOBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Terracotta Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Adobe",
+   "matched_pointe": "CONTESSA SIENA/CLAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585526323",
+   "mfr_sku": "JD-GRIFFIN-ROOST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Perch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Roost",
+   "matched_pointe": "NEW WAVE TRAVERSE/CHOCOLATE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567209011",
+   "mfr_sku": "JD-PHOEBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Nautilus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phoebe +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585591859",
+   "mfr_sku": "JD-GRIFFIN-SAHARA-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Sirocco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Sahara Sand",
+   "matched_pointe": "NEW WAVE TRAVERSE/CREAM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280852531",
+   "mfr_sku": "JD-BALBOA-EUCALYPTUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Koala Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Eucalyptus",
+   "matched_pointe": "CONTESSA SIENA/DILL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281245747",
+   "mfr_sku": "JD-BALBOA-PANAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Sombrero Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Panama",
+   "matched_pointe": "CONTESSA SIENA/CHINA BLUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281409587",
+   "mfr_sku": "JD-BALBOA-PRADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Junglepath Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Prado",
+   "matched_pointe": "CONTESSA SIENA/CHESTNUT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282654771",
+   "mfr_sku": "JD-BANDOLIER-COPPERTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Emberglow Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Coppertop",
+   "matched_pointe": "SKINTEX SF RHYME/PENNY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282458163",
+   "mfr_sku": "JD-BANDOLIER-BUTTERCUP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Marigold Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Buttercup",
+   "matched_pointe": "SKINTEX SF RHYME/CASHEW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284358707",
+   "mfr_sku": "JD-BASQUETTA-BARRACUDA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Piranha Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283408435",
+   "mfr_sku": "JD-BARNUM-AMARYLLIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Lily Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283605043",
+   "mfr_sku": "JD-BARNUM-COTTONWOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Kapok Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283736115",
+   "mfr_sku": "JD-BARNUM-FLINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Obsidian Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284063795",
+   "mfr_sku": "JD-BARNUM-WRANGLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Vaquero Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561212467",
+   "mfr_sku": "JD-COBBLESTONE-ROCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Boulder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284129331",
+   "mfr_sku": "JD-BARRYMORE-CATS-EYE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Chrysoberyl Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284391475",
+   "mfr_sku": "JD-BASQUETTA-BRONCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Mustang Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568847411",
+   "mfr_sku": "JD-DOWNTOWN-DRIFTWOOD-BLUES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside - Oceanworn  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284588083",
+   "mfr_sku": "JD-BASQUETTA-LINK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Chain Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285177907",
+   "mfr_sku": "JD-BELLAMY-BLUE-LAGOON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Aquatic Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569699379",
+   "mfr_sku": "JD-DUVALL-ICONIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Emblem  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285046835",
+   "mfr_sku": "JD-BASTION-SCOUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman - Ranger Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569502771",
+   "mfr_sku": "JD-PORTOLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Portola *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561114163",
+   "mfr_sku": "JD-COBBLESTONE-PARK-SLOPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285276211",
+   "mfr_sku": "JD-BELLAMY-GOLDFINCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Saffron Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285374515",
+   "mfr_sku": "JD-BELLAMY-MOLASSES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Treacle Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285800499",
+   "mfr_sku": "JD-BELMONT-FIELDSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Fieldstone",
+   "matched_pointe": "SKINTEX SF SERENITY/CHINA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285833267",
+   "mfr_sku": "JD-BELMONT-FROST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Icing Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Frost",
+   "matched_pointe": "SKINTEX SF SERENITY/HAZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571698227",
+   "mfr_sku": "JD-PULLMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Riviera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pullman",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571370547",
+   "mfr_sku": "JD-ECLIPSE-PEACOCK-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Iridescent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285866035",
+   "mfr_sku": "JD-BELMONT-GOLDEN-RETRIEVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Amber Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Golden Retriever",
+   "matched_pointe": "SKINTEX SF SERENITY/CHARDONNAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571960371",
+   "mfr_sku": "JD-RASHOMONROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Umbrella  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286128179",
+   "mfr_sku": "JD-BELMONT-SATCHEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Caramel Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Satchel",
+   "matched_pointe": "SKINTEX SF SERENITY/ETHIOPIA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286357555",
+   "mfr_sku": "JD-BELVEDERE-ARROWHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Obsidian Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286324787",
+   "mfr_sku": "JD-BELVEDERE-ALABASTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Limestone Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572681267",
+   "mfr_sku": "JD-EQUINOX-PETRIFIED-WOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Fossil  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286718003",
+   "mfr_sku": "JD-BELVEDERE-IBIZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Cove Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286947379",
+   "mfr_sku": "JD-BELVEDERE-MOONSHADOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Twilight Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573041715",
+   "mfr_sku": "JD-ERICSON-CRUCIBLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Kiln  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573533235",
+   "mfr_sku": "JD-ERICSON-NORDIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Glacier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288159795",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-SWEET-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Custard Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574745651",
+   "mfr_sku": "JD-ESPRIT-SWANKY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Luxe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288913459",
+   "mfr_sku": "JD-BERNARD-BLACK-SHEEP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Merino Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289110067",
+   "mfr_sku": "JD-BERNARD-ELYSIAN-FIELDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Paradise Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578579507",
+   "mfr_sku": "JD-SERAPHINA-OATMEAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Raffia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seraphina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289536051",
+   "mfr_sku": "JD-BERNARD-MERINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Angora Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575401011",
+   "mfr_sku": "JD-FAIRBANKS-FORTIFY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Reinforce  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairbanks",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578284595",
+   "mfr_sku": "JD-SECRETGARDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Secret Garden",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280164403",
+   "mfr_sku": "JD-AURELIUS-SEMOLINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Durum Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291469363",
+   "mfr_sku": "JD-BETTY-TUSK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Ivory  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695779891",
+   "mfr_sku": "JD-ALEUTIAN-ESPRESSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Kona Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Espresso",
+   "matched_pointe": "SKINTEX SF ASPECT/CHARCOAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576056371",
+   "mfr_sku": "JD-ROXBURY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Roxbury",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292550707",
+   "mfr_sku": "JD-BIANCA-BAZAAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Souk Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292616243",
+   "mfr_sku": "JD-BIANCA-BREADFRUIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Ulu Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292747315",
+   "mfr_sku": "JD-BIANCA-CALISTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Serene Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796293009459",
+   "mfr_sku": "JD-BIANCA-CARNATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Bougainvillea Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577006643",
+   "mfr_sku": "JD-FEDERICO-GLAMOUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Radiance  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Glamour",
+   "matched_pointe": "NEW WAVE ARCADIA/GORGE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796293271603",
+   "mfr_sku": "JD-BIANCA-ENIGMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Riddle Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294058035",
+   "mfr_sku": "JD-BIANCA-PINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Ananas Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294189107",
+   "mfr_sku": "JD-BIANCA-ROCKSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Terraces Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294549555",
+   "mfr_sku": "JD-BIANCA-TORNADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Cyclone Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577956915",
+   "mfr_sku": "JD-SASKIASHEER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578087987",
+   "mfr_sku": "JD-SATURN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Zenith  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Saturn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tekloom",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": "$2.55",
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295106611",
+   "mfr_sku": "JD-BIJOU-COLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Kola Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Cola",
+   "matched_pointe": "SKINTEX SF POP/CHOCOLATE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578120755",
+   "mfr_sku": "JD-SAUNTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashore  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Saunter *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578251827",
+   "mfr_sku": "JD-SCONSETCHECKTHROW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Sconset Check Throw",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sunset Social",
+   "proposed_cost": 299.0,
+   "tariff_passthrough": null,
+   "proposed_retail": 541.18,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578350131",
+   "mfr_sku": "JD-SELMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Selma",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Fundamentals",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578808883",
+   "mfr_sku": "JD-FLANDERS-DIONYSIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Bacchanal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579497011",
+   "mfr_sku": "JD-FLYNN-RETROGRADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Eclipse  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579529779",
+   "mfr_sku": "JD-FLYNN-SEPIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Aged  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428370995",
+   "mfr_sku": "JD-BONNEVILLE-CAROUSEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Merrygoround  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429943859",
+   "mfr_sku": "JD-ADELAIDE-ARAGON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Kingdom  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429714483",
+   "mfr_sku": "JD-ABRAXAS-CHOCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429976627",
+   "mfr_sku": "JD-ADELAIDE-BISHOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Cardinal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432204851",
+   "mfr_sku": "JD-AKIRA-FIRE-CORAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Ember  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702726707",
+   "mfr_sku": "JD-ARIES-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Teakwood Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433286195",
+   "mfr_sku": "JD-ALEUTIAN-AUSTERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Spartan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Austere",
+   "matched_pointe": "SKINTEX SF ASPECT/CLIPPER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433155123",
+   "mfr_sku": "JD-CESTINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Waikiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cestino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "The New Rattan",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.65",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433351731",
+   "mfr_sku": "JD-ALEUTIAN-BURLAP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Hessian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Burlap",
+   "matched_pointe": "SKINTEX SF ASPECT/SAND",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434957363",
+   "mfr_sku": "JD-COBBLESTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435153971",
+   "mfr_sku": "JD-ANITA-OLYMPIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Marathon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436333619",
+   "mfr_sku": "JD-CRESTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437218355",
+   "mfr_sku": "JD-CRUSOE-HIGHLIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Radiance  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436628531",
+   "mfr_sku": "JD-ANTONI-SAGRADA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Cathedral  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439020595",
+   "mfr_sku": "JD-DEBUSSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Debussy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810438234163",
+   "mfr_sku": "JD-DAYDREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440167475",
+   "mfr_sku": "JD-DIOCLES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Zenith  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Diocles",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443968563",
+   "mfr_sku": "JD-BALBOA-WORLDBEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Calypso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Worldbeat",
+   "matched_pointe": "CONTESSA SIENA/ORANGE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445443123",
+   "mfr_sku": "JD-BARNUM-OWL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Ashen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456780851",
+   "mfr_sku": "JD-HEATHROWE-CORDOVAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Heathrowe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456649779",
+   "mfr_sku": "JD-BOONE-PALE-DAISY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marae - Freesia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581758003",
+   "mfr_sku": "JD-SOCRATES-HEMP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Jute  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540765235",
+   "mfr_sku": "JD-BRAHMS-ADAGIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Breeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542534707",
+   "mfr_sku": "JD-BRIGHTON-NEWSPAPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Headline  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546204723",
+   "mfr_sku": "JD-CALIFA-BOWER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Arbor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546729011",
+   "mfr_sku": "JD-CALIFA-MISSISSIPPI-NIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547515443",
+   "mfr_sku": "JD-LEONIDAS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Leonidas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553741363",
+   "mfr_sku": "JD-CASSIUS-CAMPFIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Ember  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553675827",
+   "mfr_sku": "JD-MAHLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Mahler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553643059",
+   "mfr_sku": "JD-CASSANDRA-SUMMIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassandra",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582413363",
+   "mfr_sku": "JD-SOLANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Solange *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558722099",
+   "mfr_sku": "JD-CHECKERED-AXELROD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Pundit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558787635",
+   "mfr_sku": "JD-CHECKERED-COMMONWEALTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Archipelago  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559049779",
+   "mfr_sku": "JD-CHECKERED-PURPLE-HEART",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Amaranth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560262195",
+   "mfr_sku": "JD-MINERVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Minerva",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561343539",
+   "mfr_sku": "JD-NAPA-BUTTERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cocos - Rich  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Napa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.55",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561507379",
+   "mfr_sku": "JD-CONFLUENCE-COOPER-CREEK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Estuary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Cooper Creek",
+   "matched_pointe": "GALLERIA SF HAMILTON/STREAM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564227123",
+   "mfr_sku": "JD-PADOVA-COCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Koko  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564522035",
+   "mfr_sku": "JD-DALTON-SMOKEY-TAUPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Cocoa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566783027",
+   "mfr_sku": "JD-PHINEAS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Teakwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phineas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569076787",
+   "mfr_sku": "JD-DOYLE-BURRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Donkey  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569568307",
+   "mfr_sku": "JD-DUVALL-BENEFACTOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571534387",
+   "mfr_sku": "JD-ECLIPSE-SMOKESTACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Chimney  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571730995",
+   "mfr_sku": "JD-PURSUIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Voyager  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571567155",
+   "mfr_sku": "JD-ECLIPSE-SNOWSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Tundra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575499315",
+   "mfr_sku": "JD-FAIRBANKS-IGNEOUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Magma  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairbanks",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575368243",
+   "mfr_sku": "JD-FAIRBANKS-CALCIFY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairbanks",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576875571",
+   "mfr_sku": "JD-FEDERICO-BLACKBERRY-BLISS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Javaplum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Blackberry Bliss",
+   "matched_pointe": "NEW WAVE ARCADIA/BORDEAUX",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577760307",
+   "mfr_sku": "JD-FERETTI-WITH-OMBRE-EBB-AND-FLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Tideline  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579300403",
+   "mfr_sku": "JD-SHAKA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Aloha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Shaka",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579333171",
+   "mfr_sku": "JD-SHALINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lush  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579595315",
+   "mfr_sku": "JD-SHANE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Shane",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579857459",
+   "mfr_sku": "JD-SHILOH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Azure  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580381747",
+   "mfr_sku": "JD-SIERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Sierra",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581233715",
+   "mfr_sku": "JD-GALA-WALTZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Celebration - Rumba  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gala",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581790771",
+   "mfr_sku": "JD-SOCRATES-HORCHATA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Cinnamon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581659699",
+   "mfr_sku": "JD-GENEVIEVE-SEA-SALT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Crystals  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581921843",
+   "mfr_sku": "JD-SOCRATES-MINK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Weasel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582970419",
+   "mfr_sku": "JD-GRANT-BLACK-BAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701350451",
+   "mfr_sku": "JD-ANTIGUA-JABBERWOCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Behemoth Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583756851",
+   "mfr_sku": "JD-STELLATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starlight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Stellato",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701219379",
+   "mfr_sku": "JD-ANTIGUA-CYAN-SEA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Caribbean Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701415987",
+   "mfr_sku": "JD-ANTIGUA-NAVIGATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Cartographer Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701514291",
+   "mfr_sku": "JD-ANTIGUA-SHELLSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Coquina Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560458803",
+   "mfr_sku": "JD-MIRAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Mirage *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585624627",
+   "mfr_sku": "JD-GRIFFIN-SUN-GOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Ra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Sun God",
+   "matched_pointe": "NEW WAVE TRAVERSE/SADDLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693092915",
+   "mfr_sku": "JD-AESOP-ODEON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Terracotta Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702857779",
+   "mfr_sku": "JD-ARIES-SPELLBOUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Enchant Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276592691",
+   "mfr_sku": "JD-ATHENA-SNOW-PEAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Volcano Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7790937112627",
+   "mfr_sku": "JD-AURA",
+   "dw_sku": null,
+   "vendor": "Architectural Wallcoverings",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Aura  Architectural Wallcoverings Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aura *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283899955",
+   "mfr_sku": "JD-BARNUM-MILLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Sorghum Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289437747",
+   "mfr_sku": "JD-BERNARD-LITTLE-LAMB",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Cloudlet Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289732659",
+   "mfr_sku": "JD-BERNARD-TUSCAN-TERRAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Ochre Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291960883",
+   "mfr_sku": "JD-BEVERLY-BEAUTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Exotica Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284194867",
+   "mfr_sku": "JD-BARRYMORE-GLAMOUR-SHOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Flashbulb Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284162099",
+   "mfr_sku": "JD-BARRYMORE-CHIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Gong Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284260403",
+   "mfr_sku": "JD-BARRYMORE-SCEPTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Regalia Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284096563",
+   "mfr_sku": "JD-BARRYMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444492851",
+   "mfr_sku": "JD-FAIRBANKS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairbanks",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455535667",
+   "mfr_sku": "JD-HARPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703742515",
+   "mfr_sku": "JD-ARTEMIS-AZURITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Peacock Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562359347",
+   "mfr_sku": "JD-OCTAVIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Octavius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703808051",
+   "mfr_sku": "JD-ARTEMIS-BASCILICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Temple Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287766579",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-CASPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Albino Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287930419",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-EGGWASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Cashew Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287995955",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-PAVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Terracotta Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539847731",
+   "mfr_sku": "JD-HIKARU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hikaru",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564620339",
+   "mfr_sku": "JD-PARAMOUNT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430337075",
+   "mfr_sku": "JD-ADELAIDE-WESTMINSTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Colonial  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448883763",
+   "mfr_sku": "JD-BELVEDERE-ALABASTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542370867",
+   "mfr_sku": "JD-BRIGHTON-DOWNPOUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560917555",
+   "mfr_sku": "JD-COACHELLA-RED-DESERT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Arid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Red Desert",
+   "matched_pointe": "GALLERIA KALOONG/GOJI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574057523",
+   "mfr_sku": "JD-RENATA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Dolphin  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Renata",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566488115",
+   "mfr_sku": "JD-PERSEUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Perseus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582380595",
+   "mfr_sku": "JD-SOLANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Solana *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583789619",
+   "mfr_sku": "JD-GRIFFIN-BARCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Cutter  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Barco",
+   "matched_pointe": "NEW WAVE TRAVERSE/LATTE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581463091",
+   "mfr_sku": "JD-SLOANE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cayman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Sloane",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.25",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452684851",
+   "mfr_sku": "JD-BIJOU-BING-CHERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Pomegranate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Bing Cherry",
+   "matched_pointe": "SKINTEX SF POP/SALSA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702661171",
+   "mfr_sku": "JD-ARIES-LEXICON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Script Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7790937309235",
+   "mfr_sku": "JD-BAHARA-HAVILAND",
+   "dw_sku": null,
+   "vendor": "Architectural Wallcoverings",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Bahara Haviland  Architectural Wallcoverings Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273250355",
+   "mfr_sku": "JD-ASHTON-COLOMBO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Cinnamon Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273184819",
+   "mfr_sku": "JD-ASHTON-CABAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Desert Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273774643",
+   "mfr_sku": "JD-ASHTON-TINCTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Elixir Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796272922675",
+   "mfr_sku": "JD-ASHTON-AZURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Lapis Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273315891",
+   "mfr_sku": "JD-ASHTON-GWEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Orchid Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273446963",
+   "mfr_sku": "JD-ASHTON-MYSTIC-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Quicksand Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273643571",
+   "mfr_sku": "JD-ASHTON-ROOK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Raven Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273381427",
+   "mfr_sku": "JD-ASHTON-HEROD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan - Tyrant Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547908659",
+   "mfr_sku": "JD-LINOTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Banyan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Linoto",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287373363",
+   "mfr_sku": "JD-BELVEDERE-ROULETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Casino Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440462387",
+   "mfr_sku": "JD-ASHANTI-PERSIMMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280066099",
+   "mfr_sku": "JD-AURELIUS-HAYFIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Savanna Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280000563",
+   "mfr_sku": "JD-AURELIUS-GALE-WINDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Tempest Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279836723",
+   "mfr_sku": "JD-AURELIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570485811",
+   "mfr_sku": "JD-PRISCILLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Priscilla",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696959539",
+   "mfr_sku": "JD-ALEXEY-PATHWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Trail Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551939123",
+   "mfr_sku": "JD-CARVILLE-AMAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - River  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696238643",
+   "mfr_sku": "JD-ALEUTIAN-SILT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Alluvium Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Silt",
+   "matched_pointe": "SKINTEX SF ASPECT/PORCELAIN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695517747",
+   "mfr_sku": "JD-ALEUTIAN-ALOE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Succulent Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Aloe",
+   "matched_pointe": "SKINTEX SF ASPECT/CAPRI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581102643",
+   "mfr_sku": "JD-SITAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ukelele  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568159283",
+   "mfr_sku": "JD-DIONYSUS-SHIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Hamlet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810555936819",
+   "mfr_sku": "JD-MANILOW-CASHEW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manilow *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hides & Textures",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810556526643",
+   "mfr_sku": "JD-MANILOW-MAPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manilow *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hides & Textures",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810556330035",
+   "mfr_sku": "JD-MANILOW-MANGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manilow *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hides & Textures",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297138227",
+   "mfr_sku": "JD-BODIE-OBSCURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Shaded Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Obscure",
+   "matched_pointe": "NEW WAVE POSH/MOCHA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705806899",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-ARUBA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - DiviDivi Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795706265651",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-PALOMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Dove Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691257907",
+   "mfr_sku": "JD-ABRAXAS-CHOCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Cacao Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569470003",
+   "mfr_sku": "JD-DOYLE-ZANZIBAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Spice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796293992499",
+   "mfr_sku": "JD-BIANCA-NEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Aviary Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285603891",
+   "mfr_sku": "JD-BELMONT-BROWN-TAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Bitumen Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Brown Tar",
+   "matched_pointe": "SKINTEX SF SERENITY/COCOA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286193715",
+   "mfr_sku": "JD-BELMONT-TAN-TEXTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Cinnamon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Tan Texture",
+   "matched_pointe": "SKINTEX SF SERENITY/RYE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286029875",
+   "mfr_sku": "JD-BELMONT-OVERALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Denim Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Overall",
+   "matched_pointe": "SKINTEX SF SERENITY/LAGOON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285931571",
+   "mfr_sku": "JD-BELMONT-HALF-DOLLAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Doubloon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Half Dollar",
+   "matched_pointe": "SKINTEX SF SERENITY/SILVER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286292019",
+   "mfr_sku": "JD-BELMONT-WROUGHT-IRON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Grillage Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Wrought Iron",
+   "matched_pointe": "SKINTEX SF SERENITY/SEAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285767731",
+   "mfr_sku": "JD-BELMONT-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Ember",
+   "matched_pointe": "SKINTEX SF SERENITY/SAFFRON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448326707",
+   "mfr_sku": "JD-BELMONT-FIELDSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Fieldstone",
+   "matched_pointe": "SKINTEX SF SERENITY/CHINA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285636659",
+   "mfr_sku": "JD-BELMONT-CANARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Mango Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Canary",
+   "matched_pointe": "SKINTEX SF SERENITY/MORNING GLORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285571123",
+   "mfr_sku": "JD-BELMONT-BROWN-SIENNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Ochre Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Brown Sienna",
+   "matched_pointe": "SKINTEX SF SERENITY/ARROYO",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285669427",
+   "mfr_sku": "JD-BELMONT-CARAMEL-CORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Popcorn Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Caramel Corn",
+   "matched_pointe": "SKINTEX SF SERENITY/MOREL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285898803",
+   "mfr_sku": "JD-BELMONT-GRASS-SKIRT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Raffia Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Grass Skirt",
+   "matched_pointe": "SKINTEX SF SERENITY/SPRING",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286259251",
+   "mfr_sku": "JD-BELMONT-WHITE-WATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Rapids Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/White Water",
+   "matched_pointe": "SKINTEX SF SERENITY/PLATINUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285472819",
+   "mfr_sku": "JD-BELMONT-BLUE-THRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Songbird Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Blue Thrush",
+   "matched_pointe": "SKINTEX SF SERENITY/IRIS",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286160947",
+   "mfr_sku": "JD-BELMONT-SWEET-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Tangerine Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Sweet Orange",
+   "matched_pointe": "SKINTEX SF SERENITY/SUNBURST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285997107",
+   "mfr_sku": "JD-BELMONT-HORSE-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Trot Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Horse Feather",
+   "matched_pointe": "SKINTEX SF SERENITY/IRISH MIST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285538355",
+   "mfr_sku": "JD-BELMONT-BRIAR-PATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Undergrowth Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Briar Patch",
+   "matched_pointe": "SKINTEX SF SERENITY/FENNEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286062643",
+   "mfr_sku": "JD-BELMONT-ROOT-BEER-FLOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Vanilla Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Root Beer Float",
+   "matched_pointe": "SKINTEX SF SERENITY/CURRY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285440051",
+   "mfr_sku": "JD-BELMONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belmont *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Le Cirque",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796275675187",
+   "mfr_sku": "JD-ATHENA-DREAMY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Ethereal Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283146291",
+   "mfr_sku": "JD-BANDOLIER-MOSSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Bromeliad Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Mossy",
+   "matched_pointe": "SKINTEX SF RHYME/WILLOW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446917683",
+   "mfr_sku": "JD-BASQUETTA-AMULET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Talisman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435940403",
+   "mfr_sku": "JD-ANTIGUA-CYAN-SEA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Caribbean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568421427",
+   "mfr_sku": "JD-DOLOMIEU-FLOWER-AGATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Flower Agate",
+   "matched_pointe": "GALLERIA SF TRESOR/OAT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283047987",
+   "mfr_sku": "JD-BANDOLIER-DIAMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Brilliant Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Diamond",
+   "matched_pointe": "SKINTEX SF RHYME/FROST",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283080755",
+   "mfr_sku": "JD-BANDOLIER-ELIXIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Nectar Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Elixir",
+   "matched_pointe": "SKINTEX SF RHYME/AQUA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282851379",
+   "mfr_sku": "JD-BANDOLIER-DARK-ALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Shadows Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Dark Alley",
+   "matched_pointe": "SKINTEX SF RHYME/SMOKE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700465715",
+   "mfr_sku": "JD-ANNENDALE-COBALT-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Aquatic Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cobalt Turquoise",
+   "matched_pointe": "GALLERIA TRIPOD/AEGEAN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700990003",
+   "mfr_sku": "JD-ANNENDALE-TIN-LIZZIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Roadster Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Tin Lizzie",
+   "matched_pointe": "GALLERIA TRIPOD/MIST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700727859",
+   "mfr_sku": "JD-ANNENDALE-FERVENT-BRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Trumpet Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Fervent Brass",
+   "matched_pointe": "GALLERIA TRIPOD/MARSH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551676979",
+   "mfr_sku": "JD-MACKAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Mackay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455896115",
+   "mfr_sku": "JD-BOLIVAR-PRUNE-JUICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Molasses  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Prune Juice",
+   "matched_pointe": "NUVTEX CROCO/BORDEAUX",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281540659",
+   "mfr_sku": "JD-BALBOA-SAVANNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Veldt Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Savanna",
+   "matched_pointe": "CONTESSA SIENA/FLAX",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284981299",
+   "mfr_sku": "JD-BASTION-GOOSEFOOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman - Quinoa Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285014067",
+   "mfr_sku": "JD-BASTION-MOUNTAINTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman - Summit Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284915763",
+   "mfr_sku": "JD-BASTION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428960819",
+   "mfr_sku": "JD-BRANNAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Caiman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brannan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692273715",
+   "mfr_sku": "JD-ADELAIDE-MIDNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Abyss Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692470323",
+   "mfr_sku": "JD-ADELAIDE-TRINITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Trio Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567536691",
+   "mfr_sku": "JD-PICCARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Calamus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Piccard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547023923",
+   "mfr_sku": "JD-CALIFA-ROYAL-COURT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Dynasty  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810438103091",
+   "mfr_sku": "JD-DAUPHINAY-OCEANAIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Aqua  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561966131",
+   "mfr_sku": "JD-NESSA-BISQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Custard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564816947",
+   "mfr_sku": "JD-DAUPHINAY-GRAY-MIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Drizzle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810438135859",
+   "mfr_sku": "JD-DAUPHINAY-SIROCCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Harmattan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561900595",
+   "mfr_sku": "JD-NESSA-BARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Sapele  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580021299",
+   "mfr_sku": "JD-FRANCISCAN-CAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Latte  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Caf\u00e9",
+   "matched_pointe": "SKINTEX SF RETRO/ARABICA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581594163",
+   "mfr_sku": "JD-GENEVIEVE-FALCON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Raptor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571305011",
+   "mfr_sku": "JD-ECLIPSE-MOONRISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Sunrise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796282228787",
+   "mfr_sku": "JD-BANDOLIER-ADOBE-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Umber Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Adobe Brown",
+   "matched_pointe": "SKINTEX SF RHYME/ARROYO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700924467",
+   "mfr_sku": "JD-ANNENDALE-STAMPED-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Tsunami Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Stamped Concrete",
+   "matched_pointe": "GALLERIA TRIPOD/CIRRUS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700596787",
+   "mfr_sku": "JD-ANNENDALE-CRUISE-LINER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Yacht Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cruise Liner",
+   "matched_pointe": "GALLERIA TRIPOD/STERLING",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287242291",
+   "mfr_sku": "JD-BELVEDERE-PEPPERCORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Allspice Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287569971",
+   "mfr_sku": "JD-BELVEDERE-TERRA-COTTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Brick Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287701043",
+   "mfr_sku": "JD-BELVEDERE-TREASURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Doubloon Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287143987",
+   "mfr_sku": "JD-BELVEDERE-PEBBLESTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Flagstone Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286554163",
+   "mfr_sku": "JD-BELVEDERE-CHARCOAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Lava Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286488627",
+   "mfr_sku": "JD-BELVEDERE-BOARDWALK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - Promenade Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286816307",
+   "mfr_sku": "JD-BELVEDERE-MARIGOLD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Vista - YlangYlang Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445606963",
+   "mfr_sku": "JD-BARNUM-SILVER-ASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Driftwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546008115",
+   "mfr_sku": "JD-LEGENDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Voyager  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Legends",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548203571",
+   "mfr_sku": "JD-LOOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Waikiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Loop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290420787",
+   "mfr_sku": "JD-BETTY-FRESH-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Alabaster  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290715699",
+   "mfr_sku": "JD-BETTY-LILAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Plumeria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290814003",
+   "mfr_sku": "JD-BETTY-MINCED-ONION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Shallot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283932723",
+   "mfr_sku": "JD-BARNUM-OWL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Ashen Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445803571",
+   "mfr_sku": "JD-BARRYMORE-CHIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Gong  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440888371",
+   "mfr_sku": "JD-ASHTON-MYSTIC-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Quicksand  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441019443",
+   "mfr_sku": "JD-ASHTON-ROOK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Raven  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558591027",
+   "mfr_sku": "JD-CHAPLIN-SAILBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Sloop  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chaplin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558558259",
+   "mfr_sku": "JD-CHAPLIN-KITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Soar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chaplin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694010419",
+   "mfr_sku": "JD-ALASTAIR-CORAL-GLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Sunrise Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Coral Glow",
+   "matched_pointe": "TEKLOOM REVELRY/PERSIMMON",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578448435",
+   "mfr_sku": "JD-SENSOSHEERROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285079603",
+   "mfr_sku": "JD-BATISTE-PFP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Capiz - Profile Print Basecloths  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294713395",
+   "mfr_sku": "JD-BIJOU-ANGEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Halcyon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Angel",
+   "matched_pointe": "SKINTEX SF POP/WHITE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776943800371",
+   "mfr_sku": "JD-010",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Chromatic Architecture Vivid  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568192051",
+   "mfr_sku": "JD-PLATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Zenith  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Plato",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561376307",
+   "mfr_sku": "JD-NELSON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Tropicana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nelson *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574942259",
+   "mfr_sku": "JD-ESTATE-FALLINGWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Rapids  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571862067",
+   "mfr_sku": "JD-ELGAR-PEBBLES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Harmony - Granules  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Elgar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279017523",
+   "mfr_sku": "JD-AURA-SERENGETTI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Acacia Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Serengetti",
+   "matched_pointe": "BEYOND SYNERGY/STEM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450161715",
+   "mfr_sku": "JD-GEORGETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581856307",
+   "mfr_sku": "JD-SOCRATES-LINEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Canvas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7790937374771",
+   "mfr_sku": "JD-BALBOA",
+   "dw_sku": null,
+   "vendor": "Architectural Wallcoverings",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Balboa  Architectural Wallcoverings Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Balboa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$2.05",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433548339",
+   "mfr_sku": "JD-ALEUTIAN-RED-TOMATO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Red Tomato",
+   "matched_pointe": "SKINTEX SF ASPECT/CORAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568781875",
+   "mfr_sku": "JD-POLYBIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Zenith  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Polybius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581889075",
+   "mfr_sku": "JD-SOCRATES-MILANO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Espresso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581725235",
+   "mfr_sku": "JD-SOCRATES-COALDUST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Grime  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575564851",
+   "mfr_sku": "JD-ROWAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rowan *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wanderlust",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457534515",
+   "mfr_sku": "JD-BOULEVARD-RANDOLPH-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Dovetail  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Randolph Gray",
+   "matched_pointe": "GALLERIA STITCH/GRIS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457403443",
+   "mfr_sku": "JD-BOULEVARD-GRAND-CANAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Venetian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Grand Canal",
+   "matched_pointe": "GALLERIA STITCH/SEA BLUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428764211",
+   "mfr_sku": "JD-BOULEVARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boulevard *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434990131",
+   "mfr_sku": "JD-CONFLUENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Confluence",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Peak Performance",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561409075",
+   "mfr_sku": "JD-CONFLUENCE-ARMORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Arsenal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Armory",
+   "matched_pointe": "GALLERIA SF HAMILTON/GRAPHITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565275699",
+   "mfr_sku": "JD-DAYDREAM-NAPA-VALLEY-WINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Merlot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565472307",
+   "mfr_sku": "JD-DAYDREAM-SERENISSIMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Venetian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564685875",
+   "mfr_sku": "JD-PARASHANT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Parashant *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582741043",
+   "mfr_sku": "JD-GODDESS-STRIPE-SPARTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tidal - Citadel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Goddess Stripe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582708275",
+   "mfr_sku": "JD-GODDESS-STRIPE-ABUNDANCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tidal - Harvest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Goddess Stripe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566389811",
+   "mfr_sku": "JD-DEMETER-HEAVENLY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Ethereal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430009395",
+   "mfr_sku": "JD-ADELAIDE-CARAVAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Safari  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451275827",
+   "mfr_sku": "JD-BETTY-TUSK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Ivory  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581626931",
+   "mfr_sku": "JD-GENEVIEVE-LYRIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Melody  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563473459",
+   "mfr_sku": "JD-CRUSOE-EMPIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Dynasty  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285341747",
+   "mfr_sku": "JD-BELLAMY-HICKORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Pecan Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7790936719411",
+   "mfr_sku": "JD-BAHARA-CAMACHA",
+   "dw_sku": null,
+   "vendor": "Architectural Wallcoverings",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Bahara Camacha  Architectural Wallcoverings Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276822067",
+   "mfr_sku": "JD-ATHENA-UNDERCOVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Camouflage Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276199475",
+   "mfr_sku": "JD-ATHENA-GODIVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Chocolate Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796275445811",
+   "mfr_sku": "JD-ATHENA-BONSAI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Jungle Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276527155",
+   "mfr_sku": "JD-ATHENA-PIANISSIMO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Whisper Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452652083",
+   "mfr_sku": "JD-BIJOU-ANGEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Halcyon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Angel",
+   "matched_pointe": "SKINTEX SF POP/WHITE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452717619",
+   "mfr_sku": "JD-BIJOU-BRIGHT-SKY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cerulean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Bright Sky",
+   "matched_pointe": "SKINTEX SF POP/LAPIS BLUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566848563",
+   "mfr_sku": "JD-DIEGUITO-BULLS-BLOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Sangria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Bull's Blood",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/CARMINE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566914099",
+   "mfr_sku": "JD-DIEGUITO-DEERHUNTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Bushwhack  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Deerhunter",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/CANYON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557902899",
+   "mfr_sku": "JD-CESTINO-OAT-BRAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Sisal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Oat Bran",
+   "matched_pointe": "GALLERIA SF NEVIS/BRANCH",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557739059",
+   "mfr_sku": "JD-CESTINO-NEWSPRINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Tabloid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Newsprint",
+   "matched_pointe": "GALLERIA SF NEVIS/FOG",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557575219",
+   "mfr_sku": "JD-CESTINO-LIGHTNING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Thunder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Lightning",
+   "matched_pointe": "GALLERIA SF NEVIS/TINSEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539683891",
+   "mfr_sku": "JD-BRADFORD-MINIMALIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Zen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558656563",
+   "mfr_sku": "JD-MAVERICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Koa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Maverick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432696371",
+   "mfr_sku": "JD-ALASTAIR-ALMONDINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Vanilla  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Almondine",
+   "matched_pointe": "TEKLOOM REVELRY/FOSSIL",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297465907",
+   "mfr_sku": "JD-BODIE-VAGABOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Nomad Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Vagabond",
+   "matched_pointe": "NEW WAVE POSH/LATTE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692798003",
+   "mfr_sku": "JD-AESOP-ARGAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradise - Macadamia Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284719155",
+   "mfr_sku": "JD-BASQUETTA-PARFUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Frangipani Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810554396723",
+   "mfr_sku": "JD-MAKITA-OLERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cyclone - Verdant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Makita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434662451",
+   "mfr_sku": "JD-AMAZONIA-DRAGONS-SCALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Iguana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Dragon's Scale",
+   "matched_pointe": "NEW WAVE MAMBA II/WILLOW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439282739",
+   "mfr_sku": "JD-ARIES-CASABLANCA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Courtyard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439577651",
+   "mfr_sku": "JD-ARIES-SPELLBOUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Enchant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571501619",
+   "mfr_sku": "JD-ECLIPSE-SKINTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Shadows - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566651955",
+   "mfr_sku": "JD-PETALUMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Petaluma",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.30",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441478195",
+   "mfr_sku": "JD-ATHENA-PIANISSIMO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Whisper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795692077107",
+   "mfr_sku": "JD-ADELAIDE-FALSTAFF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Jovial Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582806579",
+   "mfr_sku": "JD-SPURLOCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Spurlock *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292059187",
+   "mfr_sku": "JD-BEVERLY-CHARMED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Amulet Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292190259",
+   "mfr_sku": "JD-BEVERLY-GALLERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Atelier Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292288563",
+   "mfr_sku": "JD-BEVERLY-ICE-QUEEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Frost Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561605683",
+   "mfr_sku": "JD-CONFLUENCE-HAYES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Sisal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Hayes",
+   "matched_pointe": "GALLERIA SF HAMILTON/BISQUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559148083",
+   "mfr_sku": "JD-CHECKERED-SEASIDE-MANOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559115315",
+   "mfr_sku": "JD-CHECKERED-SCARLET-PIMPERNEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Poinsettia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565013555",
+   "mfr_sku": "JD-DAYDREAM-BLUEBELLS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Hyacinth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563801139",
+   "mfr_sku": "JD-CRUSOE-SANDCASTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Conch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577662003",
+   "mfr_sku": "JD-FELISA-IRISH-WOLFHOUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Timber  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553413683",
+   "mfr_sku": "JD-CARVILLE-ROCK-STEADY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Anchored  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437054515",
+   "mfr_sku": "JD-ANTONI-VERONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Riviera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566455347",
+   "mfr_sku": "JD-DEMETER-STONEWASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Denim  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450194483",
+   "mfr_sku": "JD-BETTY-AMERICAN-CHEESE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Pineapple  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429616179",
+   "mfr_sku": "JD-CALVIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Geneva  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563670067",
+   "mfr_sku": "JD-CRUSOE-PEPPERCORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Allspice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447638579",
+   "mfr_sku": "JD-BELLAMY-BIRCH-BARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Cinnamon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563768371",
+   "mfr_sku": "JD-CRUSOE-QUARRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Gravel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455011379",
+   "mfr_sku": "JD-HANOVER-ONIONSKIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Parchment  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447867955",
+   "mfr_sku": "JD-BELLAMY-HICKORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Pecan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563866675",
+   "mfr_sku": "JD-CRUSOE-SPROUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Sapling  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455044147",
+   "mfr_sku": "JD-HANOVER-SLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Shale  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hanover *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563833907",
+   "mfr_sku": "JD-CRUSOE-SHASTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Snowcap  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563702835",
+   "mfr_sku": "JD-CRUSOE-PERSIMMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564030515",
+   "mfr_sku": "JD-CRUSOE-WATERSPOUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Torrent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crusoe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447900723",
+   "mfr_sku": "JD-BELLAMY-MOLASSES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islander - Treacle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578022451",
+   "mfr_sku": "JD-FIJI-DESERT-PARADISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islandia - Mirage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiji",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578055219",
+   "mfr_sku": "JD-FIJI-FROND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islandia - Palmate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiji",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445967411",
+   "mfr_sku": "JD-FIJI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islandia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiji",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448293939",
+   "mfr_sku": "JD-BELMONT-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Ember",
+   "matched_pointe": "SKINTEX SF SERENITY/SAFFRON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448195635",
+   "mfr_sku": "JD-BELMONT-CANARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Mango  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Canary",
+   "matched_pointe": "SKINTEX SF SERENITY/MORNING GLORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448425011",
+   "mfr_sku": "JD-BELMONT-GRASS-SKIRT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Raffia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Grass Skirt",
+   "matched_pointe": "SKINTEX SF SERENITY/SPRING",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448752691",
+   "mfr_sku": "JD-BELMONT-WHITE-WATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Rapids  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/White Water",
+   "matched_pointe": "SKINTEX SF SERENITY/PLATINUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448097331",
+   "mfr_sku": "JD-BELMONT-BRIAR-PATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Undergrowth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Briar Patch",
+   "matched_pointe": "SKINTEX SF SERENITY/FENNEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448556083",
+   "mfr_sku": "JD-BELMONT-ROOT-BEER-FLOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Vanilla  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Root Beer Float",
+   "matched_pointe": "SKINTEX SF SERENITY/CURRY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575794227",
+   "mfr_sku": "JD-FAIRFAX-FRESHWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Creek  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Freshwater",
+   "matched_pointe": "NEW WAVE STORM/STREAM",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575892531",
+   "mfr_sku": "JD-FAIRFAX-PRUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Datefruit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Prune",
+   "matched_pointe": "NEW WAVE STORM/BORDEAUX",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575695923",
+   "mfr_sku": "JD-FAIRFAX-EXPO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Fairground  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Expo",
+   "matched_pointe": "NEW WAVE STORM/TWILIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575990835",
+   "mfr_sku": "JD-FAIRFAX-STAGE-DOOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Grotto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Stage Door",
+   "matched_pointe": "NEW WAVE STORM/COCOA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575958067",
+   "mfr_sku": "JD-FAIRFAX-SPALDING-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Gull  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Spalding Gray",
+   "matched_pointe": "NEW WAVE STORM/IRON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575925299",
+   "mfr_sku": "JD-FAIRFAX-SOLARIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Solaris",
+   "matched_pointe": "NEW WAVE STORM/SPRING",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575630387",
+   "mfr_sku": "JD-FAIRFAX-CHANDON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Tiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Chandon",
+   "matched_pointe": "NEW WAVE STORM/CHABLIS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444525619",
+   "mfr_sku": "JD-FAIRFAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairfax *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561867827",
+   "mfr_sku": "JD-NESSA-AQUA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Teal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562097203",
+   "mfr_sku": "JD-NESSA-CINNABAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Vermillion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545352755",
+   "mfr_sku": "JD-KENSINGTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Honu  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Kensington",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283179059",
+   "mfr_sku": "JD-BANDOLIER-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Triton - Nomad Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Rover",
+   "matched_pointe": "SKINTEX SF RHYME/FIELD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440593459",
+   "mfr_sku": "JD-ASHANTI-TERRAZZO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Pebblestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432958515",
+   "mfr_sku": "JD-ALASTAIR-PARTRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Quail  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Partridge",
+   "matched_pointe": "TEKLOOM REVELRY/FIELD",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545451059",
+   "mfr_sku": "JD-BUTLER-COTTON-CLUB",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Steward - Havana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Butler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545516595",
+   "mfr_sku": "JD-KIRBY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Kirby",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567700531",
+   "mfr_sku": "JD-PICKWICK-CASHMERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangosteen - Angora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pickwick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567569459",
+   "mfr_sku": "JD-DIOCLES-BEESWAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Zenith - Ambergris  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Diocles",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444165171",
+   "mfr_sku": "JD-BANDOLIER-BUTTERCUP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Marigold  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Buttercup",
+   "matched_pointe": "SKINTEX SF RHYME/CASHEW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444099635",
+   "mfr_sku": "JD-BANDOLIER-ADOBE-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Umber  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Adobe Brown",
+   "matched_pointe": "SKINTEX SF RHYME/ARROYO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426306611",
+   "mfr_sku": "JD-BANDOLIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bandolier *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561802291",
+   "mfr_sku": "JD-CONFLUENCE-TINKERBELL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Firefly  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Tinkerbell",
+   "matched_pointe": "GALLERIA SF HAMILTON/NECTAR",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435416115",
+   "mfr_sku": "JD-ANNENDALE-COBALT-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Aquatic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cobalt Turquoise",
+   "matched_pointe": "GALLERIA TRIPOD/AEGEAN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560393267",
+   "mfr_sku": "JD-CICERO-SILVERSPUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Gossamer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560294963",
+   "mfr_sku": "JD-CICERO-ATLANTIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Sunken  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562949171",
+   "mfr_sku": "JD-OSBOURNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cabana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Osbourne",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776940916787",
+   "mfr_sku": "JD-005",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Midnight Spectrum Portal  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541387827",
+   "mfr_sku": "JD-BRANNAN-CORIANDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Cilantro  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brannan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541256755",
+   "mfr_sku": "JD-BRANNAN-BRUNETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Espresso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Brunette",
+   "matched_pointe": "GALLERIA CENTRAL/COCOA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541846579",
+   "mfr_sku": "JD-BRANNAN-TIERRA-DEL-FUEGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Patagonia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Tierra Del Fuego",
+   "matched_pointe": "GALLERIA CENTRAL/CLAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541813811",
+   "mfr_sku": "JD-BRANNAN-TEA-LEAF-GREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Sencha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Tea Leaf Green",
+   "matched_pointe": "GALLERIA CENTRAL/APPLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541617203",
+   "mfr_sku": "JD-BRANNAN-MUSTARD-SEED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Sinapis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Mustard Seed",
+   "matched_pointe": "GALLERIA CENTRAL/GRAIN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544500787",
+   "mfr_sku": "JD-JULIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calamus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Julian *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$2.05",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547712051",
+   "mfr_sku": "JD-CALLIE-GRAINS-OF-PARADISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Allspice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Grains Of Paradise",
+   "matched_pointe": "BLACKOUT VIVALDI/CANVAS",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547613747",
+   "mfr_sku": "JD-CALLIE-CASTLE-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Keep  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Castle Grey",
+   "matched_pointe": "BLACKOUT VIVALDI/PEWTER",
+   "source_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284620851",
+   "mfr_sku": "JD-BASQUETTA-MANILA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Cinnamon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294287411",
+   "mfr_sku": "JD-BIANCA-SANDBAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Cay Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544959539",
+   "mfr_sku": "JD-BRYCE-COPPERHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Anaconda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Copperhead",
+   "matched_pointe": "CONTESSA MADEIRA/QUARRY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545123379",
+   "mfr_sku": "JD-BRYCE-MATTE-BRONZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Artifact  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Matte Bronze",
+   "matched_pointe": "CONTESSA MADEIRA/CLAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544828467",
+   "mfr_sku": "JD-BRYCE-BUSTER-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Chapati  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Buster Brown",
+   "matched_pointe": "CONTESSA MADEIRA/TRAIL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545188915",
+   "mfr_sku": "JD-BRYCE-RED-WING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Flamingo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Red Wing",
+   "matched_pointe": "CONTESSA MADEIRA/THRILL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545025075",
+   "mfr_sku": "JD-BRYCE-DARKNESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Midnightsun  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Darkness",
+   "matched_pointe": "CONTESSA MADEIRA/GRAPHITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545156147",
+   "mfr_sku": "JD-BRYCE-NIGHTSWIMMING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Moonlit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Nightswimming",
+   "matched_pointe": "CONTESSA MADEIRA/HARBOR",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429321267",
+   "mfr_sku": "JD-BRYCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bryce",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$2.05",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455765043",
+   "mfr_sku": "JD-BOLIVAR-FROMAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Ricotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Fromage",
+   "matched_pointe": "NUVTEX CROCO/WHITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568749107",
+   "mfr_sku": "JD-PLUTARCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Clementine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Plutarch",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571894835",
+   "mfr_sku": "JD-RAMONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Clementine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ramona +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wanderlust",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583560243",
+   "mfr_sku": "JD-GRANT-UNDERWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696730163",
+   "mfr_sku": "JD-ALEXEY-CASPIANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Laguna Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696861235",
+   "mfr_sku": "JD-ALEXEY-ICE-AZURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Seaspray Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696795699",
+   "mfr_sku": "JD-ALEXEY-CITRON-SPLASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Shandy Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696664627",
+   "mfr_sku": "JD-ALEXEY-AUTUMN-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut - Tangerine Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562293811",
+   "mfr_sku": "JD-NEWTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Newton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576547891",
+   "mfr_sku": "JD-RUSSELL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coconut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Russell",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$2.45",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297728051",
+   "mfr_sku": "JD-BOGART",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lizard Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583691315",
+   "mfr_sku": "JD-STATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Oasis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Station",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579365939",
+   "mfr_sku": "JD-SHANDYCHENILLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810556657715",
+   "mfr_sku": "JD-MANZANERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Clementine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manzanera",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442625075",
+   "mfr_sku": "JD-ESCALANTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Escalante *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704365107",
+   "mfr_sku": "JD-ARTEMIS-TAVERNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Terracotta Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566815795",
+   "mfr_sku": "JD-DIEGUITO-ALAMO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Canyon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Alamo",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SADDLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439839795",
+   "mfr_sku": "JD-DIEGUITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dieguito",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.30",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583199795",
+   "mfr_sku": "JD-GRANT-MERLOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Sangria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580152371",
+   "mfr_sku": "JD-FRANCISCAN-KESTREL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Falcon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Kestrel",
+   "matched_pointe": "SKINTEX SF RETRO/GOBI",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577203251",
+   "mfr_sku": "JD-SAMBURU-MELLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoon - Serene  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Samburu *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578186291",
+   "mfr_sku": "JD-FINNEGAN-BLANCHED-ALMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Macaroon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693912115",
+   "mfr_sku": "JD-ALASTAIR-CITY-HALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Capitol Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/City Hall",
+   "matched_pointe": "TEKLOOM REVELRY/PHANTOM",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694370867",
+   "mfr_sku": "JD-ALASTAIR-SHREDDED-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Lagoon Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Shredded Denim",
+   "matched_pointe": "TEKLOOM REVELRY/PIER",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694272563",
+   "mfr_sku": "JD-ALASTAIR-PARTRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Quail Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Partridge",
+   "matched_pointe": "TEKLOOM REVELRY/FIELD",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694436403",
+   "mfr_sku": "JD-ALASTAIR-TROPICAL-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Seagrass Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Tropical Grass",
+   "matched_pointe": "TEKLOOM REVELRY/BALSAMIC",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694174259",
+   "mfr_sku": "JD-ALASTAIR-EARL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Tamarind Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Earl Grey",
+   "matched_pointe": "TEKLOOM REVELRY/FOG",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544664627",
+   "mfr_sku": "JD-JUNO-CHINCHILLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Capybara  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544599091",
+   "mfr_sku": "JD-JUNO-CARNIVAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Festival  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544533555",
+   "mfr_sku": "JD-JUNO-ACADEMY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572124211",
+   "mfr_sku": "JD-ENO-VIRGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Maiden  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571993139",
+   "mfr_sku": "JD-ENO-ALTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Melody  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544697395",
+   "mfr_sku": "JD-JUNO-HAYSTACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Raffia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544566323",
+   "mfr_sku": "JD-JUNO-ALPINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Summit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544730163",
+   "mfr_sku": "JD-JUNO-PEWTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aloha - Tin  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Juno",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447343667",
+   "mfr_sku": "JD-BASQUETTA-TANNERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567864371",
+   "mfr_sku": "JD-DIONYSUS-HESSIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Burlap  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567962675",
+   "mfr_sku": "JD-DIONYSUS-MELODY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Harmonics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567929907",
+   "mfr_sku": "JD-DIONYSUS-MAGICIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Illusion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568028211",
+   "mfr_sku": "JD-DIONYSUS-PARAKEET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Macaw  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568060979",
+   "mfr_sku": "JD-DIONYSUS-SEDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Sawgrass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567831603",
+   "mfr_sku": "JD-DIONYSUS-ARMADILLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Tatu  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567995443",
+   "mfr_sku": "JD-DIONYSUS-PANORAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar - Vista  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440200243",
+   "mfr_sku": "JD-DIONYSUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nectar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dionysus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810549612595",
+   "mfr_sku": "JD-CARA-MAKO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Barracuda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550136883",
+   "mfr_sku": "JD-CARA-MONTPELIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Botanical  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550693939",
+   "mfr_sku": "JD-CARA-ROSE-GARDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Bougainvillea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551152691",
+   "mfr_sku": "JD-CARA-SOUTHAMPTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Harbor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810549383219",
+   "mfr_sku": "JD-CARA-LINDOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Truffle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429878323",
+   "mfr_sku": "JD-CARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776941506611",
+   "mfr_sku": "JD-006",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Earthen Chromatic Weave  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776939442227",
+   "mfr_sku": "JD-002",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Translucent Spectrum Reverie  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568683571",
+   "mfr_sku": "JD-DOLOMIEU-TESORO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Galleon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Tesoro",
+   "matched_pointe": "GALLERIA SF TRESOR/SUNSET",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544468019",
+   "mfr_sku": "JD-JILLETTE-OYSTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ananas - Bivalve  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jillette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544402483",
+   "mfr_sku": "JD-JILLETTE-HUDSON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ananas - Estuary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jillette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544435251",
+   "mfr_sku": "JD-JILLETTE-MUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ananas - Inspiration  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jillette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544369715",
+   "mfr_sku": "JD-JILLETTE-GARDENIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ananas - Tiare  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jillette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704758323",
+   "mfr_sku": "JD-ASHANTI-CAVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Grotto Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704692787",
+   "mfr_sku": "JD-ASHANTI-BOBCAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Ocelot Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705577523",
+   "mfr_sku": "JD-ASHANTI-SPRITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Orchid Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705020467",
+   "mfr_sku": "JD-ASHANTI-HIBISCUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Rosella Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543058995",
+   "mfr_sku": "JD-BRISTOL-HARVEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Ambarella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542993459",
+   "mfr_sku": "JD-BRISTOL-GRAPPA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Anise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543616051",
+   "mfr_sku": "JD-BRISTOL-WHIMSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Breezy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543517747",
+   "mfr_sku": "JD-BRISTOL-VINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Creeper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543124531",
+   "mfr_sku": "JD-BRISTOL-JAVELIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Dart  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542960691",
+   "mfr_sku": "JD-BRISTOL-GOLD-COIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Doubloon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542829619",
+   "mfr_sku": "JD-BRISTOL-BEE-POLLEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543452211",
+   "mfr_sku": "JD-BRISTOL-VALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Glen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543222835",
+   "mfr_sku": "JD-BRISTOL-PASSION-FRUIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543026227",
+   "mfr_sku": "JD-BRISTOL-GREEN-BEAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Haricot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432729139",
+   "mfr_sku": "JD-ALASTAIR-CITY-HALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Capitol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/City Hall",
+   "matched_pointe": "TEKLOOM REVELRY/PHANTOM",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543419443",
+   "mfr_sku": "JD-BRISTOL-TEAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Kempas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542895155",
+   "mfr_sku": "JD-BRISTOL-CHARCOAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543288371",
+   "mfr_sku": "JD-BRISTOL-SPEARMINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Menthol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543157299",
+   "mfr_sku": "JD-BRISTOL-OTHELLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Moor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543255603",
+   "mfr_sku": "JD-BRISTOL-RED-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Nomad  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542731315",
+   "mfr_sku": "JD-BRISTOL-ANGELICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Nymph  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543550515",
+   "mfr_sku": "JD-BRISTOL-WESTWARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Sundown  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542862387",
+   "mfr_sku": "JD-BRISTOL-BRANFLAKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anchorage - Tapioca  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bristol *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$1.60",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439643187",
+   "mfr_sku": "JD-ARIETTA-INGOT-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pelican - Pewter  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296908851",
+   "mfr_sku": "JD-BODIE-LAKESHORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Beachside Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Lakeshore",
+   "matched_pointe": "NEW WAVE POSH/SKY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296712243",
+   "mfr_sku": "JD-BODIE-DRAFTING-TABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Blueprint Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Drafting Table",
+   "matched_pointe": "NEW WAVE POSH/PEBBLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296581171",
+   "mfr_sku": "JD-BODIE-COGNAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Brandy Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Cognac",
+   "matched_pointe": "NEW WAVE POSH/AMBER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297564211",
+   "mfr_sku": "JD-BODIE-WIRE-MESH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Cyclonefence Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Wire Mesh",
+   "matched_pointe": "NEW WAVE POSH/HAZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297203763",
+   "mfr_sku": "JD-BODIE-POMEGRANATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Guavablood Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Pomegranate",
+   "matched_pointe": "NEW WAVE POSH/RUBY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297302067",
+   "mfr_sku": "JD-BODIE-TATAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Pandanus Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Tatami",
+   "matched_pointe": "NEW WAVE POSH/BARLEY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296450099",
+   "mfr_sku": "JD-BODIE-BLADES-OF-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Savanna Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Blades of Grass",
+   "matched_pointe": "NEW WAVE POSH/PASTURE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296974387",
+   "mfr_sku": "JD-BODIE-MANDOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Seabreeze Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Mandolin",
+   "matched_pointe": "NEW WAVE POSH/BOULEVARD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297662515",
+   "mfr_sku": "JD-BODIE-YOSEMITE-HAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Sierra Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Yosemite Haze",
+   "matched_pointe": "NEW WAVE POSH/TWILIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296679475",
+   "mfr_sku": "JD-BODIE-COPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Copper",
+   "matched_pointe": "NEW WAVE POSH/AZTEC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297039923",
+   "mfr_sku": "JD-BODIE-MISTY-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Misty Mountain",
+   "matched_pointe": "NEW WAVE POSH/FROSTY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453667891",
+   "mfr_sku": "JD-BODIE-MISTY-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Misty Mountain",
+   "matched_pointe": "NEW WAVE POSH/FROSTY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296810547",
+   "mfr_sku": "JD-BODIE-FRENCH-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Walnut Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/French Oak",
+   "matched_pointe": "NEW WAVE POSH/CHOCOLATE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296384563",
+   "mfr_sku": "JD-BODIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bodie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568978483",
+   "mfr_sku": "JD-PORTOFINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Portofino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697451059",
+   "mfr_sku": "JD-AMARA-CURIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Artifact Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697647667",
+   "mfr_sku": "JD-AMARA-MADRIGAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Serenade Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437578803",
+   "mfr_sku": "JD-APHRODITE-MANIFESTATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anemone - Awakening  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702333491",
+   "mfr_sku": "JD-APOLLO-COCOA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunrise - Xocolatl Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704266803",
+   "mfr_sku": "JD-ARTEMIS-SISTINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Fresco Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704135731",
+   "mfr_sku": "JD-ARTEMIS-OLEANDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sunset - Hibiscus Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559246387",
+   "mfr_sku": "JD-CHEVIOT-BEMUSED-BROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Bemused Brown",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/ELK",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559705139",
+   "mfr_sku": "JD-MERINO-FLEECE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Cumulus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559868979",
+   "mfr_sku": "JD-MERINO-MENTHOL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Eucalyptus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559541299",
+   "mfr_sku": "JD-MERINO-BINDI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Garnet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559770675",
+   "mfr_sku": "JD-MERINO-FOG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Haze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559803443",
+   "mfr_sku": "JD-MERINO-GRASSHOPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Katydid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559967283",
+   "mfr_sku": "JD-MERINO-TIMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Redwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559672371",
+   "mfr_sku": "JD-MERINO-EVENING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Twilight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691094067",
+   "mfr_sku": "JD-ABRAXAS-AMAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - River Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691552819",
+   "mfr_sku": "JD-ABRAXAS-PARIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Riviera Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691323443",
+   "mfr_sku": "JD-ABRAXAS-DESERT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Sahara Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575204403",
+   "mfr_sku": "JD-RIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rio",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274593843",
+   "mfr_sku": "JD-ASTRID-ZYDECO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Accordion Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274561075",
+   "mfr_sku": "JD-ASTRID-TITANIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Aerospace Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274495539",
+   "mfr_sku": "JD-ASTRID-SPRING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Bloom Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274430003",
+   "mfr_sku": "JD-ASTRID-SPIRIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Essence Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274069555",
+   "mfr_sku": "JD-ASTRID-DIAMANTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Glittering Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274266163",
+   "mfr_sku": "JD-ASTRID-QUARRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Gravel Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273971251",
+   "mfr_sku": "JD-ASTRID-BADGER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Honeycomb Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274200627",
+   "mfr_sku": "JD-ASTRID-PARAMUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Lagoon Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274167859",
+   "mfr_sku": "JD-ASTRID-MUDPIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Loam Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274036787",
+   "mfr_sku": "JD-ASTRID-BROWN-SUGAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Muscovado Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796274364467",
+   "mfr_sku": "JD-ASTRID-SOLARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Radiant Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796273872947",
+   "mfr_sku": "JD-ASTRID-APPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Crocus - Starfruit Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Astrid +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453471283",
+   "mfr_sku": "JD-BODIE-COGNAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Brandy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Cognac",
+   "matched_pointe": "NEW WAVE POSH/AMBER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453635123",
+   "mfr_sku": "JD-BODIE-MANDOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Seabreeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Mandolin",
+   "matched_pointe": "NEW WAVE POSH/BOULEVARD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453930035",
+   "mfr_sku": "JD-BODIE-YOSEMITE-HAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Sierra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Yosemite Haze",
+   "matched_pointe": "NEW WAVE POSH/TWILIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453569587",
+   "mfr_sku": "JD-BODIE-FRENCH-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Walnut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/French Oak",
+   "matched_pointe": "NEW WAVE POSH/CHOCOLATE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796272496691",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-PRECIPICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Cliffside Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795706069043",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-GERALDINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Hibiscus Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795706134579",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-JAMOCHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Mocha Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796272660531",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-SOUL-SEEKER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Pilgrim Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796272300083",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-PITCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Tar Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705937971",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-CORDELIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Tiare Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795706003507",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-EVERARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Valiant Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701809203",
+   "mfr_sku": "JD-ANTONI-CABARET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Revue Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702071347",
+   "mfr_sku": "JD-ANTONI-VERONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Riviera Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701973043",
+   "mfr_sku": "JD-ANTONI-TARO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Ube Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702005811",
+   "mfr_sku": "JD-ANTONI-TSUNAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Undertow Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426142771",
+   "mfr_sku": "JD-AURELIUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426470451",
+   "mfr_sku": "JD-BASQUETTA-BARRACUDA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Piranha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426437683",
+   "mfr_sku": "JD-BARRYMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576973875",
+   "mfr_sku": "JD-FEDERICO-GLACIAL-GROUNDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Moraine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Glacial Grounds",
+   "matched_pointe": "NEW WAVE ARCADIA/MARBLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540372019",
+   "mfr_sku": "JD-BRADLEY-LAVENDER-MAUVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428862515",
+   "mfr_sku": "JD-BRADLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428534835",
+   "mfr_sku": "JD-BONNEVILLE-KABUKI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Geisha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428731443",
+   "mfr_sku": "JD-BORREGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428993587",
+   "mfr_sku": "JD-BREUER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569273395",
+   "mfr_sku": "JD-DOYLE-OAK-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442395699",
+   "mfr_sku": "JD-AURELIUS-HAYFIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Savanna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442526771",
+   "mfr_sku": "JD-EQUINOX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442428467",
+   "mfr_sku": "JD-AURELIUS-SEMOLINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Durum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442756147",
+   "mfr_sku": "JD-BALBOA-ANDALUSIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Castanet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Andalusian",
+   "matched_pointe": "CONTESSA SIENA/BLUE JAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442821683",
+   "mfr_sku": "JD-BALBOA-ERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Eon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Era",
+   "matched_pointe": "CONTESSA SIENA/IVORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442887219",
+   "mfr_sku": "JD-BALBOA-HERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ancestry  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Heritage",
+   "matched_pointe": "CONTESSA SIENA/CHAMPAGNE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443378739",
+   "mfr_sku": "JD-BALBOA-MINGEI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Craftwork  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Mingei",
+   "matched_pointe": "CONTESSA SIENA/BRICK",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443444275",
+   "mfr_sku": "JD-BALBOA-PLAZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Courtyard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Plaza",
+   "matched_pointe": "CONTESSA SIENA/DOE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443804723",
+   "mfr_sku": "JD-BALBOA-RAILROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ironwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Railroad",
+   "matched_pointe": "CONTESSA SIENA/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443837491",
+   "mfr_sku": "JD-BALBOA-SAVANNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Veldt  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Savanna",
+   "matched_pointe": "CONTESSA SIENA/FLAX",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443903027",
+   "mfr_sku": "JD-BALBOA-TIMKEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Bearing  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Timken",
+   "matched_pointe": "CONTESSA SIENA/RUSTIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443935795",
+   "mfr_sku": "JD-BALBOA-TOLEDO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Damascus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Toledo",
+   "matched_pointe": "CONTESSA SIENA/FUDGE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444296243",
+   "mfr_sku": "JD-BANDOLIER-ELIXIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Nectar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Elixir",
+   "matched_pointe": "SKINTEX SF RHYME/AQUA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444394547",
+   "mfr_sku": "JD-BANDOLIER-MOSSY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Bromeliad  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Mossy",
+   "matched_pointe": "SKINTEX SF RHYME/WILLOW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444460083",
+   "mfr_sku": "JD-BANDOLIER-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Nomad  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Rover",
+   "matched_pointe": "SKINTEX SF RHYME/FIELD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445541427",
+   "mfr_sku": "JD-BARNUM-SCARLOTTI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Opera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445705267",
+   "mfr_sku": "JD-FEDERICO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Federico *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": "$2.15",
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446458931",
+   "mfr_sku": "JD-FINNEGAN-SEASHORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Littoral  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562392115",
+   "mfr_sku": "JD-ODYSSEUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aqua  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Odysseus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449375283",
+   "mfr_sku": "JD-GABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rooftop  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gable",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449866803",
+   "mfr_sku": "JD-BERNARD-HARBINGER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451865651",
+   "mfr_sku": "JD-BEVERLY-CHARMED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Amulet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451931187",
+   "mfr_sku": "JD-BEVERLY-ICE-QUEEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Frost  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456158259",
+   "mfr_sku": "JD-BOLIVAR-WHITE-MARBLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Calcite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/White Marble",
+   "matched_pointe": "NUVTEX CROCO/ERMINE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456813619",
+   "mfr_sku": "JD-HEATHROWE-PUTTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Grout  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Heathrowe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457239603",
+   "mfr_sku": "JD-HEIRLOOM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tiar\u00e9  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Heirloom",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457436211",
+   "mfr_sku": "JD-BOULEVARD-MIAMI-NIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Neon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Miami Night",
+   "matched_pointe": "GALLERIA STITCH/MIDNIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457632819",
+   "mfr_sku": "JD-HELENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmetto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Helena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457763891",
+   "mfr_sku": "JD-HEMINGWAY-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Plume  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457862195",
+   "mfr_sku": "JD-HEMINGWAY-IVORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Motherpearl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539814963",
+   "mfr_sku": "JD-BRADFORD-TENURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Legacy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539651123",
+   "mfr_sku": "JD-BRADFORD-INSPIRED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Vibrant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540273715",
+   "mfr_sku": "JD-BRADLEY-GREEN-OLIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Picholine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540863539",
+   "mfr_sku": "JD-BRAHMS-FORGED-STEEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Ironwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540929075",
+   "mfr_sku": "JD-BRAHMS-LANGOSTINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Shellpink  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542469171",
+   "mfr_sku": "JD-BRIGHTON-IMPRESSION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Canvas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542272563",
+   "mfr_sku": "JD-BRIGHTON-ASPIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Soaring  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553970739",
+   "mfr_sku": "JD-MAKITA-BRANCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cyclone - Liana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Makita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456485939",
+   "mfr_sku": "JD-BONNEVILLE-PATINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Verdigris  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539585587",
+   "mfr_sku": "JD-BRADFORD-EXHIBITION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Showcase  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546663475",
+   "mfr_sku": "JD-CALIFA-LOBO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Howler  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547449907",
+   "mfr_sku": "JD-CALISTA-DALMATIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nymph - Spotted  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Calista",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561048627",
+   "mfr_sku": "JD-COBBLESTONE-COOL-CLOUD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Cumulus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563342387",
+   "mfr_sku": "JD-CRESTA-POTTERS-WHEEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Claypan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564096051",
+   "mfr_sku": "JD-PACIFICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oceania  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pacifica",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564358195",
+   "mfr_sku": "JD-DALTON-BLACK-ELK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Antelope  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565144627",
+   "mfr_sku": "JD-DAYDREAM-GARGOYLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Chimera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565668915",
+   "mfr_sku": "JD-DEBUSSY-IMPRESSIONISM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenade - Palette  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Debussy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565603379",
+   "mfr_sku": "JD-PAXTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marquesas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Paxton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Blackout",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565701683",
+   "mfr_sku": "JD-DEBUSSY-MINOR-KEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenade - Diminish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Debussy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567372851",
+   "mfr_sku": "JD-DIETRICH-DANDY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultana - Dapper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dietrich",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567634995",
+   "mfr_sku": "JD-DIOCLES-FEATHERWEIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Zenith - Lightness  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Diocles",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432761907",
+   "mfr_sku": "JD-ALASTAIR-CORAL-GLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Sunrise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Coral Glow",
+   "matched_pointe": "TEKLOOM REVELRY/PERSIMMON",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432892979",
+   "mfr_sku": "JD-ALASTAIR-EARL-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Earl Grey",
+   "matched_pointe": "TEKLOOM REVELRY/FOG",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571468851",
+   "mfr_sku": "JD-ECLIPSE-PITCH-BLACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570977331",
+   "mfr_sku": "JD-PROVIDENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Eden  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Providence *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432794675",
+   "mfr_sku": "JD-ALASTAIR-DIJON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Turmeric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Dijon",
+   "matched_pointe": "TEKLOOM REVELRY/MARSALA",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572320819",
+   "mfr_sku": "JD-REFUGIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sanctuary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Refugio",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571042867",
+   "mfr_sku": "JD-ECLIPSE-AIOLI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Cashew  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572910643",
+   "mfr_sku": "JD-ERICSON-BLUE-OYSTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Abalone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572779571",
+   "mfr_sku": "JD-EQUINOX-SONIC-BOOM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Thunder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574516275",
+   "mfr_sku": "JD-ESPRIT-GOLDEN-GATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Sunset  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574680115",
+   "mfr_sku": "JD-ESPRIT-SLOW-DANCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Moonlight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575171635",
+   "mfr_sku": "JD-RIALTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Venetian Drapery Sheer  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rialto",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540732467",
+   "mfr_sku": "JD-HOLLIS-BUTTERSCOTCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Caramelo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Hollis/Butterscotch",
+   "matched_pointe": "SKINTEX SF LYCHEE/HONEY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566619187",
+   "mfr_sku": "JD-DENZEL-WHITE-3PASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Denzel +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434465843",
+   "mfr_sku": "JD-AMARA-LABYRINTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Reefmaze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434531379",
+   "mfr_sku": "JD-AMARA-MADRIGAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Serenade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434564147",
+   "mfr_sku": "JD-AMARA-PADLOCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Shackle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576711731",
+   "mfr_sku": "JD-FANDO-TARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577989683",
+   "mfr_sku": "JD-FIJI-BLUE-AGAVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Islandia - Cactus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiji",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 47.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 85.97,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578841651",
+   "mfr_sku": "JD-FLANDERS-FOG-BANK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Overcast  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579562547",
+   "mfr_sku": "JD-FLYNN-WIREWORK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Filigree  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581561395",
+   "mfr_sku": "JD-GENEVIEVE-DESERT-ROSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Sandstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580480051",
+   "mfr_sku": "JD-SILKETTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunrise  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581528627",
+   "mfr_sku": "JD-GENEVIEVE-ARDOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Emberglow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582249523",
+   "mfr_sku": "JD-GEORGETTE-SAND-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Sirocco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585690163",
+   "mfr_sku": "JD-GRIFFIN-TIKI-CHIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Luau  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Tiki Chic",
+   "matched_pointe": "NEW WAVE TRAVERSE/THYME",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585657395",
+   "mfr_sku": "JD-GRIFFIN-THEBES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Pyramid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Thebes",
+   "matched_pointe": "NEW WAVE TRAVERSE/OATMEAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428829747",
+   "mfr_sku": "JD-BRADFORD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429485107",
+   "mfr_sku": "JD-CALIFA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429845555",
+   "mfr_sku": "JD-CANOPY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Umbrella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Canopy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.35",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430042163",
+   "mfr_sku": "JD-ADELAIDE-DRACO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Constellation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430107699",
+   "mfr_sku": "JD-ADELAIDE-KNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Paladin  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433187891",
+   "mfr_sku": "JD-CHAINMAIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chainmail",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$2.45",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433810483",
+   "mfr_sku": "JD-ALEUTIAN-VEIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Gossamer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Veil",
+   "matched_pointe": "SKINTEX SF ASPECT/CLOUD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433744947",
+   "mfr_sku": "JD-ALEUTIAN-TECHNO-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Graphite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Techno Grey",
+   "matched_pointe": "SKINTEX SF ASPECT/POWDER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434596915",
+   "mfr_sku": "JD-COACHELLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Coachella",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439512115",
+   "mfr_sku": "JD-ARIES-RADIATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Glow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435809331",
+   "mfr_sku": "JD-COSTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachfront  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Costa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436300851",
+   "mfr_sku": "JD-CRESSIDA-HERRING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Sardine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436431923",
+   "mfr_sku": "JD-ANTONI-BLACK-AND-TAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Kahlua  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439348275",
+   "mfr_sku": "JD-ARIES-COIN-OP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Arcade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437775411",
+   "mfr_sku": "JD-DANCIA-CEREMONY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Swaying - Ritual  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439151667",
+   "mfr_sku": "JD-DELILAH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Delilah +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440134707",
+   "mfr_sku": "JD-DIETRICH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dietrich",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440560691",
+   "mfr_sku": "JD-ASHANTI-SPRITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440527923",
+   "mfr_sku": "JD-ASHANTI-SOUL-SEEKER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Pilgrim  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441150515",
+   "mfr_sku": "JD-DUVALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444361779",
+   "mfr_sku": "JD-BANDOLIER-HOT-CHOCOLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Hot Chocolate",
+   "matched_pointe": "SKINTEX SF RHYME/MOCHA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445279283",
+   "mfr_sku": "JD-BARNUM-HIGHLANDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Plateau  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446950451",
+   "mfr_sku": "JD-BASQUETTA-BRONCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Mustang  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447605811",
+   "mfr_sku": "JD-FLOURISH-QUARTZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gardens - Crystal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flourish",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447573043",
+   "mfr_sku": "JD-FLOURISH-NUIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gardens - Midnight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flourish",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449014835",
+   "mfr_sku": "JD-BELVEDERE-BACKWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Bayou  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542338099",
+   "mfr_sku": "JD-BRIGHTON-CONDOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Macaw  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542633011",
+   "mfr_sku": "JD-BRIGHTON-THUNDERCLOUD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Cumulus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543714355",
+   "mfr_sku": "JD-JERICHO-ARCADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kaimana - Boardwalk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jericho *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546171955",
+   "mfr_sku": "JD-CALIFA-BONAVENTURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546270259",
+   "mfr_sku": "JD-CALIFA-BURL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Knot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547875891",
+   "mfr_sku": "JD-LIBRETTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ukulele  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Libretto +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548006963",
+   "mfr_sku": "JD-CANOPY-BEACHFRONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Umbrella - Seaside  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Canopy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.35",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553937971",
+   "mfr_sku": "JD-CASSIUS-WICKER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Rattan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548039731",
+   "mfr_sku": "JD-CANOPY-CLOUD-NINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Umbrella - Euphoria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Canopy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.35",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810554921011",
+   "mfr_sku": "JD-MALIBU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Surfrider  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Malibu *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810556985395",
+   "mfr_sku": "JD-MARBELLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Riviera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Marbella",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557411379",
+   "mfr_sku": "JD-CESTINO-GOSSAMER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Organza  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Gossamer",
+   "matched_pointe": "GALLERIA SF NEVIS/LINEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558066739",
+   "mfr_sku": "JD-CESTINO-VOLCANIC-ASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Pumice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Volcanic Ash",
+   "matched_pointe": "GALLERIA SF NEVIS/NORI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558165043",
+   "mfr_sku": "JD-MARICOPA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Saguaro  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Maricopa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560852019",
+   "mfr_sku": "JD-COACHELLA-NIGHTSWIMMING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Moonlit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Nightswimming",
+   "matched_pointe": "GALLERIA KALOONG/BAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561081395",
+   "mfr_sku": "JD-COBBLESTONE-MOROCCO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Casbah  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560983091",
+   "mfr_sku": "JD-COBBLESTONE-CATS-MEOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Purr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564489267",
+   "mfr_sku": "JD-DALTON-SIERRA-SPRUCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563178547",
+   "mfr_sku": "JD-CRESTA-CRASHING-WAVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Tsunami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562457651",
+   "mfr_sku": "JD-COSTA-BEACHWALK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachfront - Strand  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Costa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564456499",
+   "mfr_sku": "JD-DALTON-FERN-GREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564423731",
+   "mfr_sku": "JD-DALTON-DRY-BUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Savanna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564751411",
+   "mfr_sku": "JD-PARKSIDE-GENEVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashore - Azure  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Parkside *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564718643",
+   "mfr_sku": "JD-PARKSIDE-BISTRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashore - Market  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Parkside *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567438387",
+   "mfr_sku": "JD-DIETRICH-GENTEEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultana - Refined  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dietrich",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569830451",
+   "mfr_sku": "JD-DUVALL-STYLIZED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Deco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567405619",
+   "mfr_sku": "JD-DIETRICH-ERSTWHILE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultana - Vintage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dietrich",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567471155",
+   "mfr_sku": "JD-DIETRICH-SMOKESHOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultana - Inferno  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dietrich",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567798835",
+   "mfr_sku": "JD-PISMOTRANSITIONALTHROW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pismo Transitional Throw",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sunset Social",
+   "proposed_cost": 299.0,
+   "tariff_passthrough": null,
+   "proposed_retail": 541.18,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568814643",
+   "mfr_sku": "JD-DOWNTOWN-CASTARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside - Bay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570944563",
+   "mfr_sku": "JD-PROTEGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabed  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574614579",
+   "mfr_sku": "JD-ESPRIT-MONTECITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Cottage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573074483",
+   "mfr_sku": "JD-ERICSON-DARK-HORSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Mangrovemud  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573271091",
+   "mfr_sku": "JD-ERICSON-HILLSIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Escarpment  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573566003",
+   "mfr_sku": "JD-ERICSON-PHANTOM-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Indigo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573369395",
+   "mfr_sku": "JD-ERICSON-IVORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Motherpearl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577072179",
+   "mfr_sku": "JD-FEDERICO-HERBACEOUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Viridescent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Herbaceous",
+   "matched_pointe": "NEW WAVE ARCADIA/GRANITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577104947",
+   "mfr_sku": "JD-FEDERICO-STALLION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Mustang  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Stallion",
+   "matched_pointe": "NEW WAVE ARCADIA/ABYSS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579398707",
+   "mfr_sku": "JD-FLYNN-CHENIN-BLANC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579890227",
+   "mfr_sku": "JD-FRANCISCAN-AQUATIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Marine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Aquatic",
+   "matched_pointe": "SKINTEX SF RETRO/REEF",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580348979",
+   "mfr_sku": "JD-FRANCISCAN-WHEATFIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Pampas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Wheatfield",
+   "matched_pointe": "SKINTEX SF RETRO/HAYSTICK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581823539",
+   "mfr_sku": "JD-SOCRATES-KOALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wisdom - Eucalyptus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Socrates",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581430323",
+   "mfr_sku": "JD-GARBO-EVENING-AIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Glamour - Breeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Garbo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581299251",
+   "mfr_sku": "JD-SLATERSTRIPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ripcurl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Slater Stripe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582183987",
+   "mfr_sku": "JD-GEORGETTE-CLARITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Lucid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582347827",
+   "mfr_sku": "JD-GEORGETTE-TRANQUIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Serene  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582839347",
+   "mfr_sku": "JD-STATIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Zen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Static",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Peak Performance",
+   "proposed_cost": 37.5,
+   "tariff_passthrough": "$1.35",
+   "proposed_retail": 67.87,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569994291",
+   "mfr_sku": "JD-PRESIDIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Citrus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Presidio *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283113523",
+   "mfr_sku": "JD-BANDOLIER-HOT-CHOCOLATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Cacao Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Hot Chocolate",
+   "matched_pointe": "SKINTEX SF RHYME/MOCHA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455502899",
+   "mfr_sku": "JD-BOGART-SUBLIMIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lizard - Divine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542075955",
+   "mfr_sku": "JD-BREUER-MIDNIGHT-RUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana - Chase  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453209139",
+   "mfr_sku": "JD-BIJOU-SHRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Temple  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Shrine",
+   "matched_pointe": "SKINTEX SF POP/BRASS",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540535859",
+   "mfr_sku": "JD-BRADLEY-RED-CURRANT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Acerola  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580316211",
+   "mfr_sku": "JD-FRANCISCAN-SUNGLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mission - Radiant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Franciscan/Sunglow",
+   "matched_pointe": "SKINTEX SF RETRO/CANARY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810584248371",
+   "mfr_sku": "JD-GRIFFIN-DESERT-SPRING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Waterhole  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Desert Spring",
+   "matched_pointe": "NEW WAVE TRAVERSE/OCEAN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545844275",
+   "mfr_sku": "JD-LANDON-MEADOWLANDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Wetlands  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585067571",
+   "mfr_sku": "JD-GRIFFIN-LODGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Cabana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Lodge",
+   "matched_pointe": "NEW WAVE TRAVERSE/MAPLE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432041011",
+   "mfr_sku": "JD-AKIRA-BLUE-WILLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Porcelain  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553774131",
+   "mfr_sku": "JD-CASSIUS-GOLDEN-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Silkroute  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573008947",
+   "mfr_sku": "JD-ERICSON-CONIFER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Banyan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573926451",
+   "mfr_sku": "JD-ERICSON-THORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Cactus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445344819",
+   "mfr_sku": "JD-BARNUM-LIBERTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Breeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286619699",
+   "mfr_sku": "JD-BELVEDERE-COASTLINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Seaboard Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449211443",
+   "mfr_sku": "JD-BELVEDERE-PEBBLESTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Flagstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287438899",
+   "mfr_sku": "JD-BELVEDERE-SOMBRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Shade Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448982067",
+   "mfr_sku": "JD-BELVEDERE-AZORES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Islander  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449145907",
+   "mfr_sku": "JD-BELVEDERE-MOONSHADOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Twilight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449113139",
+   "mfr_sku": "JD-BELVEDERE-MARIGOLD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Ylangylang  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542141491",
+   "mfr_sku": "JD-IMPALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Dolphin  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Impala *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571829299",
+   "mfr_sku": "JD-ELGAR-CARIBBEAN-CAYE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Harmony - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Elgar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571763763",
+   "mfr_sku": "JD-ELGAR-ALBERT-HALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Harmony - Opera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Elgar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571796531",
+   "mfr_sku": "JD-ELGAR-BLACK-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Harmony - Papakolea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Elgar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581954611",
+   "mfr_sku": "JD-GENOVA-CORN-MAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Labyrinth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284293171",
+   "mfr_sku": "JD-BASQUETTA-AMULET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Talisman Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284489779",
+   "mfr_sku": "JD-BASQUETTA-IVORY-LATTICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Trellis Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698204723",
+   "mfr_sku": "JD-AMAZONIA-GRIFFIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tsunami Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Griffin",
+   "matched_pointe": "NEW WAVE MAMBA II/GRANITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698335795",
+   "mfr_sku": "JD-AMAZONIA-IVORIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tusk Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Ivorian",
+   "matched_pointe": "NEW WAVE MAMBA II/MARBLE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294451251",
+   "mfr_sku": "JD-BIANCA-SHOAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Sandbank Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434138163",
+   "mfr_sku": "JD-CHEVIOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cheviot *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$2.70",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574483507",
+   "mfr_sku": "JD-ESPRIT-DAPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Stylish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439872563",
+   "mfr_sku": "JD-ARTEMIS-AZURITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Peacock  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810555707443",
+   "mfr_sku": "JD-MANILOW-BILLIARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manilow *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hides & Textures",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440101939",
+   "mfr_sku": "JD-ARTEMIS-TAVERNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560524339",
+   "mfr_sku": "JD-COACHELLA-ANCIENT-GRAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Quinoa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Ancient Grain",
+   "matched_pointe": "GALLERIA KALOONG/WHEAT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560589875",
+   "mfr_sku": "JD-COACHELLA-BRISKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Smoked  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Brisket",
+   "matched_pointe": "GALLERIA KALOONG/TRUFFLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456256563",
+   "mfr_sku": "JD-BOND-MIDNIGHT-AQUARIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Biolume  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580873267",
+   "mfr_sku": "JD-SISKEL-AMERIGO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Explorer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565767219",
+   "mfr_sku": "JD-DELILAH-AU-LAIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Conleche  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Au Lait",
+   "matched_pointe": "BLACKOUT PURCELL/CHALK",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569109555",
+   "mfr_sku": "JD-DOYLE-BUTTERCREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Frosting  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565799987",
+   "mfr_sku": "JD-DELILAH-BAKED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Baked",
+   "matched_pointe": "BLACKOUT PURCELL/AZTEC",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452062259",
+   "mfr_sku": "JD-BIANCA-BREADFRUIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Ulu  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436071475",
+   "mfr_sku": "JD-ANTIGUA-JABBERWOCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Behemoth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436104243",
+   "mfr_sku": "JD-ANTIGUA-NAVIGATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Cartographer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436137011",
+   "mfr_sku": "JD-ANTIGUA-SHELLSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Coquina  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568650803",
+   "mfr_sku": "JD-DOLOMIEU-SUFFUSION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Diffusion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Suffusion",
+   "matched_pointe": "GALLERIA SF TRESOR/SUNSTONE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435907635",
+   "mfr_sku": "JD-ANTIGUA-BEACHCOMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Drifter  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568552499",
+   "mfr_sku": "JD-DOLOMIEU-MAGNETITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Ironclad  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Magnetite",
+   "matched_pointe": "GALLERIA SF TRESOR/CHARCOAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568290355",
+   "mfr_sku": "JD-DOLOMIEU-CHALKWARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Chalkware",
+   "matched_pointe": "GALLERIA SF TRESOR/GESSO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568224819",
+   "mfr_sku": "JD-DOLOMIEU-AIR-FORCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Skydive  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Air Force",
+   "matched_pointe": "GALLERIA SF TRESOR/ALLOY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568355891",
+   "mfr_sku": "JD-DOLOMIEU-EMBLAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Sunrise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Emblazon",
+   "matched_pointe": "GALLERIA SF TRESOR/AZURE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440658995",
+   "mfr_sku": "JD-DOLOMIEU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dolomieu",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Peak Performance",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": "$1.35",
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703480371",
+   "mfr_sku": "JD-ARISTOTLE-COLONNADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Emerald - Portico Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703545907",
+   "mfr_sku": "JD-ARISTOTLE-WIND-CHIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Emerald - Tinkle Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703382067",
+   "mfr_sku": "JD-ARISTOTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Emerald Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585264179",
+   "mfr_sku": "JD-GRIFFIN-NILE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Nile",
+   "matched_pointe": "NEW WAVE TRAVERSE/CLIPPER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568716339",
+   "mfr_sku": "JD-PLUME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Aukulele  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Plume",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573107251",
+   "mfr_sku": "JD-ERICSON-DIRE-WOLF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Shadowy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564849715",
+   "mfr_sku": "JD-DAUPHINAY-WHITEWASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Coralbleach  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810438037555",
+   "mfr_sku": "JD-DAUPHINAY-MIRAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Fatamorgana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562228275",
+   "mfr_sku": "JD-NESSA-GINGER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Galangal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562031667",
+   "mfr_sku": "JD-NESSA-BUERRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Ghee  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437972019",
+   "mfr_sku": "JD-DAUPHINAY-ICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Glacier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810438201395",
+   "mfr_sku": "JD-DAUPHINAY-SMOKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Haze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dauphinay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561933363",
+   "mfr_sku": "JD-NESSA-BARONESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Heiress  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562064435",
+   "mfr_sku": "JD-NESSA-CHARQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Jerky  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562261043",
+   "mfr_sku": "JD-NESSA-SANDSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Laterite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562162739",
+   "mfr_sku": "JD-NESSA-DECADENT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Lushness  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561835059",
+   "mfr_sku": "JD-NESSA-APPLETINI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Midori  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562195507",
+   "mfr_sku": "JD-NESSA-DEMURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Serene  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561998899",
+   "mfr_sku": "JD-NESSA-BLACKJACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Tar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541879347",
+   "mfr_sku": "JD-ICARUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Icarus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542108723",
+   "mfr_sku": "JD-ICONICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Iconica *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449506355",
+   "mfr_sku": "JD-GENEVIEVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579464243",
+   "mfr_sku": "JD-FLYNN-HARBOR-MIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Spray  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447999027",
+   "mfr_sku": "JD-FLYNN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583887923",
+   "mfr_sku": "JD-GRIFFIN-CITRUS-ZEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Limon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Citrus Zest",
+   "matched_pointe": "NEW WAVE TRAVERSE/EVERGREEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583822387",
+   "mfr_sku": "JD-GRIFFIN-CABERNET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Vintage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Cabernet",
+   "matched_pointe": "NEW WAVE TRAVERSE/BORDEAUX",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561146931",
+   "mfr_sku": "JD-COBBLESTONE-PEARLDROPS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefstone - Scallop  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cobblestone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289929267",
+   "mfr_sku": "JD-BERNARD-WHIRLWIND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Cyclone Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289208371",
+   "mfr_sku": "JD-BERNARD-HARBINGER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Monsoon Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290027571",
+   "mfr_sku": "JD-BERNARD-WHITE-PAMPAS-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Plume Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439675955",
+   "mfr_sku": "JD-ARIETTA-OAK-LAMELLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pelican - Driftwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288782387",
+   "mfr_sku": "JD-BERNARD-BABYS-BREATH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Plumeria Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288684083",
+   "mfr_sku": "JD-BERNARD-AVIATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Skydiver Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796289667123",
+   "mfr_sku": "JD-BERNARD-STORM-SURGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Papaya - Undertow Texture Upholstery  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565996595",
+   "mfr_sku": "JD-DELILAH-SANDSTORM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Harmattan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Sandstorm",
+   "matched_pointe": "BLACKOUT PURCELL/LINEN",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456191027",
+   "mfr_sku": "JD-HARRIET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Paradisea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Harriet",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439774259",
+   "mfr_sku": "JD-ARISTOTLE-COLONNADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Emerald - Portico  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445901875",
+   "mfr_sku": "JD-BARRYMORE-SCEPTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Regalia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284227635",
+   "mfr_sku": "JD-BARRYMORE-REGAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Sovereign Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441052211",
+   "mfr_sku": "JD-ASHTON-SCULPTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Artifact  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440757299",
+   "mfr_sku": "JD-ASHTON-COLOMBO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Cinnamon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440724531",
+   "mfr_sku": "JD-ASHTON-CABAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Desert  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441084979",
+   "mfr_sku": "JD-ASHTON-TINCTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Elixir  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441117747",
+   "mfr_sku": "JD-ASHTON-TOLTEC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Olmec  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440790067",
+   "mfr_sku": "JD-ASHTON-GWEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440822835",
+   "mfr_sku": "JD-ASHTON-HEROD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Tyrant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546434099",
+   "mfr_sku": "JD-CALIFA-GIARDINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457567283",
+   "mfr_sku": "JD-BOULEVARD-TORONTO-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Jay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Toronto Blue",
+   "matched_pointe": "GALLERIA STITCH/RIVIERA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457337907",
+   "mfr_sku": "JD-BOULEVARD-CADET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Midshipman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Cadet",
+   "matched_pointe": "GALLERIA STITCH/ARGENT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457501747",
+   "mfr_sku": "JD-BOULEVARD-POWELL-SMOKEHOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Smokedfish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Powell Smokehouse",
+   "matched_pointe": "GALLERIA STITCH/EVENING",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561736755",
+   "mfr_sku": "JD-CONFLUENCE-PESCARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Azzurro  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Pescara",
+   "matched_pointe": "GALLERIA SF HAMILTON/SOLSTICE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561769523",
+   "mfr_sku": "JD-CONFLUENCE-RIO-CELESTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Celestial  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Rio Celeste",
+   "matched_pointe": "GALLERIA SF HAMILTON/MARINA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561540147",
+   "mfr_sku": "JD-CONFLUENCE-DARLING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Orchidkiss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Darling",
+   "matched_pointe": "GALLERIA SF HAMILTON/PLATINUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541977651",
+   "mfr_sku": "JD-BREUER-CARBON-TEXTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana - Graphite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542010419",
+   "mfr_sku": "JD-BREUER-DEEP-DIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana - Oceantrench  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542043187",
+   "mfr_sku": "JD-BREUER-HEN-OF-THE-WOODS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana - Parasol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541912115",
+   "mfr_sku": "JD-BREUER-BURNT-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Liana - Tangerine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Breuer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444034099",
+   "mfr_sku": "JD-ETRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Exotica  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810554658867",
+   "mfr_sku": "JD-MALBA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Batik  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Malba",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Peak Performance",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": "$1.35",
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572517427",
+   "mfr_sku": "JD-EQUINOX-GOLD-DUST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Auric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572714035",
+   "mfr_sku": "JD-EQUINOX-PISCINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Pool  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290322483",
+   "mfr_sku": "JD-BETTY-DEEP-JUNGLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Amazonia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290879539",
+   "mfr_sku": "JD-BETTY-MUSLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Cambric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290617395",
+   "mfr_sku": "JD-BETTY-LEMON-MERINGUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Citron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291371059",
+   "mfr_sku": "JD-BETTY-SASSY-SALMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290977843",
+   "mfr_sku": "JD-BETTY-OLD-COUNTRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Homestead  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290519091",
+   "mfr_sku": "JD-BETTY-GREEN-WASABI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Horseradish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291076147",
+   "mfr_sku": "JD-BETTY-OPALINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Iridescent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291174451",
+   "mfr_sku": "JD-BETTY-PERIWINKLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Lavender  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290093107",
+   "mfr_sku": "JD-BETTY-AMBROSIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Papaya  Commercial Fabric  Los Angeles Fabrics  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290158643",
+   "mfr_sku": "JD-BETTY-AMERICAN-CHEESE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Pineapple  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291600435",
+   "mfr_sku": "JD-BETTY-VANILLA-ICE-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Sherbet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291698739",
+   "mfr_sku": "JD-BETTY-WHEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Sugarcane  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796290224179",
+   "mfr_sku": "JD-BETTY-CARROT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Tangerine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291797043",
+   "mfr_sku": "JD-BETTY-WIND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Zephyr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428665907",
+   "mfr_sku": "JD-BONNEVILLE-PAPAYA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Mango  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547548211",
+   "mfr_sku": "JD-LEXUS-ALABASTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pacific - Limestone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lexus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Fundamentals",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565406771",
+   "mfr_sku": "JD-DAYDREAM-OWLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Barnowl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565308467",
+   "mfr_sku": "JD-DAYDREAM-NARWHAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Tusk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579791923",
+   "mfr_sku": "JD-FONDA-MOON-ROCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Foundation - Granite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694862387",
+   "mfr_sku": "JD-ALDEN-MARSCAPONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Custard Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694796851",
+   "mfr_sku": "JD-ALDEN-HAZELNUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Macadamia Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695058995",
+   "mfr_sku": "JD-ALDEN-REGINALD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Ornate Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695321139",
+   "mfr_sku": "JD-ALDEN-WINCHESTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Plantation Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695190067",
+   "mfr_sku": "JD-ALDEN-STREAMER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Ribbon Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695255603",
+   "mfr_sku": "JD-ALDEN-SUBLIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Sacred Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576842803",
+   "mfr_sku": "JD-SALOME-FROST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachfront - Icing  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Salome",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576744499",
+   "mfr_sku": "JD-SALOME-ANTIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachfront - Relic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Salome",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576777267",
+   "mfr_sku": "JD-SALOME-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachfront - Vanilla  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Salome",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561310771",
+   "mfr_sku": "JD-NALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Beachside  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nala +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567602227",
+   "mfr_sku": "JD-DIOCLES-CANDLESTICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Zenith - Taper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Diocles",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566324275",
+   "mfr_sku": "JD-DEMETER-CHESTNUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566291507",
+   "mfr_sku": "JD-DEMETER-CASPIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Sturgeon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439741491",
+   "mfr_sku": "JD-DEMETER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296056883",
+   "mfr_sku": "JD-BIJOU-SPEEDBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Catamaran Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Speedboat",
+   "matched_pointe": "SKINTEX SF POP/DEEP SEA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294844467",
+   "mfr_sku": "JD-BIJOU-BRIGHT-SKY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cerulean Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Bright Sky",
+   "matched_pointe": "SKINTEX SF POP/LAPIS BLUE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295401523",
+   "mfr_sku": "JD-BIJOU-MESH-METAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Chainmail Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Mesh Metal",
+   "matched_pointe": "SKINTEX SF POP/MALT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295532595",
+   "mfr_sku": "JD-BIJOU-MILAGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Charm Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Milagro",
+   "matched_pointe": "SKINTEX SF POP/AUBURN",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295860275",
+   "mfr_sku": "JD-BIJOU-SANDCASTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Conch Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Sandcastle",
+   "matched_pointe": "SKINTEX SF POP/IVORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296286259",
+   "mfr_sku": "JD-BIJOU-ZIRCONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cubic Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Zirconia",
+   "matched_pointe": "SKINTEX SF POP/MERCURY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295630899",
+   "mfr_sku": "JD-BIJOU-OBSCURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Murky Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Obscura",
+   "matched_pointe": "SKINTEX SF POP/PEWTER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295696435",
+   "mfr_sku": "JD-BIJOU-PLUM-FAIRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Nymph Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Plum Fairy",
+   "matched_pointe": "SKINTEX SF POP/CONCORD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294778931",
+   "mfr_sku": "JD-BIJOU-BING-CHERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Pomegranate Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Bing Cherry",
+   "matched_pointe": "SKINTEX SF POP/SALSA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294942771",
+   "mfr_sku": "JD-BIJOU-CAVIAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Roe Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Caviar",
+   "matched_pointe": "SKINTEX SF POP/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295794739",
+   "mfr_sku": "JD-BIJOU-RABOSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Rosella Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Raboso",
+   "matched_pointe": "SKINTEX SF POP/GERANIUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296220723",
+   "mfr_sku": "JD-BIJOU-TROPHY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Scallop Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Trophy",
+   "matched_pointe": "SKINTEX SF POP/PENNY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295204915",
+   "mfr_sku": "JD-BIJOU-MARIONETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Shadows Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Marionette",
+   "matched_pointe": "SKINTEX SF POP/APRICOT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796296155187",
+   "mfr_sku": "JD-BIJOU-TEATRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Sunset Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Teatro",
+   "matched_pointe": "SKINTEX SF POP/BRIGHT GOLD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295958579",
+   "mfr_sku": "JD-BIJOU-SHRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Temple Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Shrine",
+   "matched_pointe": "SKINTEX SF POP/BRASS",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295008307",
+   "mfr_sku": "JD-BIJOU-CITRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Topaz Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Citrine",
+   "matched_pointe": "SKINTEX SF POP/MINT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796295303219",
+   "mfr_sku": "JD-BIJOU-MARTINIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini - Volcano Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Martinique",
+   "matched_pointe": "SKINTEX SF POP/BLUE BELL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294615091",
+   "mfr_sku": "JD-BIJOU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Gemini Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bijou *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433417267",
+   "mfr_sku": "JD-ALEUTIAN-ESPRESSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Kona  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Espresso",
+   "matched_pointe": "SKINTEX SF ASPECT/CHARCOAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444656691",
+   "mfr_sku": "JD-FANDO-BLUSTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Hurricane  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571927603",
+   "mfr_sku": "JD-RANCHODELUXE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Jasmine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rancho Deluxe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697385523",
+   "mfr_sku": "JD-ALSACE-FARRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Orchid - Spelt Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alsace +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541125683",
+   "mfr_sku": "JD-HOMER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Homer",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568585267",
+   "mfr_sku": "JD-DOLOMIEU-NOBILITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Regalia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Nobility",
+   "matched_pointe": "GALLERIA SF TRESOR/DIVE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450292787",
+   "mfr_sku": "JD-BETTY-FRESH-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Alabaster  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451144755",
+   "mfr_sku": "JD-BETTY-SASSY-SALMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450751539",
+   "mfr_sku": "JD-BETTY-OPALINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Iridescent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450882611",
+   "mfr_sku": "JD-BETTY-PERIWINKLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Lavender  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426699827",
+   "mfr_sku": "JD-BETTY-AMBROSIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451669043",
+   "mfr_sku": "JD-BETTY-WIND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Zephyr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568388659",
+   "mfr_sku": "JD-DOLOMIEU-FIGURINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Sculpture  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Figurine",
+   "matched_pointe": "GALLERIA SF TRESOR/NIMBUS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795699941427",
+   "mfr_sku": "JD-ANNALISA-BREEZEWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Palmetto - Veranda Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Annalisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436235315",
+   "mfr_sku": "JD-ANTIGUA-TRUFFLE-BUTTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568323123",
+   "mfr_sku": "JD-DOLOMIEU-DRAGONSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Dragonstone",
+   "matched_pointe": "GALLERIA SF TRESOR/SPRUCE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436038707",
+   "mfr_sku": "JD-ANTIGUA-GARRISON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Outpost  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280328243",
+   "mfr_sku": "JD-BAHARA-HAVILAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Porcelain Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280262707",
+   "mfr_sku": "JD-BAHARA-CAMACHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Tobacco Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564554803",
+   "mfr_sku": "JD-DALTON-STONEWARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Pottery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564390963",
+   "mfr_sku": "JD-DALTON-CHANNEL-ISLANDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline - Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430206003",
+   "mfr_sku": "JD-ADELAIDE-SERENE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Tranquil  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573991987",
+   "mfr_sku": "JD-ERICSON-WOODBRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Trestle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449571891",
+   "mfr_sku": "JD-GENOVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578317363",
+   "mfr_sku": "JD-FIRESOFT-WHITE-PFP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ignite - Conch  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795703021619",
+   "mfr_sku": "JD-ARIETTA-ALBA-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Pelican - Guava Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455666739",
+   "mfr_sku": "JD-BOLIVAR-CELADON-GREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Beryl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Celadon Green",
+   "matched_pointe": "NUVTEX CROCO/SPRING",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455797811",
+   "mfr_sku": "JD-BOLIVAR-GATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Cayman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Gator",
+   "matched_pointe": "NUVTEX CROCO/TRUFFLE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455633971",
+   "mfr_sku": "JD-BOLIVAR-BISQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Custard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Bisque",
+   "matched_pointe": "NUVTEX CROCO/COFFEE CREAM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455732275",
+   "mfr_sku": "JD-BOLIVAR-DARK-BREW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Kahlua  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Dark Brew",
+   "matched_pointe": "NUVTEX CROCO/ABYSS",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456125491",
+   "mfr_sku": "JD-BOLIVAR-TROPICAL-TURQUOISE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Tropical Turquoise",
+   "matched_pointe": "NUVTEX CROCO/JUNGLE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455994419",
+   "mfr_sku": "JD-BOLIVAR-SIERRA-HILLS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Overlook  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Sierra Hills",
+   "matched_pointe": "NUVTEX CROCO/MUSHROOM",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455961651",
+   "mfr_sku": "JD-BOLIVAR-SHRIMPBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Shrimpboat",
+   "matched_pointe": "NUVTEX CROCO/LIPSTICK",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455568435",
+   "mfr_sku": "JD-BOLIVAR-ACORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Acorn",
+   "matched_pointe": "NUVTEX CROCO/MAHOGANY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455601203",
+   "mfr_sku": "JD-BOLIVAR-BAJA-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Teal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Baja Blue",
+   "matched_pointe": "NUVTEX CROCO/ROYAL BLUE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455863347",
+   "mfr_sku": "JD-BOLIVAR-PANTHEON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Temple  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Pantheon",
+   "matched_pointe": "NUVTEX CROCO/ASH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455830579",
+   "mfr_sku": "JD-BOLIVAR-MEDITATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Tranquility  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Meditation",
+   "matched_pointe": "NUVTEX CROCO/MUDDY BRONZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455699507",
+   "mfr_sku": "JD-BOLIVAR-CURRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Turmeric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Curry",
+   "matched_pointe": "NUVTEX CROCO/CARAMEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426929203",
+   "mfr_sku": "JD-BOLIVAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bolivar *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579660851",
+   "mfr_sku": "JD-FONDA-DRY-EARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Foundation - Crackedmud  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579726387",
+   "mfr_sku": "JD-FONDA-GRITSTONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Foundation - Granite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579824691",
+   "mfr_sku": "JD-FONDA-SILVER-LEAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Foundation - Platinum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283310131",
+   "mfr_sku": "JD-BARCLAY-FIRE-PIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Guava - Bonfire Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barclay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441379891",
+   "mfr_sku": "JD-ATHENA-GOLD-LEAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Foiling  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283244595",
+   "mfr_sku": "JD-BARCLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Guava Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barclay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441445427",
+   "mfr_sku": "JD-ATHENA-PAVILLION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Gazebo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542698547",
+   "mfr_sku": "JD-INFATUATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Infatuation *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570223667",
+   "mfr_sku": "JD-PRESLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Presley *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544795699",
+   "mfr_sku": "JD-KAA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cocoa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Kaa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583527475",
+   "mfr_sku": "JD-GRANT-TROPICAL-FISH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Angelfish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583494707",
+   "mfr_sku": "JD-GRANT-TIRE-TREAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Asphalt  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583068723",
+   "mfr_sku": "JD-GRANT-FAVA-BEAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Broadbean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583593011",
+   "mfr_sku": "JD-GRANT-URBANE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Cosmopolitan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582904883",
+   "mfr_sku": "JD-GRANT-ANGLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Deepsea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583461939",
+   "mfr_sku": "JD-GRANT-SUNKEN-TREASURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Doubloon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582937651",
+   "mfr_sku": "JD-GRANT-ASHES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Embers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583396403",
+   "mfr_sku": "JD-GRANT-SMELTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Forge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583167027",
+   "mfr_sku": "JD-GRANT-JACKRABBIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Hare  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583330867",
+   "mfr_sku": "JD-GRANT-PURPLE-THUNDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Jacaranda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583429171",
+   "mfr_sku": "JD-GRANT-SPINACH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Kale  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583003187",
+   "mfr_sku": "JD-GRANT-CAFECITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Kona  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434007091",
+   "mfr_sku": "JD-ALEXEY-CASPIANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Laguna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583035955",
+   "mfr_sku": "JD-GRANT-CARVED-PUMPKIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Lantern  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582872115",
+   "mfr_sku": "JD-GRANT-ALPACA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Llama  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583232563",
+   "mfr_sku": "JD-GRANT-NAUTICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Maritime  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583363635",
+   "mfr_sku": "JD-GRANT-SILVER-LAKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Oasis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583625779",
+   "mfr_sku": "JD-GRANT-WHITE-GRANITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Quartz  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434072627",
+   "mfr_sku": "JD-ALEXEY-ICE-AZURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Seaspray  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583101491",
+   "mfr_sku": "JD-GRANT-FIRE-STICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Tinder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277903411",
+   "mfr_sku": "JD-AURA-GRAVITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Abyss Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Gravity",
+   "matched_pointe": "BEYOND SYNERGY/VELLUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279738419",
+   "mfr_sku": "JD-AURA-TOTEM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Animist Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Totem",
+   "matched_pointe": "BEYOND SYNERGY/MAHOGANY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276985907",
+   "mfr_sku": "JD-AURA-ARCADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Boardwalk Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Arcade",
+   "matched_pointe": "BEYOND SYNERGY/PIER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277084211",
+   "mfr_sku": "JD-AURA-CLOUDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Cumuli Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Clouds",
+   "matched_pointe": "BEYOND SYNERGY/NORDIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277313587",
+   "mfr_sku": "JD-AURA-FACADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Exterior Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aura *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277248051",
+   "mfr_sku": "JD-AURA-ETHEREAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Gossamer Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Ethereal",
+   "matched_pointe": "BEYOND SYNERGY/ANISE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277674035",
+   "mfr_sku": "JD-AURA-FOG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Haze Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Fog",
+   "matched_pointe": "BEYOND SYNERGY/DEW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796278165555",
+   "mfr_sku": "JD-AURA-MALACHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jade Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Malachite",
+   "matched_pointe": "BEYOND SYNERGY/SEA GREEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796277149747",
+   "mfr_sku": "JD-AURA-COUNTRY-ROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pathways Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Country Road",
+   "matched_pointe": "BEYOND SYNERGY/MUSHROOM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796279541811",
+   "mfr_sku": "JD-AURA-STILLWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pond Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Stillwater",
+   "matched_pointe": "BEYOND SYNERGY/PACIFIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796278624307",
+   "mfr_sku": "JD-AURA-OZONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Skyblue Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Ozone",
+   "matched_pointe": "BEYOND SYNERGY/STORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276953139",
+   "mfr_sku": "JD-AURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Halcyon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aura *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430140467",
+   "mfr_sku": "JD-ADELAIDE-MIDNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582151219",
+   "mfr_sku": "JD-GEORGETTE-CATHEDRAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Basilica  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573893683",
+   "mfr_sku": "JD-ERICSON-THICKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426863667",
+   "mfr_sku": "JD-BODIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bodie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776942260275",
+   "mfr_sku": "JD-007",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Confetti Light Storm  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575106099",
+   "mfr_sku": "JD-ESTATE-OHEKA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plantation - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696566323",
+   "mfr_sku": "JD-ALEXANDER-AEOLIAN-HARP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - TradeWind Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexander",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693649971",
+   "mfr_sku": "JD-AKIRA-STAGHORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Anemone Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693715507",
+   "mfr_sku": "JD-AKIRA-SURF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Breaker Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693781043",
+   "mfr_sku": "JD-AKIRA-WASABI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Horseradish Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564587571",
+   "mfr_sku": "JD-PALO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kai  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Palo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426830899",
+   "mfr_sku": "JD-BIJOU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bijou *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571436083",
+   "mfr_sku": "JD-ECLIPSE-PEPPERMINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Menthol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543779891",
+   "mfr_sku": "JD-JERICHO-GUNPOWDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kaimana - Ignimbrite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jericho *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548334643",
+   "mfr_sku": "JD-CARA-BEACH-HOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Cabana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439217203",
+   "mfr_sku": "JD-ARIES-ABACUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Tidal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548269107",
+   "mfr_sku": "JD-CARA-AGED-NICKEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Pewter  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542403635",
+   "mfr_sku": "JD-BRIGHTON-FOSSILIZED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Petrified  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281311283",
+   "mfr_sku": "JD-BALBOA-PLAZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Courtyard Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Plaza",
+   "matched_pointe": "CONTESSA SIENA/DOE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281114675",
+   "mfr_sku": "JD-BALBOA-MINGEI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Craftwork Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Mingei",
+   "matched_pointe": "CONTESSA SIENA/BRICK",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573467699",
+   "mfr_sku": "JD-ERICSON-LOAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Silt  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796286095411",
+   "mfr_sku": "JD-BELMONT-RUSHMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monument Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Rushmore",
+   "matched_pointe": "SKINTEX SF SERENITY/CAMEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563211315",
+   "mfr_sku": "JD-CRESTA-CRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Aegean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577334323",
+   "mfr_sku": "JD-FELISA-COAL-MINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Shaft  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577596467",
+   "mfr_sku": "JD-FELISA-INDIAN-CLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445738035",
+   "mfr_sku": "JD-FELISA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795694108723",
+   "mfr_sku": "JD-ALASTAIR-DIJON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Coral - Turmeric Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Dijon",
+   "matched_pointe": "TEKLOOM REVELRY/MARSALA",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297367603",
+   "mfr_sku": "JD-BODIE-TOASTED-OATS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Cove - Granola Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Toasted Oats",
+   "matched_pointe": "NEW WAVE POSH/CANYON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452357171",
+   "mfr_sku": "JD-BIANCA-PINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Ananas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795693584435",
+   "mfr_sku": "JD-AKIRA-FIRE-CORAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Ember Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291272755",
+   "mfr_sku": "JD-BETTY-PERNOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Absinthe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450260019",
+   "mfr_sku": "JD-BETTY-DEEP-JUNGLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Amazonia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276133939",
+   "mfr_sku": "JD-ATHENA-FAIRYTALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Enchanted Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276396083",
+   "mfr_sku": "JD-ATHENA-KETCHIKAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Fjord Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796276297779",
+   "mfr_sku": "JD-ATHENA-GOLD-LEAF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Iguana - Foiling Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795706200115",
+   "mfr_sku": "JD-ASHANTI-WITH-CRYPTON-PADDINGTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "CryptonMacaw - Duffle Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti With Crypton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561441843",
+   "mfr_sku": "JD-CONFLUENCE-ASHBURTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Pumice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Ashburton",
+   "matched_pointe": "GALLERIA SF HAMILTON/TRAIL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561474611",
+   "mfr_sku": "JD-CONFLUENCE-BAMBOO-BARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Rattan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Bamboo Bark",
+   "matched_pointe": "GALLERIA SF HAMILTON/TOFFEE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561572915",
+   "mfr_sku": "JD-CONFLUENCE-GLISTENING-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Silica  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Glistening Sand",
+   "matched_pointe": "GALLERIA SF HAMILTON/BALSA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561703987",
+   "mfr_sku": "JD-CONFLUENCE-MOSELLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Estuary - Starfruit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Confluence/Moselle",
+   "matched_pointe": "GALLERIA SF HAMILTON/PACIFIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562687027",
+   "mfr_sku": "JD-CRAWFORD-OUTPOUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Downpour  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582085683",
+   "mfr_sku": "JD-SOHO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Boardwalk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Soho",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701645363",
+   "mfr_sku": "JD-ANTIGUA-TRUFFLE-BUTTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Macadamia Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701317683",
+   "mfr_sku": "JD-ANTIGUA-GARRISON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Atoll - Outpost Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580414515",
+   "mfr_sku": "JD-FREYA-COSMOLOGY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Goddess - Universe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Freya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448850995",
+   "mfr_sku": "JD-FREYA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Goddess  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Freya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7790937342003",
+   "mfr_sku": "JD-BAHARA-MARTINA",
+   "dw_sku": null,
+   "vendor": "Architectural Wallcoverings",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Bahara Martina  Architectural Wallcoverings Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285145139",
+   "mfr_sku": "JD-BELLAMY-BIRCH-BARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Cinnamon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285407283",
+   "mfr_sku": "JD-BELLAMY-PUMPKIN-PIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Custard Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285210675",
+   "mfr_sku": "JD-BELLAMY-BORDELLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Hibiscus Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285243443",
+   "mfr_sku": "JD-BELLAMY-CANDLEWAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander - Honeycomb Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796285112371",
+   "mfr_sku": "JD-BELLAMY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bellamy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577727539",
+   "mfr_sku": "JD-SANJUAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Islander  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "San Juan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "True West",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695648819",
+   "mfr_sku": "JD-ALEUTIAN-BURLAP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Hessian Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Burlap",
+   "matched_pointe": "SKINTEX SF ASPECT/SAND",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695714355",
+   "mfr_sku": "JD-ALEUTIAN-DARK-DUCK-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - LagoonDeep Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Dark Duck Blue",
+   "matched_pointe": "SKINTEX SF ASPECT/TEAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696173107",
+   "mfr_sku": "JD-ALEUTIAN-RESTFUL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Seashell Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Restful White",
+   "matched_pointe": "SKINTEX SF ASPECT/SNOW",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695583283",
+   "mfr_sku": "JD-ALEUTIAN-AUSTERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Spartan Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Austere",
+   "matched_pointe": "SKINTEX SF ASPECT/CLIPPER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795696042035",
+   "mfr_sku": "JD-ALEUTIAN-LEAPFROG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Treefrog Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Leapfrog",
+   "matched_pointe": "SKINTEX SF ASPECT/GRASS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795695910963",
+   "mfr_sku": "JD-ALEUTIAN-GREEN-EARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Reef - Verdant Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Green Earth",
+   "matched_pointe": "SKINTEX SF ASPECT/GULL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455404595",
+   "mfr_sku": "JD-BOGART-MILLENIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lizard - Eon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426896435",
+   "mfr_sku": "JD-BOGART",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lizard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548695091",
+   "mfr_sku": "JD-CARA-KRAKEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Leviathan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559017011",
+   "mfr_sku": "JD-CHECKERED-PROFESSOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Scholar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548498483",
+   "mfr_sku": "JD-CARA-FRAPPUCCINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Mocha  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566750259",
+   "mfr_sku": "JD-PHILIPPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Bougainvillea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Philippe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569863219",
+   "mfr_sku": "JD-POTHOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pothos",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 55.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 100.45,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432565299",
+   "mfr_sku": "JD-CECILY-ESPRESSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coralia - Kona  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cecily",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550825011",
+   "mfr_sku": "JD-CARA-SHALE-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Slate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548301875",
+   "mfr_sku": "JD-CARA-AQUIFER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Spring  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440495155",
+   "mfr_sku": "JD-ASHANTI-PRECIPICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Cliffside  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434433075",
+   "mfr_sku": "JD-AMARA-CURIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mahogany - Artifact  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Amara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552889395",
+   "mfr_sku": "JD-CARVILLE-MATAHARI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Sunrise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436464691",
+   "mfr_sku": "JD-ANTONI-CABARET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Revue  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447015987",
+   "mfr_sku": "JD-BASQUETTA-IVORY-LATTICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Trellis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558492723",
+   "mfr_sku": "JD-CHAINMAIL-WHISTLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Koel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Whistler",
+   "matched_pointe": "TEKLOOM WICKER/CIRRUS",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577694771",
+   "mfr_sku": "JD-FELISA-OREGON-TRAIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Wilderness  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565832755",
+   "mfr_sku": "JD-DELILAH-CATACOMBS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Crypt  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Catacombs",
+   "matched_pointe": "BLACKOUT PURCELL/DUSK",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548170803",
+   "mfr_sku": "JD-LOMBARDO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Outrigger  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lombardo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564292659",
+   "mfr_sku": "JD-PADOVA-HAZELNUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430631987",
+   "mfr_sku": "JD-AESOP-SATYR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Faun  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430500915",
+   "mfr_sku": "JD-AESOP-HELIOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Solstice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449080371",
+   "mfr_sku": "JD-BELVEDERE-IBIZA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Cove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540404787",
+   "mfr_sku": "JD-BRADLEY-MALAGA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Sangria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575040563",
+   "mfr_sku": "JD-ESTATE-MT-VERNON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Colonial  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426765363",
+   "mfr_sku": "JD-BETTY-CARROT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Tangerine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553872435",
+   "mfr_sku": "JD-CASSIUS-WAVERUNNER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Skimmer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579038259",
+   "mfr_sku": "JD-FLANDERS-PUMPKIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Butternut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579234867",
+   "mfr_sku": "JD-FLANDERS-TRUFFLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578939955",
+   "mfr_sku": "JD-FLANDERS-NAUTILUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Chambered  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578743347",
+   "mfr_sku": "JD-FLANDERS-BUCKEYE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Conker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579202099",
+   "mfr_sku": "JD-FLANDERS-TIERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Erosion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579005491",
+   "mfr_sku": "JD-FLANDERS-PIEDMONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Foothills  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579267635",
+   "mfr_sku": "JD-FLANDERS-TUNDRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Heathland  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579103795",
+   "mfr_sku": "JD-FLANDERS-SEAHORSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Hippocampus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578677811",
+   "mfr_sku": "JD-FLANDERS-BAYWATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Lifeguard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579169331",
+   "mfr_sku": "JD-FLANDERS-SUBMARINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Nautilus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578907187",
+   "mfr_sku": "JD-FLANDERS-HIGH-PLAINS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Pampas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578972723",
+   "mfr_sku": "JD-FLANDERS-NOVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Supernova  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429255731",
+   "mfr_sku": "JD-BROADCAST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Broadcast",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Peak Performance",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776940326963",
+   "mfr_sku": "JD-004",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rainbow Cathedral Light  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449276979",
+   "mfr_sku": "JD-BELVEDERE-TREASURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Doubloon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448949299",
+   "mfr_sku": "JD-BELVEDERE-ARROWHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580742195",
+   "mfr_sku": "JD-GABLE-COLUMBIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rooftop - Caribbean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gable",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559213619",
+   "mfr_sku": "JD-CHECKERED-SOUTH-SEAS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Oceania  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434400307",
+   "mfr_sku": "JD-CICERO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451832883",
+   "mfr_sku": "JD-BEVERLY-BEAUTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Exotica  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448162867",
+   "mfr_sku": "JD-BELMONT-BROWN-TAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Bitumen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Brown Tar",
+   "matched_pointe": "SKINTEX SF SERENITY/COCOA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448621619",
+   "mfr_sku": "JD-BELMONT-SATCHEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Caramel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Satchel",
+   "matched_pointe": "SKINTEX SF SERENITY/ETHIOPIA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448687155",
+   "mfr_sku": "JD-BELMONT-TAN-TEXTURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Cinnamon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Tan Texture",
+   "matched_pointe": "SKINTEX SF SERENITY/RYE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448523315",
+   "mfr_sku": "JD-BELMONT-OVERALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Denim  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Overall",
+   "matched_pointe": "SKINTEX SF SERENITY/LAGOON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448359475",
+   "mfr_sku": "JD-BELMONT-FROST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Icing  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Frost",
+   "matched_pointe": "SKINTEX SF SERENITY/HAZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448719923",
+   "mfr_sku": "JD-BELMONT-THUNDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Thunder",
+   "matched_pointe": "SKINTEX SF SERENITY/MIDNIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448588851",
+   "mfr_sku": "JD-BELMONT-RUSHMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Monument  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Rushmore",
+   "matched_pointe": "SKINTEX SF SERENITY/CAMEL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448130099",
+   "mfr_sku": "JD-BELMONT-BROWN-SIENNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Ochre  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Brown Sienna",
+   "matched_pointe": "SKINTEX SF SERENITY/ARROYO",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448228403",
+   "mfr_sku": "JD-BELMONT-CARAMEL-CORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Popcorn  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Caramel Corn",
+   "matched_pointe": "SKINTEX SF SERENITY/MOREL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448261171",
+   "mfr_sku": "JD-BELMONT-CROWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Royalty  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Crown",
+   "matched_pointe": "SKINTEX SF SERENITY/SORBET",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448064563",
+   "mfr_sku": "JD-BELMONT-BLUE-THRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Songbird  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Blue Thrush",
+   "matched_pointe": "SKINTEX SF SERENITY/IRIS",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448654387",
+   "mfr_sku": "JD-BELMONT-SWEET-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Tangerine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Sweet Orange",
+   "matched_pointe": "SKINTEX SF SERENITY/SUNBURST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448490547",
+   "mfr_sku": "JD-BELMONT-HORSE-FEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Trot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Horse Feather",
+   "matched_pointe": "SKINTEX SF SERENITY/IRISH MIST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426634291",
+   "mfr_sku": "JD-BELMONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belmont *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Le Cirque",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697287219",
+   "mfr_sku": "JD-ALLEGRO-VIOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Laguna - Fiddle Decorative Sheers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575728691",
+   "mfr_sku": "JD-FAIRFAX-EXTRA-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Brilliant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Extra White",
+   "matched_pointe": "NEW WAVE STORM/ICECAP",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575761459",
+   "mfr_sku": "JD-FAIRFAX-FREEWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Highway  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Freeway",
+   "matched_pointe": "NEW WAVE STORM/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575859763",
+   "mfr_sku": "JD-FAIRFAX-PIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Jetty  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Pier",
+   "matched_pointe": "NEW WAVE STORM/AQUA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576023603",
+   "mfr_sku": "JD-FAIRFAX-TEAL-TROPIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Teal Tropique",
+   "matched_pointe": "NEW WAVE STORM/SEAGREEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575597619",
+   "mfr_sku": "JD-FAIRFAX-BRAQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Mosaic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairfax/Braque",
+   "matched_pointe": "NEW WAVE STORM/SLATE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575826995",
+   "mfr_sku": "JD-FAIRFAX-HEARTHROB",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezeway - Passionfruit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairfax *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilshire",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580709427",
+   "mfr_sku": "JD-SIMPLICITYROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breezy  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446032947",
+   "mfr_sku": "JD-FINNEGAN-FLAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Linen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446000179",
+   "mfr_sku": "JD-FINNEGAN-CHUTNEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Mango  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446753843",
+   "mfr_sku": "JD-FINNEGAN-VIXEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Siren  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446164019",
+   "mfr_sku": "JD-FINNEGAN-LAKESIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoonia - Watersedge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Finnegan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297990195",
+   "mfr_sku": "JD-BOGART-STATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lizard - Dock Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297924659",
+   "mfr_sku": "JD-BOGART-MILLENIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lizard - Eon Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796297793587",
+   "mfr_sku": "JD-BOGART-CANTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Lizard - Sonnet Drapery Fabric  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450620467",
+   "mfr_sku": "JD-BETTY-OLD-COUNTRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Homestead  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453602355",
+   "mfr_sku": "JD-BODIE-LAKESHORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Beachside  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Lakeshore",
+   "matched_pointe": "NEW WAVE POSH/SKY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453536819",
+   "mfr_sku": "JD-BODIE-DRAFTING-TABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Blueprint  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Drafting Table",
+   "matched_pointe": "NEW WAVE POSH/PEBBLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705348147",
+   "mfr_sku": "JD-ASHANTI-PRECIPICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Cliffside Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705086003",
+   "mfr_sku": "JD-ASHANTI-PALOMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Dove Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705675827",
+   "mfr_sku": "JD-ASHANTI-TERRAZZO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Pebblestone Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705479219",
+   "mfr_sku": "JD-ASHANTI-SOUL-SEEKER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Pilgrim Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795705217075",
+   "mfr_sku": "JD-ASHANTI-PERSIMMON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Tamarind Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795704496179",
+   "mfr_sku": "JD-ASHANTI-AIR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Macaw - Zephyr Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578612275",
+   "mfr_sku": "JD-SERAPHINA-PAPERBAG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Burlap  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seraphina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453897267",
+   "mfr_sku": "JD-BODIE-WIRE-MESH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Cyclonefence  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Wire Mesh",
+   "matched_pointe": "NEW WAVE POSH/HAZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578546739",
+   "mfr_sku": "JD-SERAPHINA-JASMINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seraphina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578481203",
+   "mfr_sku": "JD-SERAPHINA-BUTTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Ghee  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seraphina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453831731",
+   "mfr_sku": "JD-BODIE-TOASTED-OATS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Granola  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Toasted Oats",
+   "matched_pointe": "NEW WAVE POSH/CANYON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795691159603",
+   "mfr_sku": "JD-ABRAXAS-AVOCADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Guacamole Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453766195",
+   "mfr_sku": "JD-BODIE-POMEGRANATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Guavablood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Pomegranate",
+   "matched_pointe": "NEW WAVE POSH/RUBY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453864499",
+   "mfr_sku": "JD-BODIE-VAGABOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Nomad  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Vagabond",
+   "matched_pointe": "NEW WAVE POSH/LATTE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453798963",
+   "mfr_sku": "JD-BODIE-TATAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Pandanus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Tatami",
+   "matched_pointe": "NEW WAVE POSH/BARLEY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453405747",
+   "mfr_sku": "JD-BODIE-BLADES-OF-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Savanna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Blades of Grass",
+   "matched_pointe": "NEW WAVE POSH/PASTURE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701940275",
+   "mfr_sku": "JD-ANTONI-SAGRADA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Cathedral Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701710899",
+   "mfr_sku": "JD-ANTONI-BLACK-AND-TAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Kahlua Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795701874739",
+   "mfr_sku": "JD-ANTONI-MARINARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Marlin - Pimento Pattern Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453733427",
+   "mfr_sku": "JD-BODIE-OBSCURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Shaded  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Obscure",
+   "matched_pointe": "NEW WAVE POSH/MOCHA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453504051",
+   "mfr_sku": "JD-BODIE-COPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bodie/Copper",
+   "matched_pointe": "NEW WAVE POSH/AZTEC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562129971",
+   "mfr_sku": "JD-NESSA-CURRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Azure - Turmeric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Nessa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nessa Chenille",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284457011",
+   "mfr_sku": "JD-BASQUETTA-DIABLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Hellfire Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284686387",
+   "mfr_sku": "JD-BASQUETTA-NOCHE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Indigo Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284882995",
+   "mfr_sku": "JD-BASQUETTA-TANNERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Mahogany Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284784691",
+   "mfr_sku": "JD-BASQUETTA-PRETZEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Saltflat Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796284653619",
+   "mfr_sku": "JD-BASQUETTA-MERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Vintage Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795697975347",
+   "mfr_sku": "JD-AMAZONIA-DRAGONS-SCALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Iguana Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Dragon's Scale",
+   "matched_pointe": "NEW WAVE MAMBA II/WILLOW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795698270259",
+   "mfr_sku": "JD-AMAZONIA-INDULGENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Nectar Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Indulgence",
+   "matched_pointe": "NEW WAVE MAMBA II/CANYON",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796293632051",
+   "mfr_sku": "JD-BIANCA-HOCUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Abracadabra Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796294352947",
+   "mfr_sku": "JD-BIANCA-SCHOONER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Brigantine Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292911155",
+   "mfr_sku": "JD-BIANCA-CAPYBARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Marshland Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796292812851",
+   "mfr_sku": "JD-BIANCA-CAPE-COD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Seaboard Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576646195",
+   "mfr_sku": "JD-FANDO-SYLVAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Sylvan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444787763",
+   "mfr_sku": "JD-FANDO-OSCURO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Umbra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444853299",
+   "mfr_sku": "JD-FANDO-RATTAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Wicker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581037107",
+   "mfr_sku": "JD-SISKEL-DRAMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Melodrama  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581004339",
+   "mfr_sku": "JD-SISKEL-CORK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Raffia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456354867",
+   "mfr_sku": "JD-BOND-WINTER-PARK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Resort  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426994739",
+   "mfr_sku": "JD-BOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540306483",
+   "mfr_sku": "JD-BRADLEY-HIGHTOWER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Citadel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541584435",
+   "mfr_sku": "JD-BRANNAN-INDIGO-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Indigo Blue",
+   "matched_pointe": "GALLERIA CENTRAL/BLUEBERRY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541649971",
+   "mfr_sku": "JD-BRANNAN-NATURAL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Alabaster  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Natural White",
+   "matched_pointe": "GALLERIA CENTRAL/AVALANCHE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541551667",
+   "mfr_sku": "JD-BRANNAN-GOLDEN-FLEECE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Angora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Golden Fleece",
+   "matched_pointe": "GALLERIA CENTRAL/MILKWEED",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541322291",
+   "mfr_sku": "JD-BRANNAN-CAPE-VERDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Archipelago  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Cape Verde",
+   "matched_pointe": "GALLERIA CENTRAL/FOREST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541223987",
+   "mfr_sku": "JD-BRANNAN-BRONZE-RELIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Artifact  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Bronze Relic",
+   "matched_pointe": "GALLERIA CENTRAL/CASHEW",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541191219",
+   "mfr_sku": "JD-BRANNAN-BOONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Boone",
+   "matched_pointe": "GALLERIA CENTRAL/CHESTNUT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541781043",
+   "mfr_sku": "JD-BRANNAN-SIMPLY-SIENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Earthen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Simply Siena",
+   "matched_pointe": "GALLERIA CENTRAL/CINNAMON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541518899",
+   "mfr_sku": "JD-BRANNAN-FAIRFAX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Gentry  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Fairfax",
+   "matched_pointe": "GALLERIA CENTRAL/SHELL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541158451",
+   "mfr_sku": "JD-BRANNAN-BODEGA-BAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Harbor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Bodega Bay",
+   "matched_pointe": "GALLERIA CENTRAL/RAINSTORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447376435",
+   "mfr_sku": "JD-BASTION-CAMELOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Kingdom  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541486131",
+   "mfr_sku": "JD-BRANNAN-ESTATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Estate",
+   "matched_pointe": "GALLERIA CENTRAL/SMOKE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541715507",
+   "mfr_sku": "JD-BRANNAN-SHERIFF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Posse  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Sheriff",
+   "matched_pointe": "GALLERIA CENTRAL/ADOBE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447409203",
+   "mfr_sku": "JD-BASTION-GOOSEFOOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Quinoa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447474739",
+   "mfr_sku": "JD-BASTION-SCOUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Ranger  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541355059",
+   "mfr_sku": "JD-BRANNAN-CASCABEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Rattlesnake  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Cascabel",
+   "matched_pointe": "GALLERIA CENTRAL/CHILI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447441971",
+   "mfr_sku": "JD-BASTION-MOUNTAINTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Summit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541420595",
+   "mfr_sku": "JD-BRANNAN-DARK-SHADOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Twilighthaze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Dark Shadow",
+   "matched_pointe": "GALLERIA CENTRAL/ONYX",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426535987",
+   "mfr_sku": "JD-BASTION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bastion",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540634163",
+   "mfr_sku": "JD-BRADLEY-SWELL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Crest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539978803",
+   "mfr_sku": "JD-BRADLEY-BLUE-SPRUCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Evergreen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540470323",
+   "mfr_sku": "JD-BRADLEY-OXFORD-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Lapiz  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540339251",
+   "mfr_sku": "JD-BRADLEY-KNIGHTSBRIDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Manor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540437555",
+   "mfr_sku": "JD-BRADLEY-MATTE-BLACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540175411",
+   "mfr_sku": "JD-BRADLEY-FALUN-RED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Oxblood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547777587",
+   "mfr_sku": "JD-CALLIE-HARTFORD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Banyan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Callie +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547744819",
+   "mfr_sku": "JD-CALLIE-GURU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Mystic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Guru",
+   "matched_pointe": "BLACKOUT VIVALDI/CHABLIS",
+   "source_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547843123",
+   "mfr_sku": "JD-CALLIE-SISTER-MIDNIGHT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Obscurity  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Sister Midnight",
+   "matched_pointe": "BLACKOUT VIVALDI/INK",
+   "source_status": "DISCONTINUED",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547580979",
+   "mfr_sku": "JD-CALLIE-BELMONT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Palmetto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Belmont",
+   "matched_pointe": "BLACKOUT VIVALDI/LATTE",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547679283",
+   "mfr_sku": "JD-CALLIE-COOL-MERCURY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Quicksilver  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Cool Mercury",
+   "matched_pointe": "BLACKOUT VIVALDI/HELIUM",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547810355",
+   "mfr_sku": "JD-CALLIE-MELLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla - Serene  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Callie/Mellow",
+   "matched_pointe": "BLACKOUT VIVALDI/MOONBEAM",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429583411",
+   "mfr_sku": "JD-CALLIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calla  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Callie +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560032819",
+   "mfr_sku": "JD-CHOPIN-ANGUILLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Cay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560229427",
+   "mfr_sku": "JD-CHOPIN-STORMY-SEAS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Kraken  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560163891",
+   "mfr_sku": "JD-CHOPIN-GRAND-DUKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Regal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560098355",
+   "mfr_sku": "JD-CHOPIN-COASTAL-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Seagrass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560196659",
+   "mfr_sku": "JD-CHOPIN-MUSIQUE-CONCRETE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Soundscape  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560131123",
+   "mfr_sku": "JD-CHOPIN-CONCERTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso - Tradewinds  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434170931",
+   "mfr_sku": "JD-CHOPIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Calypso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chopin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572353587",
+   "mfr_sku": "JD-REGAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cane  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Regan",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574024755",
+   "mfr_sku": "JD-REMO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canoe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Remo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544861235",
+   "mfr_sku": "JD-BRYCE-CHEROKEE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Canoe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Cherokee",
+   "matched_pointe": "CONTESSA MADEIRA/SUMATRA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544894003",
+   "mfr_sku": "JD-BRYCE-COPACETIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Carefree  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Copacetic",
+   "matched_pointe": "CONTESSA MADEIRA/ALLOY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545057843",
+   "mfr_sku": "JD-BRYCE-MARCONA-ALMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Marcona Almond",
+   "matched_pointe": "CONTESSA MADEIRA/FOSSIL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545254451",
+   "mfr_sku": "JD-BRYCE-YOUNG-HICKORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Canyon - Sapling  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bryce/Young Hickory",
+   "matched_pointe": "CONTESSA MADEIRA/STORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566979635",
+   "mfr_sku": "JD-DIEGUITO-ESTUARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Delta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Estuary",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/STREAM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567077939",
+   "mfr_sku": "JD-DIEGUITO-RANGE-ROVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Expedition  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Range Rover",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/ARROYO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567176243",
+   "mfr_sku": "JD-DIEGUITO-WHALE-WATCHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Migaloo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Whale Watcher",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/NEPTUNE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566946867",
+   "mfr_sku": "JD-DIEGUITO-DRUMSTICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Moringa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Drumstick",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/ABYSS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566881331",
+   "mfr_sku": "JD-DIEGUITO-COBBLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Pebble  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Cobble",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SLATE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567143475",
+   "mfr_sku": "JD-DIEGUITO-TOWN-SQUARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Plaza  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Town Square",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/SHELL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567045171",
+   "mfr_sku": "JD-DIEGUITO-INCOGNITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Shadows  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Incognito",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/MIDNIGHT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567110707",
+   "mfr_sku": "JD-DIEGUITO-TERRACE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Veranda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Terrace",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/FIELD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456453171",
+   "mfr_sku": "JD-BONNEVILLE-ENDIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Arugula  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456518707",
+   "mfr_sku": "JD-BONNEVILLE-PRICKLY-PEAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Cactus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540666931",
+   "mfr_sku": "JD-BRADLEY-TROPICANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539913267",
+   "mfr_sku": "JD-BRADLEY-BASIL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Pesto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564784179",
+   "mfr_sku": "JD-PASHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Casuarina  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pasha",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540011571",
+   "mfr_sku": "JD-BRADLEY-BOSQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543681587",
+   "mfr_sku": "JD-JACINTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cayman  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jacinto",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581135411",
+   "mfr_sku": "JD-GALA-BRAVO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Celebration - Flamenco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gala",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581168179",
+   "mfr_sku": "JD-GALA-DEBUTANTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Celebration - Gardenia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gala",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581200947",
+   "mfr_sku": "JD-GALA-TROUBADOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Celebration - Steelpan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gala",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449408051",
+   "mfr_sku": "JD-GALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Celebration  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gala",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540699699",
+   "mfr_sku": "JD-BRADLEY-UMBRIAN-CLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Sienna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540077107",
+   "mfr_sku": "JD-BRADLEY-CONTEMPORARY-KHAKI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Sisal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539880499",
+   "mfr_sku": "JD-BRADLEY-AIR-FORCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Skydive  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540601395",
+   "mfr_sku": "JD-BRADLEY-SLATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Tiler  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702988851",
+   "mfr_sku": "JD-ARIES-WHIRLPOOL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ARCHIVED",
+   "current_cost": null,
+   "private_label_title": "Starfish - Eddy Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433908787",
+   "mfr_sku": "JD-ALEXANDER-AEOLIAN-HARP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Tradewind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexander",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558099507",
+   "mfr_sku": "JD-MARGAUX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Margaux",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576908339",
+   "mfr_sku": "JD-FEDERICO-BUTTERSCOTCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Caramelo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Butterscotch",
+   "matched_pointe": "NEW WAVE ARCADIA/CANYON",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577039411",
+   "mfr_sku": "JD-FEDERICO-GOLD-RUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Klondike  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Gold Rush",
+   "matched_pointe": "NEW WAVE ARCADIA/PARCHMENT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577137715",
+   "mfr_sku": "JD-FEDERICO-TOTAL-ECLIPSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vibrant - Umbra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Federico/Total Eclipse",
+   "matched_pointe": "NEW WAVE ARCADIA/BLACK PEARL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441773107",
+   "mfr_sku": "JD-AURA-CLOUDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Cumuli  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Clouds",
+   "matched_pointe": "BEYOND SYNERGY/NORDIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441969715",
+   "mfr_sku": "JD-AURA-FACADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Exterior  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aura *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582642739",
+   "mfr_sku": "JD-GIANNI-WOOD-THRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Warbler  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gianni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451800115",
+   "mfr_sku": "JD-GIANNI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gianni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441904179",
+   "mfr_sku": "JD-AURA-ETHEREAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Gossamer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Ethereal",
+   "matched_pointe": "BEYOND SYNERGY/ANISE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442002483",
+   "mfr_sku": "JD-AURA-FOG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Haze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Fog",
+   "matched_pointe": "BEYOND SYNERGY/DEW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442100787",
+   "mfr_sku": "JD-AURA-MALACHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Malachite",
+   "matched_pointe": "BEYOND SYNERGY/SEA GREEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442199091",
+   "mfr_sku": "JD-AURA-STILLWATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Pond  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Stillwater",
+   "matched_pointe": "BEYOND SYNERGY/PACIFIC",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442133555",
+   "mfr_sku": "JD-AURA-OZONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Skyblue  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Ozone",
+   "matched_pointe": "BEYOND SYNERGY/STORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430402611",
+   "mfr_sku": "JD-AESOP-ACROPOLIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Temple  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437677107",
+   "mfr_sku": "JD-APHRODITE-ORACLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Anemone - Mystic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aphrodite",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567012403",
+   "mfr_sku": "JD-DIEGUITO-GHIRARDELLI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coastal - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dieguito/Ghirardelli",
+   "matched_pointe": "GALLERIA ESSENTIAL KOTOR/TRUFFLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": 1.3,
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452029491",
+   "mfr_sku": "JD-GRANT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561245235",
+   "mfr_sku": "JD-MUSINGS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Musings",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577236019",
+   "mfr_sku": "JD-SAMBURU-MOJAVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoon - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Samburu *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577170483",
+   "mfr_sku": "JD-SAMBURU-BAMBOO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoon - Cane  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Samburu *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577301555",
+   "mfr_sku": "JD-SAMBURU-VERDANT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lagoon - Emerald  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Samburu *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434367539",
+   "mfr_sku": "JD-ALLEGRO-VIOLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Laguna - Fiddle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434236467",
+   "mfr_sku": "JD-ALLEGRO-GOLDEN-HARP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Laguna - Lyre  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434302003",
+   "mfr_sku": "JD-ALLEGRO-PIN-STRIPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Laguna - Seersucker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434269235",
+   "mfr_sku": "JD-ALLEGRO-HIGH-WIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Laguna - Tightrope  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Allegro",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432499763",
+   "mfr_sku": "JD-CECILY-DEW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coralia - Moisture  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cecily",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432663603",
+   "mfr_sku": "JD-CECILY-TOASTED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coralia - Sorghum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cecily",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432466995",
+   "mfr_sku": "JD-CECILY-DAWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coralia - Sunriseglow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cecily",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432630835",
+   "mfr_sku": "JD-CECILY-SIENNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coralia - Umber  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cecily",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432991283",
+   "mfr_sku": "JD-ALASTAIR-SHREDDED-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Shredded Denim",
+   "matched_pointe": "TEKLOOM REVELRY/PIER",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575532083",
+   "mfr_sku": "JD-ROSARIOROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548072499",
+   "mfr_sku": "JD-CANOPY-WINDCHILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Umbrella - Chill  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Canopy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.35",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547974195",
+   "mfr_sku": "JD-CANOPY-AFTERNOON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Umbrella - Sundown  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Canopy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.35",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540503091",
+   "mfr_sku": "JD-BRADLEY-POPPY-FIELDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Anthurium  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540142643",
+   "mfr_sku": "JD-BRADLEY-ELKHORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Antler  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540208179",
+   "mfr_sku": "JD-BRADLEY-FIRED-KILN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Brickoven  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540568627",
+   "mfr_sku": "JD-BRADLEY-ROASTED-CASHEW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Cashew  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540240947",
+   "mfr_sku": "JD-BRADLEY-FROSTY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Crest - Chilled  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bradley",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 34.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 62.44,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441707571",
+   "mfr_sku": "JD-ELGAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Harmony  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Elgar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435973171",
+   "mfr_sku": "JD-ANTIGUA-DUTCHMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Reefgold  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456322099",
+   "mfr_sku": "JD-BOND-RED-SQUIRREL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Macaw  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456289331",
+   "mfr_sku": "JD-BOND-OFFICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Bureau  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456223795",
+   "mfr_sku": "JD-BOND-CHLOE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Gardenia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bond",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580971571",
+   "mfr_sku": "JD-SISKEL-CONTESSA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580906035",
+   "mfr_sku": "JD-SISKEL-AZORES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Islander  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581069875",
+   "mfr_sku": "JD-SISKEL-NOISETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Dolphin - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Siskel",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Glitz & Glam",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.85",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545877043",
+   "mfr_sku": "JD-LANDON-MOJITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Limeade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457272371",
+   "mfr_sku": "JD-BOULEVARD-AFRAME-CABIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Teakwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/A-Frame Cabin",
+   "matched_pointe": "GALLERIA STITCH/CHOCOLATE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429354035",
+   "mfr_sku": "JD-BUBBLES-PEPPERCORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Effervescence - Allspice  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429386803",
+   "mfr_sku": "JD-BUBBLES-ROSEMARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Effervescence - Herbal  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567241779",
+   "mfr_sku": "JD-PHOENIX-BRUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Elysium - Bristle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phoenix",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Phoenix",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567307315",
+   "mfr_sku": "JD-PHOENIX-GOLDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Elysium - Marigold  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phoenix",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Phoenix",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567340083",
+   "mfr_sku": "JD-PHOENIX-GREYSCALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Elysium - Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phoenix",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Phoenix",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567274547",
+   "mfr_sku": "JD-PHOENIX-CANVAS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Elysium - Sailcloth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Phoenix",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Phoenix",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582478899",
+   "mfr_sku": "JD-SPELLBOUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Enchantment  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Spellbound",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557247539",
+   "mfr_sku": "JD-CESTINO-GEISEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Geisel",
+   "matched_pointe": "GALLERIA SF NEVIS/SHITAKE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558033971",
+   "mfr_sku": "JD-CESTINO-TERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Laterite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Terra",
+   "matched_pointe": "GALLERIA SF NEVIS/BARISTA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810557182003",
+   "mfr_sku": "JD-CESTINO-DENIM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Waikiki - Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cestino/Denim",
+   "matched_pointe": "GALLERIA SF NEVIS/NEPTUNE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.65,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457305139",
+   "mfr_sku": "JD-BOULEVARD-AMAZONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Wilderness  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Amazonia",
+   "matched_pointe": "GALLERIA STITCH/LICHEN",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457600051",
+   "mfr_sku": "JD-BOULEVARD-TRACK-AND-FIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Decathlon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Track And Field",
+   "matched_pointe": "GALLERIA STITCH/WOODLAND",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457468979",
+   "mfr_sku": "JD-BOULEVARD-PARISIAN-RED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Esplanade - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Boulevard/Parisian Red",
+   "matched_pointe": "GALLERIA STITCH/KOI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575269939",
+   "mfr_sku": "JD-ETRO-OAHU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Exotica - Aloha  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565242931",
+   "mfr_sku": "JD-DAYDREAM-MINUET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Ballet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565111859",
+   "mfr_sku": "JD-DAYDREAM-COOKIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Shortbread  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548138035",
+   "mfr_sku": "JD-LOMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lilikoi  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Loma",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580840499",
+   "mfr_sku": "JD-GABLE-JUNGLE-WOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rooftop - Teak  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gable",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568519731",
+   "mfr_sku": "JD-DOLOMIEU-ISOMETRIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Facet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Isometric",
+   "matched_pointe": "GALLERIA SF TRESOR/MICA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436005939",
+   "mfr_sku": "JD-ANTIGUA-FLARE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Radiance  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566225971",
+   "mfr_sku": "JD-DEMETER-ASLAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Lionfish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566357043",
+   "mfr_sku": "JD-DEMETER-CLOAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Mantle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566258739",
+   "mfr_sku": "JD-DEMETER-BAREFOOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Sandaled  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566422579",
+   "mfr_sku": "JD-DEMETER-PLUMAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fertility - Down  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Demeter",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576613427",
+   "mfr_sku": "JD-FANDO-MABEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Palmfrond  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444820531",
+   "mfr_sku": "JD-FANDO-PARCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fiesta - Savanna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fando",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568257587",
+   "mfr_sku": "JD-DOLOMIEU-CEDAR-ROSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Rosewood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Cedar Rose",
+   "matched_pointe": "GALLERIA SF TRESOR/MOREL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451013683",
+   "mfr_sku": "JD-BETTY-PERNOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Absinthe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450489395",
+   "mfr_sku": "JD-BETTY-MUSLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Cambric  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450358323",
+   "mfr_sku": "JD-BETTY-LEMON-MERINGUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Citron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450325555",
+   "mfr_sku": "JD-BETTY-GREEN-WASABI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Horseradish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443870259",
+   "mfr_sku": "JD-BALBOA-SPANISH-LEATHER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Cordovan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Spanish Leather",
+   "matched_pointe": "CONTESSA SIENA/TRUFFLE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436202547",
+   "mfr_sku": "JD-ANTIGUA-SUGAR-MILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antigua",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568486963",
+   "mfr_sku": "JD-DOLOMIEU-GOLD-ESSENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Atoll - Nectar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Dolomieu/Gold Essence",
+   "matched_pointe": "GALLERIA SF TRESOR/KARAT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 35.5,
+   "tariff_passthrough": 1.35,
+   "proposed_retail": 64.25,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579759155",
+   "mfr_sku": "JD-FONDA-GYPSUM-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Foundation - Conch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448031795",
+   "mfr_sku": "JD-FONDA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Foundation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fonda",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441543731",
+   "mfr_sku": "JD-ATHENA-SWAN-LAKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Laguna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426044467",
+   "mfr_sku": "JD-ATHENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441609267",
+   "mfr_sku": "JD-ATHENA-UNDERCOVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Camouflage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441248819",
+   "mfr_sku": "JD-ATHENA-EXUMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Cay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441347123",
+   "mfr_sku": "JD-ATHENA-GODIVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Chocolate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441576499",
+   "mfr_sku": "JD-ATHENA-SWEET-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Custard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441314355",
+   "mfr_sku": "JD-ATHENA-FAIRYTALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Enchanted  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441216051",
+   "mfr_sku": "JD-ATHENA-DREAMY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Ethereal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441412659",
+   "mfr_sku": "JD-ATHENA-KETCHIKAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Fjord  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441183283",
+   "mfr_sku": "JD-ATHENA-BONSAI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Jungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582577203",
+   "mfr_sku": "JD-GIANNI-RACECAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Velocity  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gianni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582511667",
+   "mfr_sku": "JD-GIANNI-KALMIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Azalea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gianni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433122355",
+   "mfr_sku": "JD-ALDEN-POLLEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alden +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582609971",
+   "mfr_sku": "JD-GIANNI-SUMMER-BREEZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Frangipani - Tradewind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gianni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430238771",
+   "mfr_sku": "JD-ADELAIDE-TRINITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Trio  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430074931",
+   "mfr_sku": "JD-ADELAIDE-ELEMENTAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Tsunami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Adelaide",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Adelaide",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569535539",
+   "mfr_sku": "JD-DUVALL-BALLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafloor - Swan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Duvall",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451996723",
+   "mfr_sku": "JD-BEVERLY-RESPITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Oasis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796291862579",
+   "mfr_sku": "JD-BEVERLY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Taupe Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447540275",
+   "mfr_sku": "JD-FLOURISH-FIREDANCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gardens - Torchlight  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flourish",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453012531",
+   "mfr_sku": "JD-BIJOU-MILAGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Charm  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Milagro",
+   "matched_pointe": "SKINTEX SF POP/AUBURN",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547318835",
+   "mfr_sku": "JD-LENNOX-GERANIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Makai - Bougainvillea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lennox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571239475",
+   "mfr_sku": "JD-ECLIPSE-GREENBRIER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Jasmine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547286067",
+   "mfr_sku": "JD-LENNOX-ARIZONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Makai - Cactus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lennox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580545587",
+   "mfr_sku": "JD-FRICK-BLAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery - Inferno  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580611123",
+   "mfr_sku": "JD-FRICK-MOLEHILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery - Termite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449342515",
+   "mfr_sku": "JD-FRICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547351603",
+   "mfr_sku": "JD-LENNOX-JADEITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Makai - Celadon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lennox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447507507",
+   "mfr_sku": "JD-FLOURISH-AQUAMARINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gardens - Beryl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flourish",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547384371",
+   "mfr_sku": "JD-LENNOX-PIGEON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Makai - Dove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lennox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453241907",
+   "mfr_sku": "JD-BIJOU-SPEEDBOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Catamaran  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Speedboat",
+   "matched_pointe": "SKINTEX SF POP/DEEP SEA",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452946995",
+   "mfr_sku": "JD-BIJOU-MESH-METAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Chainmail  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Mesh Metal",
+   "matched_pointe": "SKINTEX SF POP/MALT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453176371",
+   "mfr_sku": "JD-BIJOU-SANDCASTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Conch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Sandcastle",
+   "matched_pointe": "SKINTEX SF POP/IVORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453340211",
+   "mfr_sku": "JD-BIJOU-ZIRCONIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Cubic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Zirconia",
+   "matched_pointe": "SKINTEX SF POP/MERCURY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453110835",
+   "mfr_sku": "JD-BIJOU-PLUM-FAIRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Nymph  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Plum Fairy",
+   "matched_pointe": "SKINTEX SF POP/CONCORD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452914227",
+   "mfr_sku": "JD-BIJOU-MARTINIQUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Martinique",
+   "matched_pointe": "SKINTEX SF POP/BLUE BELL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810561278003",
+   "mfr_sku": "JD-MYKONOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Mykonos",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571337779",
+   "mfr_sku": "JD-ECLIPSE-OCEAN-LINER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Cruiser  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543747123",
+   "mfr_sku": "JD-JERICHO-GRIZZLY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kaimana - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jericho *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581987379",
+   "mfr_sku": "JD-GENOVA-GREY-SKIES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Overcast  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559606835",
+   "mfr_sku": "JD-MERINO-CLOUD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Angelfish - Nimbus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Merino",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Merino",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552692787",
+   "mfr_sku": "JD-CARVILLE-MAMBO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Rhythm  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445410355",
+   "mfr_sku": "JD-BARNUM-MILLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Sorghum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542501939",
+   "mfr_sku": "JD-BRIGHTON-MIDSUMMER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Solstice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577530931",
+   "mfr_sku": "JD-FELISA-IDITAROD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Tundra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577432627",
+   "mfr_sku": "JD-FELISA-FRESH-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Vanilla  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445508659",
+   "mfr_sku": "JD-BARNUM-SAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283572275",
+   "mfr_sku": "JD-BARNUM-CARBIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Hardpan Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445049907",
+   "mfr_sku": "JD-BARNUM-ARROWHEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444886067",
+   "mfr_sku": "JD-BARNUM-ABALONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577367091",
+   "mfr_sku": "JD-FELISA-DESERT-VISTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Joyful - Horizon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Felisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444230707",
+   "mfr_sku": "JD-BANDOLIER-DARK-ALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Shadows  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Dark Alley",
+   "matched_pointe": "SKINTEX SF RHYME/SMOKE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546532403",
+   "mfr_sku": "JD-CALIFA-KERMES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Scarlet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574647347",
+   "mfr_sku": "JD-ESPRIT-SACHET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Potpourri  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546368563",
+   "mfr_sku": "JD-CALIFA-FIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Seabreeze  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572288051",
+   "mfr_sku": "JD-ENYA-VESTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mystique - Hearth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Enya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578710579",
+   "mfr_sku": "JD-FLANDERS-BIRCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Bamboo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455142451",
+   "mfr_sku": "JD-BOGART-CANTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lizard - Sonnet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448457779",
+   "mfr_sku": "JD-BELMONT-HALF-DOLLAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Doubloon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Half Dollar",
+   "matched_pointe": "SKINTEX SF SERENITY/SILVER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433876019",
+   "mfr_sku": "JD-CHAPLIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chaplin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440986675",
+   "mfr_sku": "JD-ASHTON-ORAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Citron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Decorative Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559508531",
+   "mfr_sku": "JD-MERCUTIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Barnacle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Mercutio",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575138867",
+   "mfr_sku": "JD-ESTATE-TWAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Duality  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558623795",
+   "mfr_sku": "JD-CHAPLIN-STEEL-BEAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Banyan - Anchor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Chaplin",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574549043",
+   "mfr_sku": "JD-ESPRIT-INCANTATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Charm  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581364787",
+   "mfr_sku": "JD-GARBO-DILETTANTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Glamour - Amateur  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Garbo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449440819",
+   "mfr_sku": "JD-GARBO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Glamour  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Garbo",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545811507",
+   "mfr_sku": "JD-LANDON-LOLLIPOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Sweetlime  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448785459",
+   "mfr_sku": "JD-BELMONT-WROUGHT-IRON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Grillage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Wrought Iron",
+   "matched_pointe": "SKINTEX SF SERENITY/SEAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810549121075",
+   "mfr_sku": "JD-CARA-LEMUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Tamarind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456387635",
+   "mfr_sku": "JD-HATCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Borabora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hatch",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics / Sheerly Elegant",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579071027",
+   "mfr_sku": "JD-FLANDERS-RICO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Meadow - Boriken  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flanders *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559311923",
+   "mfr_sku": "JD-CHEVIOT-HOLLYWOOD-GOLD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Tinsel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Hollywood Gold",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/HONEYCOMB",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559475763",
+   "mfr_sku": "JD-CHEVIOT-WITCH-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Witch Mountain",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/DARK ESPRESSO",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810448392243",
+   "mfr_sku": "JD-BELMONT-GOLDEN-RETRIEVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Breakers - Amber  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Belmont/Golden Retriever",
+   "matched_pointe": "SKINTEX SF SERENITY/CHARDONNAY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546958387",
+   "mfr_sku": "JD-CALIFA-PUB",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Tiki  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776943407155",
+   "mfr_sku": "JD-009",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Golden Horizon Through Glass  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429648947",
+   "mfr_sku": "JD-ABRAXAS-AMAZON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - River  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573631539",
+   "mfr_sku": "JD-ERICSON-QUIVER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Arrow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455437363",
+   "mfr_sku": "JD-BOGART-STATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lizard - Dock  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bogart",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550562867",
+   "mfr_sku": "JD-CARA-ROLLING-HILLS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Dunes  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576351283",
+   "mfr_sku": "JD-FAIRWAY-GRASSY-FIELD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Pasture  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Grassy Field",
+   "matched_pointe": "TEKLOOM FORUM/MEADOW",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810550956083",
+   "mfr_sku": "JD-CARA-SNOWMASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Pinnacle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433024051",
+   "mfr_sku": "JD-ALASTAIR-TROPICAL-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coral - Seagrass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Alastair/Tropical Grass",
+   "matched_pointe": "TEKLOOM REVELRY/BALSAMIC",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": 2.55,
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810548367411",
+   "mfr_sku": "JD-CARA-BEAR-PAW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Amour - Talons  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564194355",
+   "mfr_sku": "JD-PADOVA-CANDYBAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Truffle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287045683",
+   "mfr_sku": "JD-BELVEDERE-NAUTILUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Chambered Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449178675",
+   "mfr_sku": "JD-BELVEDERE-NAUTILUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Chambered  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287307827",
+   "mfr_sku": "JD-BELVEDERE-RHINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Tusker Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553479219",
+   "mfr_sku": "JD-CARVILLE-TIN-PAN-ALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Showtime  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810551775283",
+   "mfr_sku": "JD-CARVILLE-ALLOY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Steelpan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559442995",
+   "mfr_sku": "JD-CHEVIOT-SHOOTING-STAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Meteor  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Shooting Star",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/LINEN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559279155",
+   "mfr_sku": "JD-CHEVIOT-GATSBY-GRAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Artdeco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Gatsby Gray",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/CHARCOAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559344691",
+   "mfr_sku": "JD-CHEVIOT-METALLIC-LIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Fluorite  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Metallic Lime",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/MATCHA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": 2.7,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559377459",
+   "mfr_sku": "JD-CHEVIOT-MINERAL-ICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Lush - Glacier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Cheviot/Mineral Ice",
+   "matched_pointe": "DIMENSIONAL DIVERGENT/PALLADIUM",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552496179",
+   "mfr_sku": "JD-CARVILLE-EMPRESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Sultana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440429619",
+   "mfr_sku": "JD-ASHANTI-PALOMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Dove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440331315",
+   "mfr_sku": "JD-ASHANTI-CAVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Grotto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440364083",
+   "mfr_sku": "JD-ASHANTI-CENTENNIAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Jubilee  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440298547",
+   "mfr_sku": "JD-ASHANTI-BOBCAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Ocelot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440396851",
+   "mfr_sku": "JD-ASHANTI-HIBISCUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Macaw - Rosella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ashanti",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776943046707",
+   "mfr_sku": "JD-008",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Magenta Dusk Gradient  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552201267",
+   "mfr_sku": "JD-CARVILLE-ARMADILLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Tatu  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578513971",
+   "mfr_sku": "JD-SERAPHINA-CHIFFON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Cove - Gossamer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seraphina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Winsome Collection",
+   "proposed_cost": 19.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 35.29,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553839667",
+   "mfr_sku": "JD-CASSIUS-SANTO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Totem  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430730291",
+   "mfr_sku": "JD-CASSIUS-DRIFT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Wander  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430861363",
+   "mfr_sku": "JD-CASSIUS-MAKOSSA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Zebrawood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429812787",
+   "mfr_sku": "JD-ABRAXAS-PARIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Riviera  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553446451",
+   "mfr_sku": "JD-CARVILLE-SPLINTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Kindling  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429780019",
+   "mfr_sku": "JD-ABRAXAS-EMBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582052915",
+   "mfr_sku": "JD-GENOVA-SNOWDROP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562424883",
+   "mfr_sku": "JD-OMAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mango  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Omar",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810567766067",
+   "mfr_sku": "JD-PICKWICK-SPEARMINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangosteen - Menthol  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pickwick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552365107",
+   "mfr_sku": "JD-CARVILLE-BLACKTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Asphalt  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552299571",
+   "mfr_sku": "JD-CARVILLE-BEBOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Calypso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553086003",
+   "mfr_sku": "JD-CARVILLE-PLANTATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Estate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810552430643",
+   "mfr_sku": "JD-CARVILLE-CYMBAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Gong  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429681715",
+   "mfr_sku": "JD-ABRAXAS-AVOCADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Guacamole  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Abraxas",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553511987",
+   "mfr_sku": "JD-CARVILLE-VELOCITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Gusto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Carville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582020147",
+   "mfr_sku": "JD-GENOVA-RAW-LINEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mangrove - Hemp  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576089139",
+   "mfr_sku": "JD-ROYCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Royce *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wanderlust",
+   "proposed_cost": 46.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 84.16,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456027187",
+   "mfr_sku": "JD-BOLIVAR-SPICE-MARKET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Bazaar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Spice Market",
+   "matched_pointe": "NUVTEX CROCO/MUDDY GOLD",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456059955",
+   "mfr_sku": "JD-BOLIVAR-SQUID-INK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Squid Ink",
+   "matched_pointe": "NUVTEX CROCO/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810455928883",
+   "mfr_sku": "JD-BOLIVAR-RELIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Manioc - Artifact  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bolivar/Relic",
+   "matched_pointe": "NUVTEX CROCO/MUDDY COPPER",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428895283",
+   "mfr_sku": "JD-BRAHMS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456715315",
+   "mfr_sku": "JD-BOONE-TURNPIKE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marae - Causeway  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456617011",
+   "mfr_sku": "JD-BOONE-GRAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marae - Lychee  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456682547",
+   "mfr_sku": "JD-BOONE-PAPYRUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marae - Palmleaf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428698675",
+   "mfr_sku": "JD-BOONE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marae  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Boone",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Durango",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570682419",
+   "mfr_sku": "JD-EASTER-ISLAND-CANOPY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570879027",
+   "mfr_sku": "JD-EASTER-ISLAND-SANDPIPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Tern  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570813491",
+   "mfr_sku": "JD-EASTER-ISLAND-FOOTPRINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Tread  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457796659",
+   "mfr_sku": "JD-HEMINGWAY-FLURRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Squall  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436399155",
+   "mfr_sku": "JD-ANTONI-ALPINE-MIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Cloudforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810539552819",
+   "mfr_sku": "JD-HEMINGWAY-SEASHELL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Cowrie  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457894963",
+   "mfr_sku": "JD-HEMINGWAY-PAPYRUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Palmleaf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Hemingway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Windowscapes",
+   "proposed_cost": 15.5,
+   "tariff_passthrough": "$0.25",
+   "proposed_retail": 28.05,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436759603",
+   "mfr_sku": "JD-ANTONI-TARO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Ube  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436890675",
+   "mfr_sku": "JD-ANTONI-TSUNAMI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Marlin - Undertow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Antoni",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Wilderie",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570846259",
+   "mfr_sku": "JD-EASTER-ISLAND-JET-STREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Waft  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581495859",
+   "mfr_sku": "JD-SOBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Bahamas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Sobe *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Escapade",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541682739",
+   "mfr_sku": "JD-BRANNAN-OLIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Avocado  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Olive",
+   "matched_pointe": "GALLERIA CENTRAL/PAPYRUS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582446131",
+   "mfr_sku": "JD-SOLSTICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Equinox  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Solstice",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447245363",
+   "mfr_sku": "JD-BASQUETTA-PRETZEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Saltflat  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447147059",
+   "mfr_sku": "JD-BASQUETTA-MERITAGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Vintage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450391091",
+   "mfr_sku": "JD-BETTY-LILAC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Plumeria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452488243",
+   "mfr_sku": "JD-BIANCA-SANDBAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Cay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452586547",
+   "mfr_sku": "JD-BIANCA-TORNADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Cyclone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452193331",
+   "mfr_sku": "JD-BIANCA-CAPYBARA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Marshland  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434793523",
+   "mfr_sku": "JD-AMAZONIA-INDULGENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Nectar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Indulgence",
+   "matched_pointe": "NEW WAVE MAMBA II/CANYON",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570911795",
+   "mfr_sku": "JD-EASTER-ISLAND-TIKI-TORCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Citronella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810570780723",
+   "mfr_sku": "JD-EASTER-ISLAND-COSMIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moai - Nebula  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Easter Island *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Travelogue",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452258867",
+   "mfr_sku": "JD-BIANCA-ENIGMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Riddle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434924595",
+   "mfr_sku": "JD-AMAZONIA-MAJESTIC-PURPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Royalty  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Majestic Purple",
+   "matched_pointe": "NEW WAVE MAMBA II/AUBERGINE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447114291",
+   "mfr_sku": "JD-BASQUETTA-MANILA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Cinnamon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447048755",
+   "mfr_sku": "JD-BASQUETTA-KOLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Cola  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447212595",
+   "mfr_sku": "JD-BASQUETTA-PARFUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Frangipani  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446983219",
+   "mfr_sku": "JD-BASQUETTA-DIABLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Hellfire  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447179827",
+   "mfr_sku": "JD-BASQUETTA-NOCHE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Indigo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447278131",
+   "mfr_sku": "JD-BASQUETTA-TALISMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Amulet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810447081523",
+   "mfr_sku": "JD-BASQUETTA-LINK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mongoose - Chain  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Basquetta *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Faux Leather 4 / True West",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434727987",
+   "mfr_sku": "JD-AMAZONIA-GLITTERATI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Spectra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Glitterati",
+   "matched_pointe": "NEW WAVE MAMBA II/PARCHMENT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434760755",
+   "mfr_sku": "JD-AMAZONIA-GRIFFIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tsunami  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Griffin",
+   "matched_pointe": "NEW WAVE MAMBA II/GRANITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434859059",
+   "mfr_sku": "JD-AMAZONIA-IVORIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon - Tusk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Amazonia/Ivorian",
+   "matched_pointe": "NEW WAVE MAMBA II/MARBLE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 78.73,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545614899",
+   "mfr_sku": "JD-LAFAYETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Monsoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lafayette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$5.00",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582216755",
+   "mfr_sku": "JD-GEORGETTE-FREEHOLD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Estate  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573172787",
+   "mfr_sku": "JD-ERICSON-FABLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Legend  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573598771",
+   "mfr_sku": "JD-ERICSON-POTPOURRI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Lei  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452553779",
+   "mfr_sku": "JD-BIANCA-SHOAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Sandbank  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452324403",
+   "mfr_sku": "JD-BIANCA-NEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Aviary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452226099",
+   "mfr_sku": "JD-BIANCA-CARNATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Bougainvillea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452521011",
+   "mfr_sku": "JD-BIANCA-SCHOONER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Brigantine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452291635",
+   "mfr_sku": "JD-BIANCA-HOCUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Abracadabra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452389939",
+   "mfr_sku": "JD-BIANCA-REEF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Moonbeam - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bianca *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tactile Textures",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810446884915",
+   "mfr_sku": "JD-FIORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Blossoms  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810541453363",
+   "mfr_sku": "JD-BRANNAN-DEER-VALLEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Caiman - Canyonridge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Brannan/Deer Valley",
+   "matched_pointe": "GALLERIA CENTRAL/BEACH",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578219059",
+   "mfr_sku": "JD-FIORE-FIRE-LILY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Blossoms - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fiore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572255283",
+   "mfr_sku": "JD-ENYA-HEARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mystique - Embers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Enya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442494003",
+   "mfr_sku": "JD-ENYA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Mystique  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Enya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573959219",
+   "mfr_sku": "JD-ERICSON-THUNDERBOLT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Lightning  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573729843",
+   "mfr_sku": "JD-ERICSON-SANDLOT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545647667",
+   "mfr_sku": "JD-LANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nautilus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Lana",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580447283",
+   "mfr_sku": "JD-FREYA-CRYSTAL-BALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Goddess - Diviner  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Freya",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569240627",
+   "mfr_sku": "JD-DOYLE-ECLIPSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Umbra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569142323",
+   "mfr_sku": "JD-DOYLE-CAMPGROUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Wilderness  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569207859",
+   "mfr_sku": "JD-DOYLE-DARIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Adriatic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569404467",
+   "mfr_sku": "JD-DOYLE-TIDEPOOL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Anemone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569175091",
+   "mfr_sku": "JD-DOYLE-CORIANDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Cilantro  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569306163",
+   "mfr_sku": "JD-DOYLE-OLIVEWOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Eucalyptus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569011251",
+   "mfr_sku": "JD-DOYLE-ALLOY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Steelpan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810569338931",
+   "mfr_sku": "JD-DOYLE-STRAW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Navigator - Thatch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Doyle +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Blackout",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776939802675",
+   "mfr_sku": "JD-003",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Neon Pulse Matrix  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558296115",
+   "mfr_sku": "JD-CHAINMAIL-CHARRED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Embers  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Charred",
+   "matched_pointe": "TEKLOOM WICKER/NIGHTFALL",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558361651",
+   "mfr_sku": "JD-CHAINMAIL-COLT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Foal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Colt",
+   "matched_pointe": "TEKLOOM WICKER/RIDGE",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558230579",
+   "mfr_sku": "JD-CHAINMAIL-ARMAMENT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Harpoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Armament",
+   "matched_pointe": "TEKLOOM WICKER/CINDER",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558394419",
+   "mfr_sku": "JD-CHAINMAIL-EXOTICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Exotica",
+   "matched_pointe": "TEKLOOM WICKER/RESORT",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558328883",
+   "mfr_sku": "JD-CHAINMAIL-CITRANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Netting - Tangelo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Chainmail/Citrange",
+   "matched_pointe": "TEKLOOM WICKER/AUTUMN",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456977459",
+   "mfr_sku": "JD-BORREGO-COAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457042995",
+   "mfr_sku": "JD-BORREGO-GRAVEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Pebble  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573500467",
+   "mfr_sku": "JD-ERICSON-MOUNTAIN-PINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Needle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576154675",
+   "mfr_sku": "JD-FAIRWAY-ATMOSPHERIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Ethereal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Atmospheric",
+   "matched_pointe": "TEKLOOM FORUM/PESCA",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457108531",
+   "mfr_sku": "JD-BORREGO-RUSTLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Vaquero  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565865523",
+   "mfr_sku": "JD-DELILAH-FROSTNIP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Shiver  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Delilah +",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565963827",
+   "mfr_sku": "JD-DELILAH-PALISADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Stockade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Palisade",
+   "matched_pointe": "BLACKOUT PURCELL/PEPPER",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547482675",
+   "mfr_sku": "JD-CALISTA-EGRET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nymph - Heron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Calista",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547417139",
+   "mfr_sku": "JD-CALISTA-CHAI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nymph - Latte  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Calista",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429517875",
+   "mfr_sku": "JD-CALISTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Nymph  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Calista",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457206835",
+   "mfr_sku": "JD-BORREGO-WEREWOLF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Shadows  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457075763",
+   "mfr_sku": "JD-BORREGO-RANCH-HAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Cowboy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457010227",
+   "mfr_sku": "JD-BORREGO-CONCHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Cowrie  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457141299",
+   "mfr_sku": "JD-BORREGO-SEEKER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Explorer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456944691",
+   "mfr_sku": "JD-BORREGO-BOXTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Oasis - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Borrego",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.15",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565898291",
+   "mfr_sku": "JD-DELILAH-HIGH-SIERRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Elevation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/High Sierra",
+   "matched_pointe": "BLACKOUT PURCELL/CANYON",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565931059",
+   "mfr_sku": "JD-DELILAH-OSIRIS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Orchid - Pharaoh  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Delilah/Osiris",
+   "matched_pointe": "BLACKOUT PURCELL/RYE",
+   "source_status": "STANDARD",
+   "type": "Blackout",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573303859",
+   "mfr_sku": "JD-ERICSON-IRON-AGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Rust  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435285043",
+   "mfr_sku": "JD-ANNALISA-GLORY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmetto - Triumph  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Annalisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435252275",
+   "mfr_sku": "JD-ANNALISA-BREEZEWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmetto - Veranda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Annalisa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573762611",
+   "mfr_sku": "JD-ERICSON-SAUNA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Steam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562818099",
+   "mfr_sku": "JD-CRAWFORD-SNOW-CAP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Summit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562588723",
+   "mfr_sku": "JD-CRAWFORD-CRIMINI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Truffle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435842099",
+   "mfr_sku": "JD-CRAWFORD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430435379",
+   "mfr_sku": "JD-AESOP-ARGAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Macadamia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573238323",
+   "mfr_sku": "JD-ERICSON-GOLDEN-GLOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439807027",
+   "mfr_sku": "JD-ARISTOTLE-WIND-CHIME",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Emerald - Tinkle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810425978931",
+   "mfr_sku": "JD-ARISTOTLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Emerald  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aristotle",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564882483",
+   "mfr_sku": "JD-DAYDREAM-AMBER-ALE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Honeycomb  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564325427",
+   "mfr_sku": "JD-PALAGIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmleaf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Palagio",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 22.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 40.72,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562752563",
+   "mfr_sku": "JD-CRAWFORD-PROTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Atomic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562654259",
+   "mfr_sku": "JD-CRAWFORD-MADAGASCAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Ayeaye  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562785331",
+   "mfr_sku": "JD-CRAWFORD-SHOT-PUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Cannonball  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562490419",
+   "mfr_sku": "JD-CRAWFORD-BRUNSWICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Emerald  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562850867",
+   "mfr_sku": "JD-CRAWFORD-SONGBIRD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Mockingbird  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562621491",
+   "mfr_sku": "JD-CRAWFORD-LAVA-ROCK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Obsidian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562555955",
+   "mfr_sku": "JD-CRAWFORD-CIDER-HOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Orchard  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562916403",
+   "mfr_sku": "JD-CRAWFORD-WILLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Palmwood - Plover  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Crawford",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coach Collection",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572943411",
+   "mfr_sku": "JD-ERICSON-CARIBOU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Tundra  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430599219",
+   "mfr_sku": "JD-AESOP-OLIVE-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Pistachio  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565505075",
+   "mfr_sku": "JD-DAYDREAM-STRATUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Cumulus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449801267",
+   "mfr_sku": "JD-BERNARD-CALLA-LILY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449834035",
+   "mfr_sku": "JD-BERNARD-ELYSIAN-FIELDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Paradise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450128947",
+   "mfr_sku": "JD-BERNARD-WHITE-PAMPAS-GRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Plume  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449735731",
+   "mfr_sku": "JD-BERNARD-BABYS-BREATH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Plumeria  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564161587",
+   "mfr_sku": "JD-PADOVA-CALIENTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Scorched  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450063411",
+   "mfr_sku": "JD-BERNARD-VENDELA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Shell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574286899",
+   "mfr_sku": "JD-ESCALANTE-KEY-WEST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Conch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Key West",
+   "matched_pointe": "SKINTEX SF EXOTIC/PEACOCK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574319667",
+   "mfr_sku": "JD-ESCALANTE-PALACIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Climbing - Hacienda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Escalante/Palacio",
+   "matched_pointe": "SKINTEX SF EXOTIC/METAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449899571",
+   "mfr_sku": "JD-BERNARD-KIMONO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Silk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449702963",
+   "mfr_sku": "JD-BERNARD-AVIATOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Skydiver  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449637427",
+   "mfr_sku": "JD-BERNARD-APOLLO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Sunbeam  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449965107",
+   "mfr_sku": "JD-BERNARD-MERINO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Angora  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564128819",
+   "mfr_sku": "JD-PADOVA-BARBADOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Bajan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564259891",
+   "mfr_sku": "JD-PADOVA-ELEFANTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Boulder  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Padova",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449932339",
+   "mfr_sku": "JD-BERNARD-LITTLE-LAMB",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Cloudlet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450096179",
+   "mfr_sku": "JD-BERNARD-WHIRLWIND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Cyclone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449670195",
+   "mfr_sku": "JD-BERNARD-AUBURN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Mahogany  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449768499",
+   "mfr_sku": "JD-BERNARD-BLACK-SHEEP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Merino  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450030643",
+   "mfr_sku": "JD-BERNARD-TUSCAN-TERRAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Ochre  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449997875",
+   "mfr_sku": "JD-BERNARD-STORM-SURGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya - Undertow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426667059",
+   "mfr_sku": "JD-BERNARD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bernard",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Coco Collection",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$2.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565210163",
+   "mfr_sku": "JD-DAYDREAM-INVERNESS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Grotto  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434039859",
+   "mfr_sku": "JD-ALEXEY-CITRON-SPLASH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Shandy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433974323",
+   "mfr_sku": "JD-ALEXEY-AUTUMN-ORANGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Tangerine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810434105395",
+   "mfr_sku": "JD-ALEXEY-PATHWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Trail  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Alexey",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583134259",
+   "mfr_sku": "JD-GRANT-HORNET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Wasp  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810583265331",
+   "mfr_sku": "JD-GRANT-OCEAN-BREEZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Coconut - Zephyr  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Grant",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$5.85",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430468147",
+   "mfr_sku": "JD-AESOP-CHEVAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Stallion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430566451",
+   "mfr_sku": "JD-AESOP-ODEON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aesop",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 33.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 60.63,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565439539",
+   "mfr_sku": "JD-DAYDREAM-ROAST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Molasses  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575302707",
+   "mfr_sku": "JD-ROOSEVELT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Roosevelt",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810555183155",
+   "mfr_sku": "JD-CELESTINA-AIRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradisea - Ethereal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Celestina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810555445299",
+   "mfr_sku": "JD-CELESTINA-OPHELIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradisea - Waterlily  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Celestina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433056819",
+   "mfr_sku": "JD-CELESTINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Paradisea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Celestina",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442657843",
+   "mfr_sku": "JD-BAHARA-ALLEGRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Calypso  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426241075",
+   "mfr_sku": "JD-BAHARA-MARTINA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Paradise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426208307",
+   "mfr_sku": "JD-BAHARA-HAVILAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Porcelain  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426175539",
+   "mfr_sku": "JD-BAHARA-CAMACHA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Passiflora - Tobacco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bahara",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Rafiki Raffia",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$4.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439610419",
+   "mfr_sku": "JD-ARIETTA-ALBA-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pelican - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439708723",
+   "mfr_sku": "JD-ARIETTA-TURNSOLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pelican - Sunflower  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Arietta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Nocturne Sheer",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565570611",
+   "mfr_sku": "JD-DAYDREAM-ZATHURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Orbit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545483827",
+   "mfr_sku": "JD-BUTLER-PRIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Steward - Rainbow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Butler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429419571",
+   "mfr_sku": "JD-BUTLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Steward  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Butler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565079091",
+   "mfr_sku": "JD-DAYDREAM-CHERRY-BLOSSOM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Fantasia - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Daydream",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810450423859",
+   "mfr_sku": "JD-BETTY-MINCED-ONION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Shallot  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546303027",
+   "mfr_sku": "JD-CALIFA-EPOCH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Millennium  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546040883",
+   "mfr_sku": "JD-CALIFA-ANCHOR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Mooring  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568912947",
+   "mfr_sku": "JD-DOWNTOWN-RAINCOAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside - Slicker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568880179",
+   "mfr_sku": "JD-DOWNTOWN-JUTE-VIBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside - Weave  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440691763",
+   "mfr_sku": "JD-DOWNTOWN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547089459",
+   "mfr_sku": "JD-CALIFA-SAND-CRUISER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Outrigger  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574975027",
+   "mfr_sku": "JD-ESTATE-HEARST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Mansion  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575073331",
+   "mfr_sku": "JD-ESTATE-NEMOURS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Chateau  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574876723",
+   "mfr_sku": "JD-ESTATE-BILTMORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574909491",
+   "mfr_sku": "JD-ESTATE-BREAKERS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Surf  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575007795",
+   "mfr_sku": "JD-ESTATE-MARBLE-HOUSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation - Veranda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442690611",
+   "mfr_sku": "JD-ESTATE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Estate",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451406899",
+   "mfr_sku": "JD-BETTY-VANILLA-ICE-CREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Sherbet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451537971",
+   "mfr_sku": "JD-BETTY-WHEAT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Flamingo - Sugarcane  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Betty",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sheerly Elegant",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810431909939",
+   "mfr_sku": "JD-CASSIUS-REMINGTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Plantation  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430926899",
+   "mfr_sku": "JD-CASSIUS-MEADOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810553905203",
+   "mfr_sku": "JD-CASSIUS-WESTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Savanna  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432270387",
+   "mfr_sku": "JD-AKIRA-STAGHORN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Anemone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432139315",
+   "mfr_sku": "JD-AKIRA-BURNT-BUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Ashen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432303155",
+   "mfr_sku": "JD-AKIRA-SURF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Breaker  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810431516723",
+   "mfr_sku": "JD-CASSIUS-MONTEREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Cypress  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430697523",
+   "mfr_sku": "JD-CASSIUS-CHIMNEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Furnace  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810432368691",
+   "mfr_sku": "JD-AKIRA-WASABI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Horseradish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Akira",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810431156275",
+   "mfr_sku": "JD-CASSIUS-MINOTAUR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Labyrinth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430664755",
+   "mfr_sku": "JD-CASSIUS-BUTTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Mesa  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430763059",
+   "mfr_sku": "JD-CASSIUS-FATIMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Plumeria - Oasis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassius *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Cassius",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457665587",
+   "mfr_sku": "JD-BOWIE-BALEARIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pompano - Ibiza  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bowie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428796979",
+   "mfr_sku": "JD-BOWIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pompano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bowie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810457731123",
+   "mfr_sku": "JD-BOWIE-NEBULOSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Pompano - Galactic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bowie",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810568945715",
+   "mfr_sku": "JD-DOWNTOWN-WATER-TOWER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Portside - Reservoir  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Downtown",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546565171",
+   "mfr_sku": "JD-CALIFA-KIONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Prairie  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546925619",
+   "mfr_sku": "JD-CALIFA-PRIMA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Premier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546860083",
+   "mfr_sku": "JD-CALIFA-PASEO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Promenade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546466867",
+   "mfr_sku": "JD-CALIFA-GOURD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Squash  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7776938721331",
+   "mfr_sku": "JD-001",
+   "dw_sku": null,
+   "vendor": "Phillipe Romano",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Prismatic Grid Convergence  Phillipe Romano",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546794547",
+   "mfr_sku": "JD-CALIFA-NINJA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Stealth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545778739",
+   "mfr_sku": "JD-LANDON-LAGOON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Azure  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545745971",
+   "mfr_sku": "JD-LANDON-KHYBER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Pass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545909811",
+   "mfr_sku": "JD-LANDON-PATRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Puka - Saffron  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landon *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543943731",
+   "mfr_sku": "JD-BROADCAST-ATMOSPHERE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Skyglow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Atmosphere",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/FROST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544140339",
+   "mfr_sku": "JD-BROADCAST-INTROSPECTIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Solitude  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Introspective",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/PEWTER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544042035",
+   "mfr_sku": "JD-BROADCAST-FIREWALL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Barrier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Firewall",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/AUTUMN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544336947",
+   "mfr_sku": "JD-BROADCAST-URBAN-ENERGY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Dynamo  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Urban Energy",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/REGATTA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543910963",
+   "mfr_sku": "JD-BROADCAST-ARTISANAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Handwoven  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Artisanal",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/SAGE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544304179",
+   "mfr_sku": "JD-BROADCAST-TORERO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Matador  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Torero",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/TAPAS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544271411",
+   "mfr_sku": "JD-BROADCAST-SOVEREIGN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Monarch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Sovereign",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/VIOLET",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544205875",
+   "mfr_sku": "JD-BROADCAST-PLOT-LINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Narrative  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Plot Line",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/GRAPHITE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544173107",
+   "mfr_sku": "JD-BROADCAST-MONTES",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Ridge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Montes",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/BIRCH",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810544107571",
+   "mfr_sku": "JD-BROADCAST-GULL-WING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Seabird  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Gull Wing",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/HELIUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543976499",
+   "mfr_sku": "JD-BROADCAST-BLUE-POINT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Radiance - Siren  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Broadcast/Blue Point",
+   "matched_pointe": "GALLERIA SF SHEFFIELD/IRIS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": 1.15,
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572189747",
+   "mfr_sku": "JD-RATTANICA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Raffia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Rattanica",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "The New Rattan",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.45",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545975347",
+   "mfr_sku": "JD-LANDSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rainforest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Landscape",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Tekloom",
+   "proposed_cost": 54.5,
+   "tariff_passthrough": "$2.55",
+   "proposed_retail": 98.64,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585755699",
+   "mfr_sku": "JD-GRIFFIN-TOPAZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Amber  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Topaz",
+   "matched_pointe": "NEW WAVE TRAVERSE/SAFFRON",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585428019",
+   "mfr_sku": "JD-GRIFFIN-RITUAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Ceremony  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Ritual",
+   "matched_pointe": "NEW WAVE TRAVERSE/MOCHA",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452815923",
+   "mfr_sku": "JD-BIJOU-COLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Kola  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Cola",
+   "matched_pointe": "SKINTEX SF POP/CHOCOLATE",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810585395251",
+   "mfr_sku": "JD-GRIFFIN-PALM-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reefs - Coconut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Griffin/Palm Tree",
+   "matched_pointe": "NEW WAVE TRAVERSE/MEADOW",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433712179",
+   "mfr_sku": "JD-ALEUTIAN-SILT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Alluvium  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Silt",
+   "matched_pointe": "SKINTEX SF ASPECT/PORCELAIN",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433384499",
+   "mfr_sku": "JD-ALEUTIAN-DARK-DUCK-BLUE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Lagoondeep  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Dark Duck Blue",
+   "matched_pointe": "SKINTEX SF ASPECT/TEAL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433679411",
+   "mfr_sku": "JD-ALEUTIAN-RESTFUL-WHITE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Restful White",
+   "matched_pointe": "SKINTEX SF ASPECT/SNOW",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433253427",
+   "mfr_sku": "JD-ALEUTIAN-ALOE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Succulent  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Aloe",
+   "matched_pointe": "SKINTEX SF ASPECT/CAPRI",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433515571",
+   "mfr_sku": "JD-ALEUTIAN-LEAPFROG",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Treefrog  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Leapfrog",
+   "matched_pointe": "SKINTEX SF ASPECT/GRASS",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433220659",
+   "mfr_sku": "JD-ALEUTIAN-ABYSS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Trench  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Abyss",
+   "matched_pointe": "SKINTEX SF ASPECT/INDIGO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433482803",
+   "mfr_sku": "JD-ALEUTIAN-GREEN-EARTH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Reef - Verdant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aleutian/Green Earth",
+   "matched_pointe": "SKINTEX SF ASPECT/GULL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 43.5,
+   "tariff_passthrough": 2.15,
+   "proposed_retail": 78.73,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576318515",
+   "mfr_sku": "JD-FAIRWAY-FIREPLACE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Hearth  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Fireplace",
+   "matched_pointe": "TEKLOOM FORUM/ASH",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576220211",
+   "mfr_sku": "JD-FAIRWAY-BOSC-PEAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Bosc Pear",
+   "matched_pointe": "TEKLOOM FORUM/CANARY",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576482355",
+   "mfr_sku": "JD-FAIRWAY-VERDIGREEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Patina  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Verdigreen",
+   "matched_pointe": "TEKLOOM FORUM/GROVE",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453078067",
+   "mfr_sku": "JD-BIJOU-OBSCURA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Murky  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Obscura",
+   "matched_pointe": "SKINTEX SF POP/PEWTER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576285747",
+   "mfr_sku": "JD-FAIRWAY-CAMELBACK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Saddle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Camelback",
+   "matched_pointe": "TEKLOOM FORUM/WHEAT",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576121907",
+   "mfr_sku": "JD-FAIRWAY-ATHENAEUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Sanctum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Athenaeum",
+   "matched_pointe": "TEKLOOM FORUM/MARBLE",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576416819",
+   "mfr_sku": "JD-FAIRWAY-SIENA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Siena",
+   "matched_pointe": "TEKLOOM FORUM/HENNA",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540798003",
+   "mfr_sku": "JD-BRAHMS-BLANC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Alabaster  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540994611",
+   "mfr_sku": "JD-BRAHMS-PENNY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Copper  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540961843",
+   "mfr_sku": "JD-BRAHMS-NOCTURNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Duskfall  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540830771",
+   "mfr_sku": "JD-BRAHMS-CAPISTRANO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Mission  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810540896307",
+   "mfr_sku": "JD-BRAHMS-INTERMISSION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rhapsody - Siesta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brahms",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810576384051",
+   "mfr_sku": "JD-FAIRWAY-NOVA-SCOTIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass - Tidepool  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Fairway/Nova Scotia",
+   "matched_pointe": "TEKLOOM FORUM/LAPIS",
+   "source_status": "STANDARD",
+   "type": "JACQUARD",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": 2.45,
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444591155",
+   "mfr_sku": "JD-FAIRWAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Greengrass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairway",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Artisan",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$2.45",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452750387",
+   "mfr_sku": "JD-BIJOU-CAVIAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Roe  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Caviar",
+   "matched_pointe": "SKINTEX SF POP/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453143603",
+   "mfr_sku": "JD-BIJOU-RABOSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Rosella  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Raboso",
+   "matched_pointe": "SKINTEX SF POP/GERANIUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444558387",
+   "mfr_sku": "JD-BARCLAY-FIRE-PIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Guava - Bonfire  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barclay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453307443",
+   "mfr_sku": "JD-BIJOU-TROPHY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Scallop  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Trophy",
+   "matched_pointe": "SKINTEX SF POP/PENNY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426339379",
+   "mfr_sku": "JD-BARCLAY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barclay",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Metro",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.90",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558853171",
+   "mfr_sku": "JD-CHECKERED-CRAFTSMAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Artisan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573697075",
+   "mfr_sku": "JD-ERICSON-RIVERSIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Waterfront  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558984243",
+   "mfr_sku": "JD-CHECKERED-ORANGE-TABBY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Bengal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558689331",
+   "mfr_sku": "JD-CHECKERED-ARCHERY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Blowgun  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558754867",
+   "mfr_sku": "JD-CHECKERED-BUNGALOW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Cabana  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558885939",
+   "mfr_sku": "JD-CHECKERED-HEDGE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Espalier  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558918707",
+   "mfr_sku": "JD-CHECKERED-INDUSTRIALIST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Forge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810559180851",
+   "mfr_sku": "JD-CHECKERED-SMOKING-DEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis - Lounge  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442559539",
+   "mfr_sku": "JD-ERICSON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580807731",
+   "mfr_sku": "JD-GABLE-DECO-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Rooftop - Concretejungle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Gable",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810451963955",
+   "mfr_sku": "JD-BEVERLY-REPOSE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass - Siesta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810453274675",
+   "mfr_sku": "JD-BIJOU-TEATRO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Sunset  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Teatro",
+   "matched_pointe": "SKINTEX SF POP/BRIGHT GOLD",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560327731",
+   "mfr_sku": "JD-CICERO-LUMINARY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Beacon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435383347",
+   "mfr_sku": "JD-ANNENDALE-CANCUN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Lagoon  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cancun",
+   "matched_pointe": "GALLERIA TRIPOD/SURF",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441838643",
+   "mfr_sku": "JD-AURA-COYOTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Jackal  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Coyote",
+   "matched_pointe": "BEYOND SYNERGY/REED",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560426035",
+   "mfr_sku": "JD-CICERO-SYMPOSIUM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Luau  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cicero",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$1.25",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795700662323",
+   "mfr_sku": "JD-ANNENDALE-ELUSIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Mirage Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Elusive",
+   "matched_pointe": "GALLERIA TRIPOD/COCONUT",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435579955",
+   "mfr_sku": "JD-ANNENDALE-LANDSCAPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Panorama  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Landscape",
+   "matched_pointe": "GALLERIA TRIPOD/REFRESH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435711027",
+   "mfr_sku": "JD-ANNENDALE-TIN-LIZZIE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Roadster  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Tin Lizzie",
+   "matched_pointe": "GALLERIA TRIPOD/MIST",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435350579",
+   "mfr_sku": "JD-ANNENDALE-ADMIRAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Seafarer  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Admiral",
+   "matched_pointe": "GALLERIA TRIPOD/STORM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435547187",
+   "mfr_sku": "JD-ANNENDALE-FERVENT-BRASS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Trumpet  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Fervent Brass",
+   "matched_pointe": "GALLERIA TRIPOD/MARSH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435448883",
+   "mfr_sku": "JD-ANNENDALE-CRUISE-LINER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tropicana - Yacht  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Annendale/Cruise Liner",
+   "matched_pointe": "GALLERIA TRIPOD/STERLING",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": 1.85,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810443509811",
+   "mfr_sku": "JD-BALBOA-PRADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Junglepath  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Prado",
+   "matched_pointe": "CONTESSA SIENA/CHESTNUT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442854451",
+   "mfr_sku": "JD-BALBOA-EUCALYPTUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Koala  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Eucalyptus",
+   "matched_pointe": "CONTESSA SIENA/DILL",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426273843",
+   "mfr_sku": "JD-BALBOA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Balboa *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Del Mar",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$2.05",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442952755",
+   "mfr_sku": "JD-BALBOA-MARSTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Atoll  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Marston",
+   "matched_pointe": "CONTESSA SIENA/MERLOT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796280754227",
+   "mfr_sku": "JD-BALBOA-ERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Eon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Era",
+   "matched_pointe": "CONTESSA SIENA/IVORY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796281475123",
+   "mfr_sku": "JD-BALBOA-RAILROAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sandbar - Ironwood Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Balboa/Railroad",
+   "matched_pointe": "CONTESSA SIENA/BLACK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": 2.05,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452881459",
+   "mfr_sku": "JD-BIJOU-MARIONETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Shadows  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Marionette",
+   "matched_pointe": "SKINTEX SF POP/APRICOT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441642035",
+   "mfr_sku": "JD-ATHENA-VALHALLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Paradise  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810452783155",
+   "mfr_sku": "JD-BIJOU-CITRINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gemini - Topaz  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bijou/Citrine",
+   "matched_pointe": "SKINTEX SF POP/MINT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573434931",
+   "mfr_sku": "JD-ERICSON-LAZULI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Oceanic  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573664307",
+   "mfr_sku": "JD-ERICSON-RASPBERRY-BLUSH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441510963",
+   "mfr_sku": "JD-ATHENA-SNOW-PEAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Iguana - Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Athena",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580512819",
+   "mfr_sku": "JD-FRICK-BALTIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Gallery - Frigid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Frick",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Gallerie",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566160435",
+   "mfr_sku": "JD-DELRAY-STRIPE-THROW-VERDANT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Emerald  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Delray Stripe Throw",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sunset Social",
+   "proposed_cost": 299.0,
+   "tariff_passthrough": null,
+   "proposed_retail": 541.18,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582315059",
+   "mfr_sku": "JD-GEORGETTE-TAVERN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Rum  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582118451",
+   "mfr_sku": "JD-GEORGETTE-BEACH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seabreeze - Shoreline  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Georgette",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573795379",
+   "mfr_sku": "JD-ERICSON-SILVERSMITH",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Anvil  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573205555",
+   "mfr_sku": "JD-ERICSON-GOBLET",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Chalice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572976179",
+   "mfr_sku": "JD-ERICSON-CARMINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Fuchsia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810573860915",
+   "mfr_sku": "JD-ERICSON-SNOWBOUND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seafarer - Icebound  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ericson",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Valhalla",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810426798131",
+   "mfr_sku": "JD-BEVERLY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seagrass  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Beverly",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435219507",
+   "mfr_sku": "JD-ANITA-PRIMAVERA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Bloom  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456879155",
+   "mfr_sku": "JD-HEATHROWE-WALNUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Kukui  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Heathrowe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435055667",
+   "mfr_sku": "JD-ANITA-GERMAINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Lush  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795699122227",
+   "mfr_sku": "JD-ANITA-OLYMPIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Marathon Blackout  Commercial Drapery  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435088435",
+   "mfr_sku": "JD-ANITA-LUNAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Moonstone  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435022899",
+   "mfr_sku": "JD-ANITA-ENDURE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Resilient  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810435186739",
+   "mfr_sku": "JD-ANITA-POLISHED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Shimmering  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Anita",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Dreamscape Blackout",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.25",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456846387",
+   "mfr_sku": "JD-HEATHROWE-SEAFOAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell - Spume  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Heathrowe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Transatlantic",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810430369843",
+   "mfr_sku": "JD-CASSANDRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cassandra",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 32.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 58.82,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810581692467",
+   "mfr_sku": "JD-GENEVIEVE-VITALITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenity - Energy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Genevieve",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565636147",
+   "mfr_sku": "JD-DEBUSSY-FOLKLORE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenade - Legend  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Debussy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810565734451",
+   "mfr_sku": "JD-DEBUSSY-SPIRE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Serenade - Pagoda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Debussy",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Composed Collection",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571599923",
+   "mfr_sku": "JD-ECLIPSE-STREAMLINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Yacht  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571075635",
+   "mfr_sku": "JD-ECLIPSE-BENEDICT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Papaya  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571108403",
+   "mfr_sku": "JD-ECLIPSE-ECRU",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571272243",
+   "mfr_sku": "JD-ECLIPSE-LONE-WOLF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Solitary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571206707",
+   "mfr_sku": "JD-ECLIPSE-GALLER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Veranda  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810571632691",
+   "mfr_sku": "JD-ECLIPSE-WILLOW-TREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shadows - Weeping  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Eclipse",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$2.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542600243",
+   "mfr_sku": "JD-BRIGHTON-STEAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Geyser  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810542207027",
+   "mfr_sku": "JD-BRIGHTON-ADORATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shimmer - Orchid  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Brighton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Enlightenment",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283539507",
+   "mfr_sku": "JD-BARNUM-BLUE-DANUBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Danube Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445115443",
+   "mfr_sku": "JD-BARNUM-BLUE-DANUBE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Danube  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445148211",
+   "mfr_sku": "JD-BARNUM-CARBIDE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Hardpan  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445213747",
+   "mfr_sku": "JD-BARNUM-COTTONWOOD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Kapok  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283998259",
+   "mfr_sku": "JD-BARNUM-SCARLOTTI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Shorescape - Opera Texture Upholstery  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barnum *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579431475",
+   "mfr_sku": "JD-FLYNN-DIAMOND-DUST",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Soaring - Sparkle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Flynn",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572419123",
+   "mfr_sku": "JD-EQUINOX-APEROL-SPRITZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Campari  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572550195",
+   "mfr_sku": "JD-EQUINOX-GULF-STREAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Current  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572484659",
+   "mfr_sku": "JD-EQUINOX-ENCHANTED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Mystical  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572615731",
+   "mfr_sku": "JD-EQUINOX-HARBOR-HAZE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Seamist  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572451891",
+   "mfr_sku": "JD-EQUINOX-CONSTELLATION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Starfish  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810572648499",
+   "mfr_sku": "JD-EQUINOX-LIME-DAQUIRI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Solstice - Verdant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Equinox",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 65.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 118.55,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546139187",
+   "mfr_sku": "JD-CALIFA-BLACK-OLIVE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Tapenade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546761779",
+   "mfr_sku": "JD-CALIFA-MUSCOVADO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Turbinado  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546335795",
+   "mfr_sku": "JD-CALIFA-FAIRBLINDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Venetian  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546073651",
+   "mfr_sku": "JD-CALIFA-AVIVA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Vivacious  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547056691",
+   "mfr_sku": "JD-CALIFA-SALEM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Witchcraft  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546991155",
+   "mfr_sku": "JD-CALIFA-ROCK-GARDEN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Zen  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439381043",
+   "mfr_sku": "JD-ARIES-ESSENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Aroma  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439413811",
+   "mfr_sku": "JD-ARIES-LEXICON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Script  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439544883",
+   "mfr_sku": "JD-ARIES-SHOWSTOPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Spectacle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439446579",
+   "mfr_sku": "JD-ARIES-OAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Teakwood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7795702431795",
+   "mfr_sku": "JD-ARIES-ABACUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Starfish - Tidal Multi-Use  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aries",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.00",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545418291",
+   "mfr_sku": "JD-BUTLER-BUNNY-HILL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Steward - Meadow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Butler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545385523",
+   "mfr_sku": "JD-BUTLER-BASEL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Steward - Market  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Butler",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560786483",
+   "mfr_sku": "JD-COACHELLA-MOUNTAIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Pinnacle  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Mountain",
+   "matched_pointe": "GALLERIA KALOONG/STONE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560720947",
+   "mfr_sku": "JD-COACHELLA-IGUANA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Reptile  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Iguana",
+   "matched_pointe": "GALLERIA KALOONG/RESORT",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560655411",
+   "mfr_sku": "JD-COACHELLA-DUNE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Sanddrift  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Dune",
+   "matched_pointe": "GALLERIA KALOONG/HAZE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810579628083",
+   "mfr_sku": "JD-SHELBYSTRIPEROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Surfside  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546499635",
+   "mfr_sku": "JD-CALIFA-JAM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546696243",
+   "mfr_sku": "JD-CALIFA-MEAD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Honeydew  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546237491",
+   "mfr_sku": "JD-CALIFA-BROWNED-BUTTER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Caramel  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547122227",
+   "mfr_sku": "JD-CALIFA-SOREL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Chestnut  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546401331",
+   "mfr_sku": "JD-CALIFA-GARAM-MASALA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Curry  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547154995",
+   "mfr_sku": "JD-CALIFA-STATUETTE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Figurine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810546597939",
+   "mfr_sku": "JD-CALIFA-KNOX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Fortress  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810547253299",
+   "mfr_sku": "JD-CALIFA-SWEET-RED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sultan - Grenadine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Califa",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Smooth Sailing",
+   "proposed_cost": 62.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 113.12,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445770803",
+   "mfr_sku": "JD-BARRYMORE-CATS-EYE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Chrysoberyl  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Barrymore",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$4.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810575433779",
+   "mfr_sku": "JD-FAIRBANKS-GRAND-ILLUSION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunbeam - Mirage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Fairbanks",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$3.00",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437906483",
+   "mfr_sku": "JD-APOLLO-COCOA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunrise - Xocolatl  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439970867",
+   "mfr_sku": "JD-ARTEMIS-IONIAN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Aegean  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810556100659",
+   "mfr_sku": "JD-MANILOW-LIPSTICK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Bougainvillea  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Manilow *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hides & Textures",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$2.20",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810439905331",
+   "mfr_sku": "JD-ARTEMIS-CHAKRA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Energy  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440036403",
+   "mfr_sku": "JD-ARTEMIS-SISTINE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Fresco  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810440003635",
+   "mfr_sku": "JD-ARTEMIS-OLEANDER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunset - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Artemis",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560688179",
+   "mfr_sku": "JD-COACHELLA-GAVIAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Gavial",
+   "matched_pointe": "GALLERIA KALOONG/AVOCADO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560753715",
+   "mfr_sku": "JD-COACHELLA-MOCASSIN",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Palmfrond  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Mocassin",
+   "matched_pointe": "GALLERIA KALOONG/CAFE",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796287832115",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-DOVE-GREY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Seagull Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796288061491",
+   "mfr_sku": "JD-BENNETT-ROLLER-SHADE-STREETCAR",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunshade - Trolley Roller Shades  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560557107",
+   "mfr_sku": "JD-COACHELLA-BRAZIL-NUT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Cashew  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Brazil Nut",
+   "matched_pointe": "GALLERIA KALOONG/BAMBOO",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810560819251",
+   "mfr_sku": "JD-COACHELLA-MUD-MASK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Sunstone - Clay  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Coachella/Mud Mask",
+   "matched_pointe": "GALLERIA KALOONG/MINK",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": 1.45,
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810433941555",
+   "mfr_sku": "JD-CHECKERED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Trellis  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Checkered",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Monument",
+   "proposed_cost": 26.5,
+   "tariff_passthrough": "$0.75",
+   "proposed_retail": 47.96,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810564653107",
+   "mfr_sku": "JD-DANCIA-HOT-TROPIC",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Swaying - Equatorial  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810429452339",
+   "mfr_sku": "JD-CAGNEY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hollywood  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cagney",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Hollywood Babylon",
+   "proposed_cost": 28.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 51.58,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442330163",
+   "mfr_sku": "JD-AURELIUS-GALE-WINDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Tempest  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442297395",
+   "mfr_sku": "JD-AURELIUS-BEDSTRAW",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tamarind - Thatch  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Aurelius",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810558525491",
+   "mfr_sku": "JD-MARZIA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Teak  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Marzia",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 59.5,
+   "tariff_passthrough": "$2.00",
+   "proposed_retail": 107.69,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810582773811",
+   "mfr_sku": "JD-GODDESS-STRIPE-SPHINX",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tidal - Ruins  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Goddess Stripe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Mythology",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$0.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810437382195",
+   "mfr_sku": "JD-DALTON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tideline  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Dalton",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Sant\u00e9",
+   "proposed_cost": 52.5,
+   "tariff_passthrough": "$3.75",
+   "proposed_retail": 95.02,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810578382899",
+   "mfr_sku": "JD-SENECASTRIPE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tidepool  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Seneca Stripe",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aesthetics",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577924147",
+   "mfr_sku": "JD-FERRY-GIN-FIZZ",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Voyager - Limeade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ferry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566520883",
+   "mfr_sku": "JD-PERSHING",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tradewind  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Pershing",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen / Peak Performance",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810580676659",
+   "mfr_sku": "JD-SIMEONSTRIPEROLLERSHADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Tradewinds  Commercial Fabric  Los Angeles Fabrics",
+   "source": null,
+   "matched_pattern": null,
+   "matched_pointe": null,
+   "source_status": null,
+   "type": null,
+   "proposed_cost": null,
+   "tariff_passthrough": null,
+   "proposed_retail": null,
+   "will_load": false,
+   "block_reason": "unmatched"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566717491",
+   "mfr_sku": "JD-PETRAEUS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Koralia  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Petraeus",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Supreen",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": "$6.25",
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810543812659",
+   "mfr_sku": "JD-JERICHO-NUTELLA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kaimana - Cacao  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Jericho *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Clean Comfort",
+   "proposed_cost": 29.5,
+   "tariff_passthrough": "$1.75",
+   "proposed_retail": 53.39,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810545549363",
+   "mfr_sku": "JD-KONA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Kava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Kona",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Outdoor Oasis",
+   "proposed_cost": 44.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 80.54,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449047603",
+   "mfr_sku": "JD-BELVEDERE-CHARCOAL",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Lava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810441740339",
+   "mfr_sku": "JD-AURA-ARCADE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Boardwalk  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Arcade",
+   "matched_pointe": "BEYOND SYNERGY/PIER",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442068019",
+   "mfr_sku": "JD-AURA-GRAVITY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Abyss  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Gravity",
+   "matched_pointe": "BEYOND SYNERGY/VELLUM",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810442231859",
+   "mfr_sku": "JD-AURA-TOTEM",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Halcyon - Animist  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Aura/Totem",
+   "matched_pointe": "BEYOND SYNERGY/MAHOGANY",
+   "source_status": "STANDARD",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": 2,
+   "proposed_retail": 75.11,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563080243",
+   "mfr_sku": "JD-CRESSIDA-SHIFTING-SANDS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Mirage  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563047475",
+   "mfr_sku": "JD-CRESSIDA-CORAL-REEF",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Biolume  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810436268083",
+   "mfr_sku": "JD-CRESSIDA-ESPADRILLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Canvas  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810562981939",
+   "mfr_sku": "JD-CRESSIDA-AU-LAIT",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Conleche  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563014707",
+   "mfr_sku": "JD-CRESSIDA-CANDY-APPLE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Hibiscus - Guava  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cressida",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Luxury Lounge",
+   "proposed_cost": 36.5,
+   "tariff_passthrough": "$1.50",
+   "proposed_retail": 66.06,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444263475",
+   "mfr_sku": "JD-BANDOLIER-DIAMOND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Brilliant  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Diamond",
+   "matched_pointe": "SKINTEX SF RHYME/FROST",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7796283211827",
+   "mfr_sku": "JD-BANDOLIER-TOPANGA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Canyon Faux Leather  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Topanga",
+   "matched_pointe": "SKINTEX SF RHYME/BIRCH",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810444197939",
+   "mfr_sku": "JD-BANDOLIER-COPPERTOP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Triton - Emberglow  Commercial Fabric  Los Angeles Fabrics",
+   "source": "pointe-xref",
+   "matched_pattern": "Bandolier/Coppertop",
+   "matched_pointe": "SKINTEX SF RHYME/PENNY",
+   "source_status": "DISCONTINUED",
+   "type": "FAUX LEATHER",
+   "proposed_cost": 41.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 75.11,
+   "will_load": false,
+   "block_reason": "discontinued_or_mto"
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428633139",
+   "mfr_sku": "JD-BONNEVILLE-NAXOS",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Cyclades  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456584243",
+   "mfr_sku": "JD-BONNEVILLE-TULIP",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Hibiscus  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428403763",
+   "mfr_sku": "JD-BONNEVILLE-CONCORD",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Mangrove  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810427650099",
+   "mfr_sku": "JD-BONNEVILLE-CALYPSO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Reef  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428567603",
+   "mfr_sku": "JD-BONNEVILLE-LACE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Seashell  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428502067",
+   "mfr_sku": "JD-BONNEVILLE-FLAXSEED",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Sesame  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456420403",
+   "mfr_sku": "JD-BONNEVILLE-BLACK-PEPPER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Spice  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428436531",
+   "mfr_sku": "JD-BONNEVILLE-DANDELION",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Sunshine  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810428600371",
+   "mfr_sku": "JD-BONNEVILLE-LISBON",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Terracotta  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810456551475",
+   "mfr_sku": "JD-BONNEVILLE-RIO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Ventura - Tributary  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Bonneville",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Bonneville",
+   "proposed_cost": 39.5,
+   "tariff_passthrough": "$15.00",
+   "proposed_retail": 71.49,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810449244211",
+   "mfr_sku": "JD-BELVEDERE-TERRA-COTTA",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vista - Brick  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Belvedere *",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Urban Upholstery",
+   "proposed_cost": 24.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 44.34,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574843955",
+   "mfr_sku": "JD-ESPRIT-WONDERLAND",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Eden  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810574581811",
+   "mfr_sku": "JD-ESPRIT-MARTINI",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Vivacity - Limeade  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Esprit",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Esprit",
+   "proposed_cost": 49.5,
+   "tariff_passthrough": "$2.25",
+   "proposed_retail": 89.59,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577891379",
+   "mfr_sku": "JD-FERRY-EMINENCE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Voyager - Summit  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ferry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577858611",
+   "mfr_sku": "JD-FERRY-DESIREE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Voyager - Yearning  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ferry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810445934643",
+   "mfr_sku": "JD-FERRY",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Voyager  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ferry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810566062131",
+   "mfr_sku": "JD-PEAK",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Volcano  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Peak",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Elements",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": "$3.50",
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810577825843",
+   "mfr_sku": "JD-FERRY-CORNICE",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Voyager - Eaves  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Ferry",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Aspects of Light",
+   "proposed_cost": 16.5,
+   "tariff_passthrough": "$0.35",
+   "proposed_retail": 29.86,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563309619",
+   "mfr_sku": "JD-CRESTA-NEGRITO",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Ebony  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  },
+  {
+   "shopify_id": "gid://shopify/Product/7810563244083",
+   "mfr_sku": "JD-CRESTA-FALLING-WATER",
+   "dw_sku": null,
+   "vendor": "Los Angeles Fabrics",
+   "shopify_status": "ACTIVE",
+   "current_cost": null,
+   "private_label_title": "Wavecrest - Waterfall  Commercial Fabric  Los Angeles Fabrics",
+   "source": "jd-ownline",
+   "matched_pattern": "Cresta",
+   "matched_pointe": null,
+   "source_status": "IN-LINE",
+   "type": "Destination Unknown",
+   "proposed_cost": 42.5,
+   "tariff_passthrough": null,
+   "proposed_retail": 76.92,
+   "will_load": true,
+   "block_reason": null
+  }
+ ]
+}
\ No newline at end of file
diff --git a/vendor-pricelists/jd-ownline-prices.json b/vendor-pricelists/jd-ownline-prices.json
new file mode 100644
index 0000000..6e4a940
--- /dev/null
+++ b/vendor-pricelists/jd-ownline-prices.json
@@ -0,0 +1 @@
+[{"pattern": "Abraxas", "collection": "Transatlantic", "price": 39.5, "tariff": "$2.00"}, {"pattern": "Academy Velvet", "collection": "Academy Velvet", "price": 55.5, "tariff": "$1.50"}, {"pattern": "Addison", "collection": "Wilshire", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Adelaide", "collection": "Adelaide", "price": 32.5, "tariff": "$0.75"}, {"pattern": "Aesop", "collection": "Aesthetics", "price": 33.5, "tariff": "$1.00"}, {"pattern": "Akira", "collection": "Outdoor Oasis", "price": 49.5, "tariff": "n/a"}, {"pattern": "Alastair", "collection": "Tekloom", "price": 54.5, "tariff": "$2.55"}, {"pattern": "Alden +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Alessandro", "collection": "Del Mar", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Aleutian", "collection": "Monument", "price": 43.5, "tariff": "$2.15"}, {"pattern": "Alexander", "collection": "Aesthetics", "price": 32.5, "tariff": "$1.00"}, {"pattern": "Alexey", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Alice +", "collection": "Aesthetics", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Allegro", "collection": "Nocturne Sheer", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Alsace +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Amara", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Amazonia *", "collection": "Valhalla", "price": 43.5, "tariff": "$2.15"}, {"pattern": "Anastasia", "collection": "Moxie", "price": 59.5, "tariff": "$2.35"}, {"pattern": "Andorra Velvet", "collection": "Moxie", "price": 44.5, "tariff": "$4.25"}, {"pattern": "Anita", "collection": "Dreamscape Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Annalisa", "collection": "Enlightenment", "price": 24.5, "tariff": "$0.75"}, {"pattern": "Annendale *", "collection": "Wilshire", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Antigua", "collection": "Outdoor Oasis", "price": 44.5, "tariff": "n/a"}, {"pattern": "Antoni", "collection": "Wilderie", "price": 39.5, "tariff": "$1.75"}, {"pattern": "Apache", "collection": "True West", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Aphrodite", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Archimedes", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Aries", "collection": "Mythology", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Arietta", "collection": "Nocturne Sheer", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Aristotle", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Artemis", "collection": "Mythology", "price": 24.5, "tariff": "$0.75"}, {"pattern": "Arthur +", "collection": "Aesthetics", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Ashanti", "collection": "Tactile Textures", "price": 26.5, "tariff": "$2.75"}, {"pattern": "Ashanti With Crypton", "collection": "Sant\u00e9", "price": 49.5, "tariff": "$3.50"}, {"pattern": "Ashton", "collection": "Decorative Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Astrid +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Athena", "collection": "Mythology", "price": 24.5, "tariff": "$0.75"}, {"pattern": "Aura *", "collection": "Elements", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Aurelius", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Avanti", "collection": "Avanti", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Aventine *", "collection": "Glitz & glam / Fundamentals", "price": 32.5, "tariff": "$1.60"}, {"pattern": "Bahara", "collection": "Rafiki Raffia", "price": 59.5, "tariff": "$4.00"}, {"pattern": "Balboa *", "collection": "Del Mar", "price": 42.5, "tariff": "$2.05"}, {"pattern": "Bandolier *", "collection": "Gallerie", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Barclay", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Barnum *", "collection": "Outdoor Oasis", "price": 39.5, "tariff": "n/a"}, {"pattern": "Barrymore", "collection": "Hollywood Babylon", "price": 36.5, "tariff": "$4.50"}, {"pattern": "Bartoli", "collection": "Moxie", "price": 49.5, "tariff": "$3.25"}, {"pattern": "Basketweave", "collection": "Gallerie", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Basquetta *", "collection": "Faux Leather 4 / True West", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Bastion", "collection": "Nocturne Sheer", "price": 24.5, "tariff": "$2.25"}, {"pattern": "Bellamy", "collection": "Coach Collection", "price": 39.5, "tariff": "$1.45"}, {"pattern": "Belmont *", "collection": "Le Cirque", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Belvedere *", "collection": "Urban Upholstery", "price": 24.5, "tariff": "$3.50"}, {"pattern": "Bergdorf", "collection": "Coco Collection", "price": 32.5, "tariff": "$3.75"}, {"pattern": "Bern", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Bernard", "collection": "Coco Collection", "price": 32.5, "tariff": "$2.50"}, {"pattern": "Betty", "collection": "Sheerly Elegant", "price": 16.5, "tariff": "$0.50"}, {"pattern": "Beverly", "collection": "Dreamscape Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Bianca *", "collection": "Tactile Textures", "price": 26.5, "tariff": "$2.75"}, {"pattern": "Bijou *", "collection": "Escapade", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Bodie", "collection": "True West", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Bogart", "collection": "Hollywood Babylon", "price": 29.5, "tariff": "$3.75"}, {"pattern": "Bolivar *", "collection": "Durango", "price": 41.5, "tariff": "$1.85"}, {"pattern": "Bond", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Bonneville", "collection": "Bonneville", "price": 39.5, "tariff": "$15.00"}, {"pattern": "Boone", "collection": "Durango", "price": 28.5, "tariff": "$3.00"}, {"pattern": "Borrego", "collection": "Coach Collection", "price": 36.5, "tariff": "$1.15"}, {"pattern": "Boulevard *", "collection": "Wilshire", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Bowie", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Bradford", "collection": "Dreamscape Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Bradley", "collection": "Supreen / Peak Performance", "price": 34.5, "tariff": "$3.50"}, {"pattern": "Brahms", "collection": "Composed Collection", "price": 49.5, "tariff": "n/a"}, {"pattern": "Brannan", "collection": "True West", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Breuer", "collection": "Gallerie", "price": 32.5, "tariff": "$3.50"}, {"pattern": "Brighton", "collection": "Enlightenment", "price": 26.5, "tariff": "$1.00"}, {"pattern": "Bristol *", "collection": "Artisan", "price": 28.5, "tariff": "$1.60"}, {"pattern": "Brixton Stripe", "collection": "Greener Pastures", "price": 55.5, "tariff": "$3.15"}, {"pattern": "Broadcast", "collection": "Peak Performance", "price": 32.5, "tariff": "$1.15"}, {"pattern": "Broadway", "collection": "Metro", "price": 59.5, "tariff": "n/a"}, {"pattern": "Brush Stroke *", "collection": "Wanderlust", "price": 46.5, "tariff": "$4.50"}, {"pattern": "Bryce", "collection": "Monument", "price": 42.5, "tariff": "$2.05"}, {"pattern": "Butler", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Byron", "collection": "Writer\u2019s Block", "price": 42.5, "tariff": "$2.50"}, {"pattern": "Cabana Sheer", "collection": "Destination Unknown", "price": 55.5, "tariff": "$10.00"}, {"pattern": "Cagney", "collection": "Hollywood Babylon", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Caldwell", "collection": "Aspects of Light", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Califa", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.00"}, {"pattern": "Calista", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Callie +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Candor", "collection": "Greener Pastures", "price": 55.5, "tariff": "$3.15"}, {"pattern": "Canopy", "collection": "Nocturne Sheer", "price": 29.5, "tariff": "$3.35"}, {"pattern": "Capricorn", "collection": "Glitz & Glam", "price": 36.5, "tariff": "$1.85"}, {"pattern": "Cara", "collection": "Elements", "price": 42.5, "tariff": "$3.50"}, {"pattern": "Carrera", "collection": "Hollywood Babylon", "price": 39.5, "tariff": "$4.00"}, {"pattern": "Carta", "collection": "Gallerie", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Carville", "collection": "Urban Upholstery", "price": 29.5, "tariff": "$4.50"}, {"pattern": "Cassandra", "collection": "Enlightenment", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Cassius *", "collection": "Cassius", "price": 29.5, "tariff": "$1.75"}, {"pattern": "Cecily", "collection": "Transatlantic", "price": 39.5, "tariff": "$2.00"}, {"pattern": "Celestina", "collection": "Enlightenment", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Central Park", "collection": "Metro", "price": 22.5, "tariff": "$2.50"}, {"pattern": "Cestino", "collection": "The New Rattan", "price": 32.5, "tariff": "$1.65"}, {"pattern": "Chainmail", "collection": "Artisan", "price": 52.5, "tariff": "$2.45"}, {"pattern": "Chamorro", "collection": "The New Rattan", "price": 49.5, "tariff": "$1.75"}, {"pattern": "Chaplin", "collection": "Hollywood Babylon", "price": 29.5, "tariff": "$3.75"}, {"pattern": "Chateau", "collection": "Chateau", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Checkered", "collection": "Monument", "price": 26.5, "tariff": "$0.75"}, {"pattern": "Cheviot *", "collection": "Wilshire", "price": 59.5, "tariff": "$2.70"}, {"pattern": "Chiara", "collection": "Smooth Sailing", "price": 72.5, "tariff": "$4.15"}, {"pattern": "Chopin", "collection": "Composed Collection", "price": 59.5, "tariff": "n/a"}, {"pattern": "Chronicle", "collection": "Writer\u2019s Block II", "price": 42.5, "tariff": "$2.50"}, {"pattern": "Cicero", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Clason", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Cleo +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Coachella", "collection": "Wilderie", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Cobblestone", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Coco", "collection": "Coco Collection", "price": 42.5, "tariff": "$4.50"}, {"pattern": "Confluence", "collection": "Peak Performance", "price": 32.5, "tariff": "$1.15"}, {"pattern": "Cosmo Velvet", "collection": "Moxie", "price": 29.5, "tariff": "$2.00"}, {"pattern": "Costa", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Crawford", "collection": "Coach Collection", "price": 39.5, "tariff": "$1.45"}, {"pattern": "Cressida", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Cresta", "collection": "Destination Unknown", "price": 42.5, "tariff": "n/a"}, {"pattern": "Crusoe *", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Dalton", "collection": "Sant\u00e9", "price": 52.5, "tariff": "$3.75"}, {"pattern": "Dante", "collection": "Sheerly Elegant", "price": 20.5, "tariff": "$0.50"}, {"pattern": "Dauphinay", "collection": "Winsome Collection", "price": 19.5, "tariff": "$2.00"}, {"pattern": "Daydream", "collection": "Elements", "price": 42.5, "tariff": "$3.50"}, {"pattern": "Debussy", "collection": "Composed Collection", "price": 59.5, "tariff": "n/a"}, {"pattern": "Delilah +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Delray Stripe Throw", "collection": "Sunset Social", "price": 299.0, "tariff": "n/a"}, {"pattern": "Demeter", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Denzel +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Diana +", "collection": "Aesthetics", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Dieguito", "collection": "Del Mar", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Dietrich", "collection": "Hollywood Babylon", "price": 28.5, "tariff": "$3.25"}, {"pattern": "Diocles", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Dionysus", "collection": "Mythology", "price": 32.5, "tariff": "$1.25"}, {"pattern": "Dolomieu", "collection": "Peak Performance", "price": 35.5, "tariff": "$1.35"}, {"pattern": "Domingo", "collection": "Hollywood Babylon", "price": 39.5, "tariff": "$4.00"}, {"pattern": "Downtown", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Doyle +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Duvall", "collection": "Dreamscape Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Dynasty", "collection": "Dynasty", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Easter Island *", "collection": "Travelogue", "price": 36.5, "tariff": "$3.50"}, {"pattern": "Eclipse", "collection": "Aspects of Light", "price": 26.5, "tariff": "$2.75"}, {"pattern": "Elgar", "collection": "Composed Collection", "price": 59.5, "tariff": "n/a"}, {"pattern": "Ellia", "collection": "Smooth Sailing", "price": 72.5, "tariff": "$4.15"}, {"pattern": "Eno", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Enya", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Equinox", "collection": "Sant\u00e9", "price": 65.5, "tariff": "n/a"}, {"pattern": "Erasmus", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Ericson", "collection": "Valhalla", "price": 26.5, "tariff": "$0.75"}, {"pattern": "Escalante *", "collection": "Escapade", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Esprit", "collection": "Esprit", "price": 49.5, "tariff": "$2.25"}, {"pattern": "Estate", "collection": "Elements", "price": 42.5, "tariff": "$3.50"}, {"pattern": "Everly", "collection": "Smooth Sailing", "price": 39.5, "tariff": "$1.25"}, {"pattern": "Fairbanks", "collection": "Hollywood Babylon", "price": 26.5, "tariff": "$3.00"}, {"pattern": "Fairfax *", "collection": "Wilshire", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Fairway", "collection": "Artisan", "price": 52.5, "tariff": "$2.45"}, {"pattern": "Fando", "collection": "Rafiki Raffia", "price": 59.5, "tariff": "$4.00"}, {"pattern": "Federico *", "collection": "Monument", "price": 43.5, "tariff": "$2.15"}, {"pattern": "Felisa", "collection": "Sant\u00e9", "price": 49.5, "tariff": "$3.50"}, {"pattern": "Ferry", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Fiji", "collection": "Outdoor Oasis", "price": 47.5, "tariff": "n/a"}, {"pattern": "Finnegan", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Fiore", "collection": "Destination Unknown", "price": 49.5, "tariff": "n/a"}, {"pattern": "Firenze Texturo", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.75"}, {"pattern": "Fitzgerald", "collection": "Writer\u2019s Block", "price": 29.5, "tariff": "$1.80"}, {"pattern": "Flanders *", "collection": "Urban Upholstery", "price": 24.5, "tariff": "$3.00"}, {"pattern": "Flourish", "collection": "Transatlantic", "price": 39.5, "tariff": "$1.50"}, {"pattern": "Flynn", "collection": "Hollywood Babylon", "price": 26.5, "tariff": "$3.00"}, {"pattern": "Fonda", "collection": "Hollywood Babylon", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Franciscan *", "collection": "Moxie", "price": 43.5, "tariff": "$2.15"}, {"pattern": "Freya", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Frick", "collection": "Gallerie", "price": 32.5, "tariff": "$3.50"}, {"pattern": "Fulton", "collection": "Metro", "price": 59.5, "tariff": "n/a"}, {"pattern": "Gable", "collection": "Hollywood Babylon", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Gala", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.25"}, {"pattern": "Garbo", "collection": "Hollywood Babylon", "price": 29.5, "tariff": "$3.75"}, {"pattern": "Genevieve", "collection": "Enlightenment", "price": 26.5, "tariff": "$1.00"}, {"pattern": "Genova", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.25"}, {"pattern": "Georgette", "collection": "Enlightenment", "price": 26.5, "tariff": "$1.00"}, {"pattern": "Ghepardo", "collection": "Del Mar", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Gianni", "collection": "Nocturne", "price": 22.5, "tariff": "$2.25"}, {"pattern": "Goddess Stripe", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Grant", "collection": "Supreen", "price": 36.5, "tariff": "$5.85"}, {"pattern": "Griffin *", "collection": "Le Cirque", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Grosvenor *", "collection": "Greener Pastures", "price": 55.5, "tariff": "$3.15"}, {"pattern": "Hackensack", "collection": "Smooth Sailing", "price": 39.5, "tariff": "$1.25"}, {"pattern": "Hamilton Stripe", "collection": "Destination Unknown", "price": 36.5, "tariff": "n/a"}, {"pattern": "Hampton", "collection": "Hampton", "price": 26.5, "tariff": "$4.00"}, {"pattern": "Handel +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Hanover *", "collection": "Urban Upholstery", "price": 24.5, "tariff": "$3.00"}, {"pattern": "Harmonia Bells", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Harriet", "collection": "Artisan", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Harrington *", "collection": "Urban Upholstery", "price": 24.5, "tariff": "$3.50"}, {"pattern": "Hatch", "collection": "Aesthetics / Sheerly Elegant", "price": 32.5, "tariff": "$1.00"}, {"pattern": "Hawthorne", "collection": "Writer\u2019s Block", "price": 42.5, "tariff": "$2.50"}, {"pattern": "Hayworth", "collection": "Hayworth", "price": 59.5, "tariff": "$4.50"}, {"pattern": "Hearst *", "collection": "Le Cirque", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Heathrowe", "collection": "Transatlantic", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Heirloom", "collection": "Smooth Sailing", "price": 36.5, "tariff": "$1.00"}, {"pattern": "Helena", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Helvetia", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Hemingway", "collection": "Windowscapes", "price": 15.5, "tariff": "$0.25"}, {"pattern": "Hera", "collection": "Mythology", "price": 32.5, "tariff": "$2.50"}, {"pattern": "Highland", "collection": "Highland", "price": 79.5, "tariff": "$7.50"}, {"pattern": "Hikaru", "collection": "Outdoor Oasis", "price": 47.5, "tariff": "n/a"}, {"pattern": "Hollis *", "collection": "Glitz & Glam / Hides & Textures /", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Hollywood", "collection": "Hollywood", "price": 79.5, "tariff": "$7.50"}, {"pattern": "Homer", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Horatius", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Icarus", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Iconica *", "collection": "Escapade", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Impala *", "collection": "Valhalla", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Indulgence", "collection": "Indulgence", "price": 49.5, "tariff": "$3.50"}, {"pattern": "Infatuation *", "collection": "Escapade", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Iommi", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Jacinto", "collection": "Wilderie", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Jericho *", "collection": "Clean Comfort", "price": 29.5, "tariff": "$1.75"}, {"pattern": "Jillette", "collection": "Winsome Collection", "price": 19.5, "tariff": "$2.00"}, {"pattern": "Julian *", "collection": "Del Mar", "price": 42.5, "tariff": "$2.05"}, {"pattern": "Juno", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Kaa *", "collection": "Monument", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Kabuki", "collection": "Deco Velvet", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Karma Hide *", "collection": "Karma Collection", "price": 72.5, "tariff": "$4.00"}, {"pattern": "Karma Leather *", "collection": "Karma Collection", "price": 72.5, "tariff": "$4.00"}, {"pattern": "Karma Piglet *", "collection": "Karma Collection", "price": 72.5, "tariff": "$4.00"}, {"pattern": "Karma Techno *", "collection": "Karma Collection", "price": 72.5, "tariff": "$4.00"}, {"pattern": "Keaton", "collection": "Hollywood Babylon", "price": 28.5, "tariff": "$3.25"}, {"pattern": "Kensington", "collection": "Enlightenment", "price": 24.5, "tariff": "$3.00"}, {"pattern": "Kingston +", "collection": "Kingston", "price": 29.5, "tariff": "$4.00"}, {"pattern": "Kirby", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Kona", "collection": "Outdoor Oasis", "price": 44.5, "tariff": "n/a"}, {"pattern": "Kos", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Lafayette", "collection": "Supreen / Peak Performance", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Lana", "collection": "Sant\u00e9", "price": 65.5, "tariff": "n/a"}, {"pattern": "Landon *", "collection": "Clean Comfort", "price": 29.5, "tariff": "n/a"}, {"pattern": "Landscape", "collection": "Tekloom", "price": 54.5, "tariff": "$2.55"}, {"pattern": "Laramee", "collection": "Laramee", "price": 26.5, "tariff": "$4.00"}, {"pattern": "Legends", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Lennox", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Leon", "collection": "Deco Velvet", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Leonidas", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Lexus", "collection": "Fundamentals", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Libretto +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Linoto", "collection": "Elements", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Linus", "collection": "Aesthetics / Sheerly Elegant", "price": 32.5, "tariff": "$1.25"}, {"pattern": "Livia Sheer", "collection": "Smooth Sailing", "price": 49.5, "tariff": "$2.65"}, {"pattern": "Lloyd +", "collection": "Aesthetics", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Lobos", "collection": "Artisan", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Loma", "collection": "Sant\u00e9", "price": 59.5, "tariff": "$3.25"}, {"pattern": "Lombardo", "collection": "Destination Unknown", "price": 49.5, "tariff": "n/a"}, {"pattern": "Loop", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Lorenzo Linq", "collection": "Smooth Sailing", "price": 76.5, "tariff": "$4.90"}, {"pattern": "Lovell", "collection": "Coco Collection", "price": 49.5, "tariff": "$5.50"}, {"pattern": "Luciano", "collection": "Hollywood Babylon", "price": 39.5, "tariff": "$4.00"}, {"pattern": "Macarthur", "collection": "Supreen", "price": 32.5, "tariff": "$5.50"}, {"pattern": "Mackay", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Madagascar", "collection": "The New Rattan", "price": 49.5, "tariff": "$1.75"}, {"pattern": "Madison", "collection": "Metro", "price": 59.5, "tariff": "n/a"}, {"pattern": "Magellan", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Mahler", "collection": "Composed Collection", "price": 59.5, "tariff": "n/a"}, {"pattern": "Maia", "collection": "Sheerly Elegant", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Makita", "collection": "Rafiki Raffia", "price": 59.5, "tariff": "$4.00"}, {"pattern": "Malba", "collection": "Peak Performance", "price": 35.5, "tariff": "$1.35"}, {"pattern": "Malibu *", "collection": "Elements", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Mancuso", "collection": "Coco Collection", "price": 42.5, "tariff": "$4.50"}, {"pattern": "Manhattan", "collection": "Glitz & Glam", "price": 36.5, "tariff": "$1.85"}, {"pattern": "Manilow *", "collection": "Hides & Textures", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Manzanera", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Marbella", "collection": "Destination Unknown", "price": 36.5, "tariff": "n/a"}, {"pattern": "Marco Stripe", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.25"}, {"pattern": "Margaux", "collection": "Destination Unknown", "price": 49.5, "tariff": "n/a"}, {"pattern": "Maricopa", "collection": "Durango", "price": 28.5, "tariff": "$2.25"}, {"pattern": "Marienbad", "collection": "Marienbad", "price": 59.5, "tariff": "$2.00"}, {"pattern": "Marshall", "collection": "Supreen", "price": 36.5, "tariff": "$5.85"}, {"pattern": "Martine *", "collection": "Tactile Textures", "price": 26.5, "tariff": "$2.75"}, {"pattern": "Marzia", "collection": "Aesthetics", "price": 59.5, "tariff": "$2.00"}, {"pattern": "Maverick", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Mcnair", "collection": "Supreen", "price": 34.5, "tariff": "$5.60"}, {"pattern": "Memoir", "collection": "Writer\u2019s Block II", "price": 42.5, "tariff": "$2.50"}, {"pattern": "Memory", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Mendocino", "collection": "Mendocino", "price": 29.5, "tariff": "$1.50"}, {"pattern": "Mercutio", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Merino", "collection": "Merino", "price": 24.5, "tariff": "$2.00"}, {"pattern": "Milos", "collection": "Aesthetics", "price": 39.5, "tariff": "$1.25"}, {"pattern": "Milton", "collection": "Writer\u2019s Block", "price": 29.5, "tariff": "$1.80"}, {"pattern": "Minerva", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Minoa", "collection": "Deco Velvet", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Minstrel", "collection": "Smooth Sailing", "price": 36.5, "tariff": "$1.00"}, {"pattern": "Mirage *", "collection": "Wilderie", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Moira", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Molina", "collection": "Wilshire", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Monogram", "collection": "Urban Upholstery", "price": 29.5, "tariff": "$4.00"}, {"pattern": "Montauk Herringbone Throw", "collection": "Sunset Social", "price": 199.0, "tariff": "n/a"}, {"pattern": "Monte Carlo", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Montecito Stripe Throw", "collection": "Sunset Social", "price": 299.0, "tariff": "n/a"}, {"pattern": "Morrison", "collection": "Writer\u2019s Block III", "price": 42.5, "tariff": "$2.80"}, {"pattern": "Murakami", "collection": "Writer\u2019s Block III", "price": 42.5, "tariff": "$2.80"}, {"pattern": "Musings", "collection": "Mythology", "price": 32.5, "tariff": "$0.50"}, {"pattern": "Mykonos", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Nala +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Napa *", "collection": "Durango", "price": 26.5, "tariff": "$1.55"}, {"pattern": "Native Palm", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Nelson *", "collection": "Durango", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Nessa *", "collection": "Nessa Chenille", "price": 24.5, "tariff": "$2.00"}, {"pattern": "Newport Textured Throw", "collection": "Sunset Social", "price": 199.0, "tariff": "n/a"}, {"pattern": "Newton", "collection": "Coach Collection", "price": 32.5, "tariff": "$1.00"}, {"pattern": "Nimitz", "collection": "Supreen", "price": 32.5, "tariff": "$5.35"}, {"pattern": "Nirvana +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Nolen *", "collection": "Wilshire", "price": 59.5, "tariff": "$2.70"}, {"pattern": "Octavius", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Odysseus", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Omar", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.00"}, {"pattern": "Omega *", "collection": "Glitz & Glam", "price": 49.5, "tariff": "$2.00"}, {"pattern": "Ondine +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Orwell", "collection": "Writer\u2019s Block / Peak Performance", "price": 34.5, "tariff": "$2.00"}, {"pattern": "Osbourne", "collection": "Aspects of Light", "price": 16.5, "tariff": "$0.35"}, {"pattern": "Oskar", "collection": "Coco Collection", "price": 32.5, "tariff": "$3.75"}, {"pattern": "Ostara", "collection": "Mythology", "price": 49.5, "tariff": "$0.50"}, {"pattern": "Outback *", "collection": "Durango", "price": 28.5, "tariff": "$1.60"}, {"pattern": "Pacifica", "collection": "Outdoor Oasis", "price": 47.5, "tariff": "n/a"}, {"pattern": "Padova", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Palagio", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.00"}, {"pattern": "Palo", "collection": "Sant\u00e9", "price": 42.5, "tariff": "$4.00"}, {"pattern": "Parashant *", "collection": "Valhalla", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Parkside *", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Pasha", "collection": "Nocturne Blackout", "price": 29.5, "tariff": "$3.90"}, {"pattern": "Pattaya", "collection": "The New Rattan", "price": 59.5, "tariff": "$2.00"}, {"pattern": "Patton", "collection": "Supreen", "price": 29.5, "tariff": "$5.00"}, {"pattern": "Paxton", "collection": "Nocturne Blackout", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Peak", "collection": "Elements", "price": 42.5, "tariff": "$3.50"}, {"pattern": "Pebble Beach", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Perry", "collection": "Sant\u00e9", "price": 49.5, "tariff": "$3.50"}, {"pattern": "Persephone", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Perseus", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Pershing", "collection": "Supreen / Peak Performance", "price": 36.5, "tariff": "$3.50"}, {"pattern": "Petaluma", "collection": "Valhalla", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Petraeus", "collection": "Supreen", "price": 44.5, "tariff": "$6.25"}, {"pattern": "Philippe", "collection": "Nocturne Sheer", "price": 24.5, "tariff": "$2.25"}, {"pattern": "Phineas", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Phoebe +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Phoenix", "collection": "Phoenix", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Piccadilly", "collection": "Tekloom", "price": 52.5, "tariff": "$2.45"}, {"pattern": "Piccard", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Pickwick", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Pismo Transitional Throw", "collection": "Sunset Social", "price": 299.0, "tariff": "n/a"}, {"pattern": "Plato", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Plume", "collection": "Enlightenment", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Plutarch", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Poe", "collection": "Writer\u2019s Block", "price": 29.5, "tariff": "$1.80"}, {"pattern": "Polybius", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Porter", "collection": "Porter", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Portofino", "collection": "Destination Unknown", "price": 42.5, "tariff": "n/a"}, {"pattern": "Portola *", "collection": "Valhalla", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Pothos", "collection": "Destination Unknown", "price": 55.5, "tariff": "n/a"}, {"pattern": "Presidio *", "collection": "Del Mar", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Presley *", "collection": "True West", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Priscilla", "collection": "Enlightenment", "price": 24.5, "tariff": "$0.75"}, {"pattern": "Prot\u00e9g\u00e9", "collection": "Urban Upholstery", "price": 29.5, "tariff": "$3.75"}, {"pattern": "Providence *", "collection": "Wilderie", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Pullman", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Ramona +", "collection": "Wanderlust", "price": 28.5, "tariff": "$3.00"}, {"pattern": "Rancho Deluxe *", "collection": "Wilderie", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Rattanica", "collection": "The New Rattan", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Ravenna", "collection": "Transatlantic", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Reed", "collection": "The New Rattan", "price": 56.5, "tariff": "$1.75"}, {"pattern": "Refugio", "collection": "Durango", "price": 29.5, "tariff": "$1.45"}, {"pattern": "Regan", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Reginald", "collection": "Outdoor Oasis", "price": 44.5, "tariff": "n/a"}, {"pattern": "Rembrandt", "collection": "Tekloom", "price": 54.5, "tariff": "$2.55"}, {"pattern": "Remo", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.00"}, {"pattern": "Renata", "collection": "Enlightenment", "price": 24.5, "tariff": "$0.75"}, {"pattern": "Renoir", "collection": "Renoir", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Rhodes", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Rialto", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.25"}, {"pattern": "Rio", "collection": "Decorative Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Riviera Sheer", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.75"}, {"pattern": "Ronan", "collection": "Greener Pastures", "price": 69.5, "tariff": "$3.75"}, {"pattern": "Rooney", "collection": "Smooth Sailing", "price": 39.5, "tariff": "$1.25"}, {"pattern": "Roosevelt", "collection": "Monument", "price": 26.5, "tariff": "$0.75"}, {"pattern": "Roquet", "collection": "Artisan", "price": 52.5, "tariff": "$2.45"}, {"pattern": "Rowan *", "collection": "Wanderlust", "price": 24.5, "tariff": "$2.50"}, {"pattern": "Roxbury", "collection": "Decorative Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Royce *", "collection": "Wanderlust", "price": 46.5, "tariff": "$4.00"}, {"pattern": "Russell", "collection": "Artisan", "price": 52.5, "tariff": "$2.45"}, {"pattern": "Salerno Stripe", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Salamanca", "collection": "Hyphyn", "price": 39.5, "tariff": "$2.50"}, {"pattern": "Salome", "collection": "Windowscapes", "price": 15.5, "tariff": "$0.25"}, {"pattern": "Samburu *", "collection": "Durango", "price": 29.5, "tariff": "$1.75"}, {"pattern": "San Juan", "collection": "True West", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Sandoval", "collection": "Sandoval", "price": 49.5, "tariff": "$5.00"}, {"pattern": "Sandro", "collection": "Smooth Sailing", "price": 59.5, "tariff": "$2.25"}, {"pattern": "Santa Cruz", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Santa Fe", "collection": "Hyphyn", "price": 39.5, "tariff": "$2.50"}, {"pattern": "Santi +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Satchel *", "collection": "Clean Comfort", "price": 29.5, "tariff": "$1.75"}, {"pattern": "Saturn", "collection": "Tekloom", "price": 54.5, "tariff": "$2.55"}, {"pattern": "Saunter *", "collection": "Travelogue", "price": 32.5, "tariff": "$3.25"}, {"pattern": "Sawyer", "collection": "Smooth Sailing", "price": 39.5, "tariff": "$1.25"}, {"pattern": "Sconset Check Throw", "collection": "Sunset Social", "price": 299.0, "tariff": "n/a"}, {"pattern": "Seabreeze", "collection": "Smooth Sailing", "price": 76.5, "tariff": "$4.90"}, {"pattern": "Secret Garden", "collection": "Enlightenment", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Seidel +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Selma", "collection": "Fundamentals", "price": 36.5, "tariff": "$2.20"}, {"pattern": "Seneca Stripe", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Seraphina", "collection": "Winsome Collection", "price": 19.5, "tariff": "$2.00"}, {"pattern": "Setaria", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Shaka", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Shane", "collection": "Coach Collection", "price": 39.5, "tariff": "$1.45"}, {"pattern": "Shockley +", "collection": "Blackout", "price": 16.5, "tariff": "$4.00"}, {"pattern": "Sierra", "collection": "Durango", "price": 28.5, "tariff": "$2.50"}, {"pattern": "Signature", "collection": "Writer\u2019s Block II", "price": 42.5, "tariff": "$2.50"}, {"pattern": "Silian", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Simone Stripe", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.75"}, {"pattern": "Siskel", "collection": "Glitz & Glam", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Skyline *", "collection": "Wilshire", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Slater Stripe", "collection": "Destination Unknown", "price": 36.5, "tariff": "n/a"}, {"pattern": "Sloane", "collection": "Urban Upholstery", "price": 29.5, "tariff": "$4.25"}, {"pattern": "Sobe *", "collection": "Escapade", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Socrates", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Soho", "collection": "Decorative Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Sojourn *", "collection": "Travelogue", "price": 32.5, "tariff": "$3.25"}, {"pattern": "Solana *", "collection": "Del Mar", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Solange *", "collection": "Tactile Textures", "price": 26.5, "tariff": "$2.75"}, {"pattern": "Soledad", "collection": "Soledad", "price": 32.5, "tariff": "$1.50"}, {"pattern": "Solstice", "collection": "Sant\u00e9", "price": 65.5, "tariff": "n/a"}, {"pattern": "Spellbound", "collection": "Escapade", "price": 49.5, "tariff": "$1.75"}, {"pattern": "Spriggan", "collection": "Dreamscape Sheer", "price": 26.5, "tariff": "$1.25"}, {"pattern": "Spurlock *", "collection": "Durango", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Static", "collection": "Peak Performance", "price": 37.5, "tariff": "$1.35"}, {"pattern": "Station", "collection": "Metro", "price": 29.5, "tariff": "$3.50"}, {"pattern": "Stellato", "collection": "Nocturne Sheer", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Stepping Stones", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Stingaree *", "collection": "Valhalla", "price": 42.5, "tariff": "$2.15"}, {"pattern": "Strada", "collection": "Nocturne Sheer", "price": 22.5, "tariff": "$2.00"}, {"pattern": "Stratton", "collection": "Aesthetics", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Stream", "collection": "Sant\u00e9", "price": 65.5, "tariff": "n/a"}, {"pattern": "Sussex Stripe", "collection": "Enlightenment", "price": 36.5, "tariff": "$1.75"}, {"pattern": "Swell", "collection": "Sant\u00e9", "price": 65.5, "tariff": "n/a"}, {"pattern": "Sylvester", "collection": "Metro", "price": 29.5, "tariff": "$3.50"}, {"pattern": "Tabitha *", "collection": "Urban Upholstery", "price": 24.5, "tariff": "$3.50"}, {"pattern": "Tacitus", "collection": "Aesthetics", "price": 32.5, "tariff": "$1.00"}, {"pattern": "Tacoma", "collection": "Durango", "price": 42.5, "tariff": "$2.05"}, {"pattern": "Tamarack", "collection": "True West", "price": 32.5, "tariff": "$3.75"}, {"pattern": "Tambor *", "collection": "Clean Comfort", "price": 29.5, "tariff": "$1.75"}, {"pattern": "Tango", "collection": "Metro", "price": 42.5, "tariff": "$5.00"}, {"pattern": "Tate", "collection": "Gallerie", "price": 32.5, "tariff": "$3.50"}, {"pattern": "Teatro", "collection": "Aspects of Light", "price": 32.5, "tariff": "$4.25"}, {"pattern": "Tecolote", "collection": "Del Mar", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Telluride", "collection": "Durango", "price": 28.5, "tariff": "$3.00"}, {"pattern": "Thatcher +", "collection": "Blackout", "price": 16.5, "tariff": "$2.50"}, {"pattern": "Thespis", "collection": "Aesthetics", "price": 42.5, "tariff": "$1.25"}, {"pattern": "Thompson", "collection": "Dreamscape Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Thornton", "collection": "Monument", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Tilly +", "collection": "Aesthetics", "price": 29.5, "tariff": "$1.00"}, {"pattern": "Timoteo", "collection": "Monument", "price": 26.5, "tariff": "$1.30"}, {"pattern": "Tintorello *", "collection": "Tactile Textures", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Tipton", "collection": "Luxury Lounge", "price": 36.5, "tariff": "$1.50"}, {"pattern": "Tobago", "collection": "Outdoor Oasis", "price": 55.5, "tariff": "n/a"}, {"pattern": "Toledo", "collection": "Hyphyn", "price": 39.5, "tariff": "$2.50"}, {"pattern": "Topanga", "collection": "Peak Performance", "price": 37.5, "tariff": "$1.35"}, {"pattern": "Torino", "collection": "Destination Unknown", "price": 39.5, "tariff": "n/a"}, {"pattern": "Toro", "collection": "Smooth Sailing", "price": 62.5, "tariff": "$3.00"}, {"pattern": "Torrey *", "collection": "Del Mar", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Town Square", "collection": "Metro", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Track", "collection": "Metro", "price": 25.5, "tariff": "$2.75"}, {"pattern": "Transit", "collection": "Metro", "price": 28.5, "tariff": "$3.00"}, {"pattern": "Trevi", "collection": "Nocturne Sheer", "price": 24.5, "tariff": "$2.25"}, {"pattern": "Trinidad", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Tropea", "collection": "Greener Pastures", "price": 76.5, "tariff": "$4.25"}, {"pattern": "Tropic Stripe", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Tulum", "collection": "Destination Unknown", "price": 42.5, "tariff": "n/a"}, {"pattern": "Turismo", "collection": "Outdoor Oasis", "price": 32.5, "tariff": "$3.90"}, {"pattern": "Turlington", "collection": "Urban Upholstery", "price": 29.5, "tariff": "$4.50"}, {"pattern": "Urbana", "collection": "Wilshire", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Valerius", "collection": "Aesthetics", "price": 49.5, "tariff": "$1.50"}, {"pattern": "Vanna", "collection": "Sheerly Elegant", "price": 16.5, "tariff": "$0.50"}, {"pattern": "Varadero", "collection": "Peak Performance", "price": 35.5, "tariff": "$1.35"}, {"pattern": "Vaughn *", "collection": "Outdoor Oasis", "price": 42.5, "tariff": "n/a"}, {"pattern": "Veneto *", "collection": "The New Rattan", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Venice *", "collection": "Fundamentals", "price": 32.5, "tariff": "$2.00"}, {"pattern": "Vera", "collection": "Smooth Sailing", "price": 79.5, "tariff": "$4.50"}, {"pattern": "Verona", "collection": "Metro", "price": 42.5, "tariff": "$5.00"}, {"pattern": "Vienna", "collection": "Nocturne Blackout", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Vincenzo", "collection": "Smooth Sailing", "price": 59.5, "tariff": "$3.45"}, {"pattern": "Viscaya *", "collection": "Travelogue", "price": 26.5, "tariff": "$3.75"}, {"pattern": "Visconte", "collection": "Nocturne Sheer", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Vita Sheer", "collection": "Winsome Collection", "price": 16.5, "tariff": "$1.75"}, {"pattern": "Vita Stripe", "collection": "Winsome Collection", "price": 19.5, "tariff": "$2.00"}, {"pattern": "Vivaldi", "collection": "Composed Collection", "price": 59.5, "tariff": "n/a"}, {"pattern": "Washington", "collection": "Supreen / Peak Performance", "price": 36.5, "tariff": "$3.50"}, {"pattern": "Webster", "collection": "Outdoor Oasis", "price": 55.5, "tariff": "n/a"}, {"pattern": "West End *", "collection": "Tactile Textures", "price": 28.5, "tariff": "$3.50"}, {"pattern": "Westgate *", "collection": "Moxie", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Westminster", "collection": "Enlightenment", "price": 24.5, "tariff": "$3.00"}, {"pattern": "Westmoreland", "collection": "Supreen", "price": 39.5, "tariff": "$6.00"}, {"pattern": "Whitney", "collection": "Gallerie", "price": 32.5, "tariff": "$3.50"}, {"pattern": "Wildwood *", "collection": "Artisan", "price": 39.5, "tariff": "$1.85"}, {"pattern": "Winsome Stripe", "collection": "Winsome Collection", "price": 19.5, "tariff": "$2.00"}, {"pattern": "Woodbury", "collection": "Aesthetics", "price": 26.5, "tariff": "$3.25"}, {"pattern": "Wrangler *", "collection": "Wilderie", "price": 41.5, "tariff": "$2.00"}, {"pattern": "Zeno", "collection": "Aesthetics", "price": 33.5, "tariff": "$1.00"}, {"pattern": "Zeus", "collection": "Mythology", "price": 24.5, "tariff": "$1.00"}, {"pattern": "Zig Zag", "collection": "Coco Collection", "price": 49.5, "tariff": "$5.50"}, {"pattern": "Zinn *", "collection": "Glitz & Glam", "price": 26.5, "tariff": "$1.25"}]
\ No newline at end of file

← f4affd2 Fix drain PATH: add Homebrew postgresql@14/bin so psql resol  ·  back to Dw Five Field Step0  ·  Phase 2: Fix REST API variant creation with option1='Sample' ca94eb0 →