{
  "requestId": "req_7f3b9c2a1d44",
  "generatedAt": "2026-07-10T14:35:22-04:00",
  "marketplace": {
    "id": "fmkt_001",
    "name": "Riverside Farmers Market",
    "currency": "USD",
    "timezone": "America/New_York",
    "pickupLocation": {
      "name": "Riverside Park Pavilion",
      "address": {
        "line1": "1458 River Road",
        "line2": "North Lot",
        "city": "Hudson",
        "state": "NY",
        "postalCode": "12534",
        "country": "US"
      },
      "coordinates": {
        "latitude": 42.2529,
        "longitude": -73.7901
      }
    },
    "marketDays": [
      {
        "day": "Saturday",
        "opensAt": "08:00",
        "closesAt": "13:00",
        "orderCutoff": "Friday 18:00"
      },
      {
        "day": "Wednesday",
        "opensAt": "15:00",
        "closesAt": "19:00",
        "orderCutoff": "Wednesday 10:00"
      }
    ]
  },
  "customer": {
    "id": "cust_48219",
    "name": "Maya Hernandez",
    "membership": {
      "level": "community",
      "eligibleForSnap": true,
      "marketCreditBalance": 12.5
    }
  },
  "vendors": [
    {
      "id": "vendor_101",
      "name": "Meadowbrook Organics",
      "stallNumber": "A4",
      "certifications": ["USDA Organic", "Certified Naturally Grown"],
      "contact": {
        "email": "orders@meadowbrookorganics.example",
        "phone": "+1-518-555-0148"
      },
      "products": [
        {
          "id": "prod_9001",
          "name": "Heirloom Tomato Mix",
          "category": "Produce",
          "unit": "lb",
          "price": 5.75,
          "availableQuantity": 42,
          "attributes": {
            "organic": true,
            "seasonal": true,
            "storage": "Room temperature",
            "harvestDate": "2026-07-09"
          }
        },
        {
          "id": "prod_9002",
          "name": "Baby Spinach",
          "category": "Greens",
          "unit": "bag",
          "price": 4.25,
          "availableQuantity": 28,
          "attributes": {
            "organic": true,
            "seasonal": true,
            "storage": "Refrigerated",
            "harvestDate": "2026-07-10"
          }
        }
      ]
    },
    {
      "id": "vendor_204",
      "name": "Stone Hill Dairy",
      "stallNumber": "C2",
      "certifications": ["Animal Welfare Approved"],
      "contact": {
        "email": "hello@stonehilldairy.example",
        "phone": "+1-518-555-0193"
      },
      "products": [
        {
          "id": "prod_7204",
          "name": "Plain Greek Yogurt",
          "category": "Dairy",
          "unit": "32 oz tub",
          "price": 7.5,
          "availableQuantity": 18,
          "attributes": {
            "organic": false,
            "seasonal": false,
            "storage": "Refrigerated",
            "milkType": "Cow"
          }
        },
        {
          "id": "prod_7208",
          "name": "Fresh Chevre",
          "category": "Cheese",
          "unit": "6 oz log",
          "price": 8.95,
          "availableQuantity": 11,
          "attributes": {
            "organic": false,
            "seasonal": false,
            "storage": "Refrigerated",
            "milkType": "Goat"
          }
        }
      ]
    }
  ],
  "cart": {
    "id": "cart_63d8a1",
    "status": "ready_for_checkout",
    "items": [
      {
        "productId": "prod_9001",
        "vendorId": "vendor_101",
        "quantity": 2,
        "unitPrice": 5.75,
        "lineTotal": 11.5
      },
      {
        "productId": "prod_7208",
        "vendorId": "vendor_204",
        "quantity": 1,
        "unitPrice": 8.95,
        "lineTotal": 8.95
      }
    ],
    "totals": {
      "subtotal": 20.45,
      "marketFee": 1.25,
      "discounts": [
        {
          "code": "LOCALFOOD10",
          "description": "10% off eligible local produce",
          "amount": 1.15
        }
      ],
      "tax": 0.0,
      "grandTotal": 20.55
    }
  },
  "fulfillment": {
    "method": "market_pickup",
    "pickupWindow": {
      "date": "2026-07-11",
      "startsAt": "09:30",
      "endsAt": "10:00"
    },
    "instructions": "Bring order confirmation to the information tent near the pavilion entrance.",
    "vendorPickupGroups": [
      {
        "vendorId": "vendor_101",
        "stallNumber": "A4",
        "itemCount": 1
      },
      {
        "vendorId": "vendor_204",
        "stallNumber": "C2",
        "itemCount": 1
      }
    ]
  },
  "paymentOptions": [
    {
      "type": "card",
      "enabled": true,
      "processingFeePercent": 2.9
    },
    {
      "type": "snap_ebt",
      "enabled": true,
      "eligibleSubtotal": 11.5
    },
    {
      "type": "market_credit",
      "enabled": true,
      "availableBalance": 12.5
    }
  ]
}