{
  "marketplace": {
    "id": "fmkt_toronto_001",
    "name": "Harvest Lane Farmers' Market",
    "timezone": "America/Toronto",
    "currency": "CAD",
    "locale": "en-CA",
    "status": "open",
    "location": {
      "venue": "Riverside Community Square",
      "address": {
        "street": "125 Broadview Avenue",
        "city": "Toronto",
        "province": "ON",
        "postalCode": "M4M 2E9",
        "country": "CA"
      },
      "coordinates": {
        "latitude": 43.6598,
        "longitude": -79.3503
      }
    },
    "schedule": {
      "seasonStart": "2026-05-02",
      "seasonEnd": "2026-10-31",
      "marketDays": [
        {
          "day": "Saturday",
          "opensAt": "08:00",
          "closesAt": "14:00"
        }
      ],
      "holidayClosures": [
        "2026-07-01"
      ]
    },
    "ordering": {
      "onlineOrderingEnabled": true,
      "orderCutoffHours": 18,
      "minimumOrder": 10.0,
      "fulfillmentMethods": [
        {
          "type": "market_pickup",
          "fee": 0.0,
          "pickupWindows": [
            "09:00-10:00",
            "10:00-11:00",
            "11:00-12:00",
            "12:00-13:00"
          ]
        },
        {
          "type": "local_delivery",
          "fee": 6.5,
          "freeAbove": 75.0,
          "deliveryRadiusKm": 8
        }
      ]
    }
  },
  "vendors": [
    {
      "id": "vendor_green_acres",
      "name": "Green Acres Organics",
      "verified": true,
      "certifications": [
        "Canada Organic",
        "Ecocert Canada"
      ],
      "farm": {
        "location": "Caledon, ON",
        "distanceKm": 52,
        "farmingPractices": [
          "organic",
          "crop_rotation",
          "pollinator_friendly"
        ]
      },
      "contact": {
        "email": "orders@greenacres.example",
        "phone": "+1-416-555-0142"
      },
      "products": [
        {
          "id": "prod_heirloom_tomatoes",
          "name": "Heirloom Tomatoes",
          "category": "produce",
          "description": "Mixed varieties harvested within 24 hours of market day.",
          "price": {
            "amount": 6.5,
            "unit": "basket"
          },
          "inventory": {
            "available": 34,
            "lowStockThreshold": 8
          },
          "attributes": {
            "organic": true,
            "seasonal": true,
            "grownInProvince": true
          },
          "allergens": [],
          "images": [
            {
              "url": "https://cdn.example.com/products/heirloom-tomatoes-1.jpg",
              "alt": "Basket of red, yellow, and purple heirloom tomatoes"
            }
          ]
        },
        {
          "id": "prod_rainbow_carrots",
          "name": "Rainbow Carrots",
          "category": "produce",
          "description": "Fresh bunch containing orange, purple, yellow, and white carrots.",
          "price": {
            "amount": 4.75,
            "unit": "bunch"
          },
          "inventory": {
            "available": 51,
            "lowStockThreshold": 10
          },
          "attributes": {
            "organic": true,
            "seasonal": true,
            "grownInProvince": true
          },
          "allergens": [],
          "images": [
            {
              "url": "https://cdn.example.com/products/rainbow-carrots-1.jpg",
              "alt": "Freshly harvested rainbow carrots with green tops"
            }
          ]
        }
      ]
    },
    {
      "id": "vendor_maple_ridge_bakery",
      "name": "Maple Ridge Bakery",
      "verified": true,
      "certifications": [
        "Food Handler Certified"
      ],
      "kitchen": {
        "location": "Toronto, ON",
        "commercialKitchen": true
      },
      "contact": {
        "email": "hello@mapleridgebakery.example",
        "phone": "+1-647-555-0188"
      },
      "products": [
        {
          "id": "prod_sourdough_country_loaf",
          "name": "Country Sourdough Loaf",
          "category": "bakery",
          "description": "Naturally leavened loaf made with Ontario-milled flour.",
          "price": {
            "amount": 9.0,
            "unit": "loaf"
          },
          "inventory": {
            "available": 18,
            "lowStockThreshold": 5
          },
          "attributes": {
            "organic": false,
            "vegan": true,
            "locallyProduced": true
          },
          "allergens": [
            "wheat"
          ],
          "ingredients": [
            "wheat flour",
            "water",
            "sourdough starter",
            "sea salt"
          ],
          "images": [
            {
              "url": "https://cdn.example.com/products/country-sourdough-1.jpg",
              "alt": "Round country sourdough loaf with a scored crust"
            }
          ]
        }
      ]
    }
  ],
  "cart": {
    "id": "cart_7f13d91a",
    "customerId": "customer_10482",
    "items": [
      {
        "productId": "prod_heirloom_tomatoes",
        "vendorId": "vendor_green_acres",
        "quantity": 2,
        "unitPrice": 6.5,
        "subtotal": 13.0
      },
      {
        "productId": "prod_sourdough_country_loaf",
        "vendorId": "vendor_maple_ridge_bakery",
        "quantity": 1,
        "unitPrice": 9.0,
        "subtotal": 9.0
      }
    ],
    "fulfillment": {
      "method": "market_pickup",
      "date": "2026-08-01",
      "window": "10:00-11:00",
      "instructions": "Bring reusable bags."
    },
    "pricing": {
      "itemsSubtotal": 22.0,
      "serviceFee": 1.1,
      "deliveryFee": 0.0,
      "tax": 0.0,
      "total": 23.1
    },
    "updatedAt": "2026-07-30T14:26:18-04:00"
  },
  "metadata": {
    "apiVersion": "2026-07-01",
    "requestId": "req_b4892d63a1f44f5b",
    "generatedAt": "2026-07-30T14:26:20-04:00"
  }
}