All patterns
Snowflake
Snapshot from Snowflake
Verified on 2026-03-09

Edition-Based Consumption

Standard, Enterprise, Business Critical, and VPS editions.

The official pricing page emphasizes edition selection plus on-demand or prepaid capacity. Public threshold pricing is not the primary story.

Snowflake's model is designed around enterprise packaging and consumption commitments, not around a public all-units discount table.

Implementation

This snippet is the closest Owostack implementation of the live pricing shape above. It is not a literal copy of the vendor's internal billing system.

const inferenceOps = metered("inference-ops", {
  name: "Inference Ops",
});

plan("enterprise-api", {
  name: "Enterprise API",
  price: 0,
  currency: "USD",
  interval: "monthly",
  features: [
    inferenceOps.volume(
      [
        { upTo: 100_000, unitPrice: 200 },
        { upTo: 500_000, unitPrice: 150 },
        { upTo: null, unitPrice: 110 },
      ],
      { reset: "monthly" },
    ),
  ],
});

Rules

Snowflake's public page is edition-led, not threshold-led.

Capacity can be purchased on-demand or pre-paid.

The code sample remains a simplified Owostack approximation of usage-based enterprise pricing.

Ready to implement this pattern?

Join our Discord for implementation help, or book a call to discuss how Snowflake's pricing model fits your product.