MapleBridge Open
Open Protocol Asset

Sample Payloads

These public examples show how MapleBridge turns a sourcing request into structured buyer intent, supplier capability, and match explanation fields. They are simplified examples, not live customer records.

Buyer Intent Payload

{
  "type": "buyer_intent",
  "buyer_type": "Shopify skincare brand",
  "market": ["Canada", "United States"],
  "product": {
    "category": "skincare packaging",
    "items": ["30ml serum bottle", "printed carton"],
    "target_moq": 1000
  },
  "requirements": {
    "sample_deadline_days": 14,
    "decoration": ["matte finish", "logo print"],
    "risk_controls": ["dropper fit", "color consistency", "barcode placement"]
  }
}

Supplier Capability Payload

{
  "type": "supplier_capability",
  "supplier_profile": {
    "country": "China",
    "categories": ["cosmetic packaging", "glass bottles", "printed cartons"],
    "moq_bands": [{"min": 500, "unit": "pcs"}, {"min": 2000, "unit": "pcs"}],
    "decoration_methods": ["silkscreen", "label", "hot stamping"],
    "export_markets": ["US", "Canada"]
  },
  "evidence": {
    "sample_photos": true,
    "material_documents": "available on request",
    "recent_projects": "beauty packaging for DTC brands"
  }
}

Match Explanation Payload

{
  "type": "match_explanation",
  "score": 0.84,
  "matched_fields": [
    "category: skincare packaging",
    "moq: supports 1000 pcs launch order",
    "market: exports to North America",
    "decoration: logo print and carton support"
  ],
  "open_questions": [
    "confirm sample cost",
    "confirm material documentation",
    "confirm barcode placement on carton"
  ],
  "recommendation": "request decorated sample before deposit"
}

Related Assets