Mock Data
JSON representation of the mock data used in the application.
Catalog Items
[
{
"id": "item-1",
"name": "Latte",
"price": 4.5,
"category": "Coffee & Drinks",
"sku": "SKU-LATTE",
"imageUrl": "https://placehold.co/100x100.png",
"source": "square",
"pointType": "coffee",
"merchantId": "merch-123"
},
{
"id": "item-2",
"name": "Iced Americano",
"price": 3.75,
"category": "Coffee & Drinks",
"sku": "SKU-AMERICANO",
"imageUrl": "https://placehold.co/100x100.png",
"source": "square",
"pointType": "coffee",
"merchantId": "merch-123"
},
{
"id": "item-3",
"name": "Avocado Toast",
"price": 12.5,
"category": "Food",
"sku": "SKU-AVO",
"imageUrl": "https://placehold.co/100x100.png",
"source": "generic",
"pointType": "cafe_meal",
"merchantId": "merch-123"
},
{
"id": "item-4",
"name": "Breakfast Burrito",
"price": 11,
"category": "Food",
"sku": "SKU-BURRITO",
"imageUrl": "https://placehold.co/100x100.png",
"source": "generic",
"pointType": "cafe_meal",
"merchantId": "merch-123"
},
{
"id": "item-5",
"name": "Almond Croissant",
"price": 4.75,
"category": "Pastries",
"sku": "SKU-CROISSANT",
"imageUrl": "https://placehold.co/100x100.png",
"source": "square",
"pointType": "cafe_meal",
"merchantId": "merch-123"
},
{
"id": "item-6",
"name": "Cold Brew",
"price": 5,
"category": "Coffee & Drinks",
"sku": "SKU-COLDBREW",
"imageUrl": "https://placehold.co/100x100.png",
"source": "generic",
"pointType": "coffee",
"merchantId": "merch-123"
}
]Accumulation Rules
[
{
"id": "acc-1",
"name": "Coffee Drink Points",
"description": "Earn 10 points for every $1 spent on coffee.",
"pointType": "coffee",
"pointsPerDollar": 10,
"linkedItemIds": [
"item-1",
"item-2"
],
"type": "accumulation",
"merchantId": "merch-123"
},
{
"id": "acc-2",
"name": "Meal Points",
"description": "Earn 5 points for every $1 spent on food items.",
"pointType": "cafe_meal",
"pointsPerDollar": 5,
"linkedItemIds": [
"item-3",
"item-4",
"item-5"
],
"type": "accumulation",
"merchantId": "merch-123"
},
{
"id": "acc-3",
"name": "Coffee Points Rule",
"description": "Earn 1 point for every eligible coffee item purchased.",
"pointType": "coffee",
"pointsPerDollar": 1,
"type": "accumulation",
"linkedItemIds": [],
"merchantId": "merch-123"
}
]Redemption Rules
[
{
"id": "red-1",
"name": "Free Coffee",
"description": "Redeem 9 points for one coffee.",
"pointType": "coffee",
"pointsCost": 9,
"dollarValue": 5,
"linkedItemIds": [
"item-1",
"item-2"
],
"type": "redemption",
"merchantId": "merch-123"
},
{
"id": "red-2",
"name": "$5 Off Meal",
"description": "Redeem 1000 points for $5 off any meal.",
"pointType": "cafe_meal",
"pointsCost": 1000,
"dollarValue": 5,
"linkedItemIds": [
"item-3",
"item-4",
"item-5"
],
"type": "redemption",
"merchantId": "merch-123"
},
{
"id": "red-3",
"name": "$2 Off Pastry",
"description": "Redeem 250 points for $2 off any pastry.",
"pointType": "cafe_meal",
"pointsCost": 250,
"dollarValue": 2,
"linkedItemIds": [
"item-5"
],
"type": "redemption",
"merchantId": "merch-123"
}
]