{
  "service": {
    "name": "BeanRoute",
    "environment": "production",
    "region": "us-east-1",
    "version": "2.8.4",
    "maintenanceMode": false
  },
  "tenant": {
    "id": "tenant_9f3a2c",
    "brandName": "BeanRoute Coffee",
    "currency": "USD",
    "timezone": "America/New_York"
  },
  "subscriptions": {
    "plans": [
      {
        "id": "plan_sampler",
        "name": "Roaster Sampler",
        "priceCents": 1800,
        "billingInterval": "monthly",
        "bagsPerShipment": 2,
        "bagSizeGrams": 250,
        "availableGrinds": ["whole_bean", "drip", "espresso", "french_press"]
      },
      {
        "id": "plan_daily",
        "name": "Daily Brew",
        "priceCents": 3200,
        "billingInterval": "monthly",
        "bagsPerShipment": 4,
        "bagSizeGrams": 250,
        "availableGrinds": ["whole_bean", "drip", "espresso"]
      }
    ],
    "defaultPlanId": "plan_sampler",
    "pauseOptions": {
      "enabled": true,
      "maxPauseDays": 60,
      "allowedReasons": ["travel", "too_much_coffee", "budget", "other"]
    }
  },
  "inventory": {
    "featuredCoffees": [
      {
        "sku": "ETH-YIR-250-WB",
        "name": "Ethiopia Yirgacheffe",
        "origin": {
          "country": "Ethiopia",
          "region": "Gedeo",
          "farm": "Konga Cooperative"
        },
        "roastLevel": "light",
        "tastingNotes": ["jasmine", "lemon", "honey"],
        "stockUnits": 428
      },
      {
        "sku": "COL-HUI-250-WB",
        "name": "Colombia Huila",
        "origin": {
          "country": "Colombia",
          "region": "Huila",
          "farm": "Finca El Mirador"
        },
        "roastLevel": "medium",
        "tastingNotes": ["caramel", "red apple", "almond"],
        "stockUnits": 613
      }
    ],
    "lowStockThreshold": 100
  },
  "shipping": {
    "carrier": "USPS",
    "freeShippingMinimumCents": 2500,
    "shipmentCadenceDays": [14, 30],
    "warehouse": {
      "id": "wh_brooklyn_01",
      "city": "Brooklyn",
      "state": "NY",
      "postalCode": "11232"
    }
  },
  "payments": {
    "provider": "stripe",
    "retryScheduleDays": [1, 3, 7],
    "taxCalculationEnabled": true,
    "acceptedMethods": ["card", "apple_pay", "google_pay"]
  },
  "notifications": {
    "email": {
      "enabled": true,
      "fromAddress": "hello@beanroute.example",
      "templates": {
        "shipmentCreated": "tmpl_ship_created_v3",
        "paymentFailed": "tmpl_payment_failed_v2",
        "subscriptionPaused": "tmpl_subscription_paused_v1"
      }
    },
    "sms": {
      "enabled": false
    }
  },
  "api": {
    "rateLimits": {
      "anonymousRequestsPerMinute": 60,
      "authenticatedRequestsPerMinute": 600
    },
    "webhooks": [
      {
        "event": "subscription.created",
        "url": "https://api.beanroute.example/webhooks/subscription-created",
        "active": true
      },
      {
        "event": "shipment.delivered",
        "url": "https://api.beanroute.example/webhooks/shipment-delivered",
        "active": true
      }
    ]
  }
}