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.
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.