pricing.md 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +118 -0
  3. package/SKILL.md +593 -0
  4. package/data/tools/algolia.json +101 -0
  5. package/data/tools/amplitude.json +73 -0
  6. package/data/tools/auth0-b2b.json +175 -0
  7. package/data/tools/auth0-b2c.json +183 -0
  8. package/data/tools/buildkite.json +104 -0
  9. package/data/tools/checkly.json +112 -0
  10. package/data/tools/circleci.json +102 -0
  11. package/data/tools/clerk.json +109 -0
  12. package/data/tools/cloudflare.json +71 -0
  13. package/data/tools/contentful.json +71 -0
  14. package/data/tools/convex.json +74 -0
  15. package/data/tools/courier.json +80 -0
  16. package/data/tools/deno-deploy.json +145 -0
  17. package/data/tools/depot.json +66 -0
  18. package/data/tools/descope.json +130 -0
  19. package/data/tools/engagespot.json +84 -0
  20. package/data/tools/fly-io.json +53 -0
  21. package/data/tools/github-actions.json +64 -0
  22. package/data/tools/honeycomb.json +65 -0
  23. package/data/tools/inngest.json +80 -0
  24. package/data/tools/launchdarkly.json +81 -0
  25. package/data/tools/mergent.json +116 -0
  26. package/data/tools/mixpanel.json +70 -0
  27. package/data/tools/mux.json +164 -0
  28. package/data/tools/neon.json +173 -0
  29. package/data/tools/netlify.json +99 -0
  30. package/data/tools/new-relic.json +104 -0
  31. package/data/tools/novu.json +94 -0
  32. package/data/tools/orama.json +153 -0
  33. package/data/tools/paddle.json +46 -0
  34. package/data/tools/planetscale-postgres.json +108 -0
  35. package/data/tools/planetscale-vitess.json +82 -0
  36. package/data/tools/plausible.json +75 -0
  37. package/data/tools/posthog.json +101 -0
  38. package/data/tools/postmark.json +93 -0
  39. package/data/tools/railway.json +161 -0
  40. package/data/tools/render.json +94 -0
  41. package/data/tools/resend.json +135 -0
  42. package/data/tools/sanity.json +98 -0
  43. package/data/tools/sendgrid.json +78 -0
  44. package/data/tools/sentry.json +276 -0
  45. package/data/tools/statsig.json +70 -0
  46. package/data/tools/storyblok.json +121 -0
  47. package/data/tools/stripe.json +46 -0
  48. package/data/tools/supabase.json +100 -0
  49. package/data/tools/tigris.json +70 -0
  50. package/data/tools/trigger-dev.json +90 -0
  51. package/data/tools/turso.json +226 -0
  52. package/data/tools/unosend.json +88 -0
  53. package/data/tools/upstash.json +85 -0
  54. package/data/tools/vercel.json +146 -0
  55. package/data/tools/weaviate.json +93 -0
  56. package/data/tools/workos.json +127 -0
  57. package/dist/src/index.d.ts +2 -0
  58. package/dist/src/index.js +23 -0
  59. package/dist/src/registry/registry.d.ts +52 -0
  60. package/dist/src/registry/registry.js +216 -0
  61. package/dist/src/schema/pricing.d.ts +191 -0
  62. package/dist/src/schema/pricing.js +89 -0
  63. package/dist/src/server.d.ts +3 -0
  64. package/dist/src/server.js +32 -0
  65. package/dist/src/tools/compare-tools.d.ts +61 -0
  66. package/dist/src/tools/compare-tools.js +115 -0
  67. package/dist/src/tools/estimate-cost.d.ts +44 -0
  68. package/dist/src/tools/estimate-cost.js +61 -0
  69. package/dist/src/tools/find-cheapest.d.ts +54 -0
  70. package/dist/src/tools/find-cheapest.js +93 -0
  71. package/dist/src/tools/get-pricing.d.ts +51 -0
  72. package/dist/src/tools/get-pricing.js +23 -0
  73. package/dist/src/tools/search-tools.d.ts +55 -0
  74. package/dist/src/tools/search-tools.js +52 -0
  75. package/package.json +40 -0
@@ -0,0 +1,66 @@
1
+ {
2
+ "id": "depot",
3
+ "name": "Depot",
4
+ "description": "Fast container builds and CI runners with persistent caching and GitHub Actions integration",
5
+ "url": "https://depot.dev",
6
+ "pricingUrl": "https://depot.dev/pricing",
7
+ "category": "ci-cd",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "drop-in",
14
+ "openStandard": "Docker/OCI",
15
+ "whatYouLose": "Depot build cache, managed runners, GitHub Actions integration"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Developer",
20
+ "slug": "developer",
21
+ "pricingModel": "flat_rate",
22
+ "basePrice": 20,
23
+ "billingPeriod": "monthly",
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "dockerBuildMinutes": 500,
30
+ "depotCiMinutes": 2000,
31
+ "githubActionsMinutes": 2000,
32
+ "cacheStorageGb": 25,
33
+ "users": 1
34
+ }
35
+ },
36
+ {
37
+ "name": "Startup",
38
+ "slug": "startup",
39
+ "pricingModel": "flat_rate",
40
+ "basePrice": 200,
41
+ "billingPeriod": "monthly",
42
+ "annualDiscount": null,
43
+ "seatPrice": null,
44
+ "usageMetrics": [],
45
+ "features": [],
46
+ "limits": {
47
+ "dockerBuildMinutes": 5000,
48
+ "depotCiMinutes": 20000,
49
+ "githubActionsMinutes": 20000,
50
+ "cacheStorageGb": 250
51
+ }
52
+ },
53
+ {
54
+ "name": "Business",
55
+ "slug": "business",
56
+ "pricingModel": "custom",
57
+ "basePrice": null,
58
+ "billingPeriod": null,
59
+ "annualDiscount": null,
60
+ "seatPrice": null,
61
+ "usageMetrics": [],
62
+ "features": [],
63
+ "limits": {}
64
+ }
65
+ ]
66
+ }
@@ -0,0 +1,130 @@
1
+ {
2
+ "id": "descope",
3
+ "name": "Descope",
4
+ "description": "Drag-and-drop authentication and user management platform with visual workflow builder",
5
+ "url": "https://descope.com",
6
+ "pricingUrl": "https://descope.com/pricing.md",
7
+ "category": "auth",
8
+ "tags": [
9
+ "authentication",
10
+ "sso",
11
+ "mfa",
12
+ "passkeys",
13
+ "b2b",
14
+ "oauth",
15
+ "oidc",
16
+ "scim",
17
+ "fga"
18
+ ],
19
+ "lastVerified": "2026-04-02",
20
+ "freshnessCategory": "volatile",
21
+ "currency": "USD",
22
+ "portability": {
23
+ "switchingCost": "significant",
24
+ "openStandard": "OAuth 2.0 / OIDC",
25
+ "whatYouLose": "Descope Flows visual builder, SDK integrations, tenant/organization model, SSO connection configs, consent and token vault data"
26
+ },
27
+ "tiers": [
28
+ {
29
+ "name": "Free Forever",
30
+ "slug": "free",
31
+ "pricingModel": "free",
32
+ "basePrice": 0,
33
+ "billingPeriod": "monthly",
34
+ "annualDiscount": null,
35
+ "seatPrice": null,
36
+ "usageMetrics": [
37
+ {
38
+ "name": "MAUs",
39
+ "pricePerUnit": 0,
40
+ "unitQuantity": 1,
41
+ "includedQuantity": 7500,
42
+ "unit": "MAUs"
43
+ }
44
+ ],
45
+ "features": [],
46
+ "limits": {
47
+ "MAUs": 7500,
48
+ "monthlyActiveTenants": 10,
49
+ "ssoConnections": 3,
50
+ "federatedApps": 1,
51
+ "testUsers": 5,
52
+ "m2mExchanges": 10000,
53
+ "monthlyActiveConsents": 2000,
54
+ "monthlyActiveTokens": 2000,
55
+ "auditRetentionDays": 7
56
+ }
57
+ },
58
+ {
59
+ "name": "Pro",
60
+ "slug": "pro",
61
+ "pricingModel": "tiered",
62
+ "basePrice": 249,
63
+ "billingPeriod": "annual",
64
+ "annualDiscount": null,
65
+ "seatPrice": null,
66
+ "usageMetrics": [
67
+ {
68
+ "name": "MAUs",
69
+ "pricePerUnit": 0.05,
70
+ "unitQuantity": 1,
71
+ "includedQuantity": 10000,
72
+ "unit": "MAUs"
73
+ }
74
+ ],
75
+ "features": [],
76
+ "limits": {
77
+ "MAUs": 10000,
78
+ "monthlyActiveTenants": 35,
79
+ "ssoConnections": 5,
80
+ "federatedApps": 2,
81
+ "testUsers": 100,
82
+ "m2mExchanges": 50000,
83
+ "monthlyActiveConsents": 5000,
84
+ "monthlyActiveTokens": 5000,
85
+ "auditRetentionDays": 30
86
+ }
87
+ },
88
+ {
89
+ "name": "Growth",
90
+ "slug": "growth",
91
+ "pricingModel": "tiered",
92
+ "basePrice": 799,
93
+ "billingPeriod": "annual",
94
+ "annualDiscount": null,
95
+ "seatPrice": null,
96
+ "usageMetrics": [
97
+ {
98
+ "name": "MAUs",
99
+ "pricePerUnit": 0.05,
100
+ "unitQuantity": 1,
101
+ "includedQuantity": 25000,
102
+ "unit": "MAUs"
103
+ }
104
+ ],
105
+ "features": [],
106
+ "limits": {
107
+ "MAUs": 25000,
108
+ "monthlyActiveTenants": 100,
109
+ "ssoConnections": 10,
110
+ "testUsers": 500,
111
+ "m2mExchanges": 100000,
112
+ "monthlyActiveConsents": 10000,
113
+ "monthlyActiveTokens": 10000,
114
+ "auditRetentionDays": 30
115
+ }
116
+ },
117
+ {
118
+ "name": "Enterprise",
119
+ "slug": "enterprise",
120
+ "pricingModel": "custom",
121
+ "basePrice": null,
122
+ "billingPeriod": null,
123
+ "annualDiscount": null,
124
+ "seatPrice": null,
125
+ "usageMetrics": [],
126
+ "features": [],
127
+ "limits": {}
128
+ }
129
+ ]
130
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "id": "engagespot",
3
+ "name": "Engagespot",
4
+ "description": "Multi-channel notification infrastructure with in-app inbox, workflows, and preference management",
5
+ "url": "https://engagespot.co",
6
+ "pricingUrl": "https://engagespot.co/pricing.md",
7
+ "category": "notifications",
8
+ "tags": [
9
+ "notifications",
10
+ "in-app",
11
+ "multichannel",
12
+ "workflows",
13
+ "preferences"
14
+ ],
15
+ "lastVerified": "2026-04-02",
16
+ "freshnessCategory": "volatile",
17
+ "currency": "USD",
18
+ "portability": {
19
+ "switchingCost": "moderate",
20
+ "openStandard": null,
21
+ "whatYouLose": "Engagespot in-app notification center, preference management, workflow builder"
22
+ },
23
+ "tiers": [
24
+ {
25
+ "name": "Launch",
26
+ "slug": "launch",
27
+ "pricingModel": "free",
28
+ "basePrice": 0,
29
+ "billingPeriod": "monthly",
30
+ "annualDiscount": null,
31
+ "seatPrice": null,
32
+ "usageMetrics": [
33
+ {
34
+ "name": "event-triggers",
35
+ "unit": "event triggers",
36
+ "pricePerUnit": 0,
37
+ "unitQuantity": 1000,
38
+ "includedQuantity": 10000
39
+ }
40
+ ],
41
+ "features": [],
42
+ "limits": {
43
+ "eventTriggersPerMonth": 10000,
44
+ "environments": 2,
45
+ "teamMembers": 2,
46
+ "feedRetentionDays": 7
47
+ }
48
+ },
49
+ {
50
+ "name": "Growth",
51
+ "slug": "growth",
52
+ "pricingModel": "tiered",
53
+ "basePrice": 250,
54
+ "billingPeriod": "monthly",
55
+ "annualDiscount": null,
56
+ "seatPrice": null,
57
+ "usageMetrics": [
58
+ {
59
+ "name": "event-triggers",
60
+ "unit": "event triggers",
61
+ "pricePerUnit": 1.5,
62
+ "unitQuantity": 1000,
63
+ "includedQuantity": 250000
64
+ }
65
+ ],
66
+ "features": [],
67
+ "limits": {
68
+ "feedRetentionDays": 90
69
+ }
70
+ },
71
+ {
72
+ "name": "Enterprise",
73
+ "slug": "enterprise",
74
+ "pricingModel": "custom",
75
+ "basePrice": null,
76
+ "billingPeriod": "monthly",
77
+ "annualDiscount": null,
78
+ "seatPrice": null,
79
+ "usageMetrics": [],
80
+ "features": [],
81
+ "limits": {}
82
+ }
83
+ ]
84
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "id": "fly-io",
3
+ "name": "Fly.io",
4
+ "description": "Global application platform that runs full-stack apps and databases close to users with usage-based pricing",
5
+ "url": "https://fly.io",
6
+ "pricingUrl": "https://fly.io/docs/about/pricing/",
7
+ "category": "hosting",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": null,
15
+ "whatYouLose": "Fly.io Machines API, global Anycast networking, built-in WireGuard, fly.toml config"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Pay As You Go",
20
+ "slug": "pay-as-you-go",
21
+ "pricingModel": "usage_based",
22
+ "basePrice": 0,
23
+ "billingPeriod": null,
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [
27
+ {
28
+ "name": "shared-cpu-1x-256mb",
29
+ "unit": "VMs/month",
30
+ "pricePerUnit": 2.02,
31
+ "unitQuantity": 1,
32
+ "includedQuantity": 0
33
+ },
34
+ {
35
+ "name": "volume-storage",
36
+ "unit": "GB/month",
37
+ "pricePerUnit": 0.15,
38
+ "unitQuantity": 1,
39
+ "includedQuantity": 0
40
+ },
41
+ {
42
+ "name": "bandwidth-na-eu",
43
+ "unit": "GB",
44
+ "pricePerUnit": 0.02,
45
+ "unitQuantity": 1,
46
+ "includedQuantity": 0
47
+ }
48
+ ],
49
+ "features": [],
50
+ "limits": {}
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,64 @@
1
+ {
2
+ "id": "github-actions",
3
+ "name": "GitHub Actions",
4
+ "description": "CI/CD automation platform integrated with GitHub repositories for building, testing, and deploying code",
5
+ "url": "https://github.com",
6
+ "pricingUrl": "https://github.com/pricing",
7
+ "category": "ci-cd",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": "YAML",
15
+ "whatYouLose": "GitHub-native triggers, marketplace actions, tight PR/issue integration, hosted runners"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Free",
20
+ "slug": "free",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": null,
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "minutesPerMonth": 2000,
30
+ "packagesStorageMb": 500
31
+ }
32
+ },
33
+ {
34
+ "name": "Team",
35
+ "slug": "team",
36
+ "pricingModel": "per_seat",
37
+ "basePrice": 4,
38
+ "billingPeriod": "monthly",
39
+ "annualDiscount": null,
40
+ "seatPrice": 4,
41
+ "usageMetrics": [],
42
+ "features": [],
43
+ "limits": {
44
+ "minutesPerMonth": 3000,
45
+ "packagesStorageGb": 2
46
+ }
47
+ },
48
+ {
49
+ "name": "Enterprise",
50
+ "slug": "enterprise",
51
+ "pricingModel": "per_seat",
52
+ "basePrice": 21,
53
+ "billingPeriod": "monthly",
54
+ "annualDiscount": null,
55
+ "seatPrice": 21,
56
+ "usageMetrics": [],
57
+ "features": [],
58
+ "limits": {
59
+ "minutesPerMonth": 50000,
60
+ "packagesStorageGb": 50
61
+ }
62
+ }
63
+ ]
64
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "id": "honeycomb",
3
+ "name": "Honeycomb",
4
+ "description": "Observability platform for debugging complex systems with distributed tracing and event-driven analytics",
5
+ "url": "https://honeycomb.io",
6
+ "pricingUrl": "https://www.honeycomb.io/pricing",
7
+ "category": "monitoring",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": "OpenTelemetry",
15
+ "whatYouLose": "Honeycomb BubbleUp, SLOs, query engine, team query history"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Free",
20
+ "slug": "free",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": null,
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "eventsPerMonth": 20000000,
30
+ "triggers": 2
31
+ }
32
+ },
33
+ {
34
+ "name": "Pro",
35
+ "slug": "pro",
36
+ "pricingModel": "flat_rate",
37
+ "basePrice": 130,
38
+ "billingPeriod": "monthly",
39
+ "annualDiscount": null,
40
+ "seatPrice": null,
41
+ "usageMetrics": [],
42
+ "features": [],
43
+ "limits": {
44
+ "eventsPerMonth": 1500000000,
45
+ "triggers": 100,
46
+ "slos": 2
47
+ }
48
+ },
49
+ {
50
+ "name": "Enterprise",
51
+ "slug": "enterprise",
52
+ "pricingModel": "custom",
53
+ "basePrice": null,
54
+ "billingPeriod": null,
55
+ "annualDiscount": null,
56
+ "seatPrice": null,
57
+ "usageMetrics": [],
58
+ "features": [],
59
+ "limits": {
60
+ "triggers": 300,
61
+ "slos": 100
62
+ }
63
+ }
64
+ ]
65
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "id": "inngest",
3
+ "name": "Inngest",
4
+ "description": "Event-driven orchestration platform with step functions, flow control, and built-in retries for background jobs and workflows",
5
+ "url": "https://www.inngest.com",
6
+ "pricingUrl": "https://www.inngest.com/pricing",
7
+ "category": "queues",
8
+ "tags": ["queues", "orchestration", "step-functions", "event-driven", "background-jobs"],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": null,
15
+ "whatYouLose": "Inngest event-driven orchestration, step functions, flow control, built-in retries"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Hobby",
20
+ "slug": "hobby",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": "monthly",
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "executionsPerMonth": 50000,
30
+ "concurrentSteps": 5,
31
+ "realtimeConnections": 50,
32
+ "users": 3
33
+ }
34
+ },
35
+ {
36
+ "name": "Pro",
37
+ "slug": "pro",
38
+ "pricingModel": "hybrid",
39
+ "basePrice": 75,
40
+ "billingPeriod": "monthly",
41
+ "annualDiscount": null,
42
+ "seatPrice": null,
43
+ "usageMetrics": [
44
+ {
45
+ "name": "Executions",
46
+ "unit": "executions",
47
+ "pricePerUnit": 0.00005,
48
+ "unitQuantity": 1,
49
+ "includedQuantity": 1000000,
50
+ "tieredPricing": [
51
+ { "upTo": 1000000, "pricePerUnit": 0 },
52
+ { "upTo": 5000000, "pricePerUnit": 0.00005 },
53
+ { "upTo": 15000000, "pricePerUnit": 0.000025 },
54
+ { "upTo": 50000000, "pricePerUnit": 0.00002 },
55
+ { "upTo": 100000000, "pricePerUnit": 0.000015 },
56
+ { "upTo": null, "pricePerUnit": 0.000015 }
57
+ ]
58
+ }
59
+ ],
60
+ "features": [],
61
+ "limits": {
62
+ "concurrentSteps": 100,
63
+ "realtimeConnections": 1000,
64
+ "users": 15
65
+ }
66
+ },
67
+ {
68
+ "name": "Enterprise",
69
+ "slug": "enterprise",
70
+ "pricingModel": "custom",
71
+ "basePrice": null,
72
+ "billingPeriod": null,
73
+ "annualDiscount": null,
74
+ "seatPrice": null,
75
+ "usageMetrics": [],
76
+ "features": [],
77
+ "limits": {}
78
+ }
79
+ ]
80
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "id": "launchdarkly",
3
+ "name": "LaunchDarkly",
4
+ "description": "Feature flag management platform with SDK integrations, targeting rules, experimentation, and session replays",
5
+ "url": "https://launchdarkly.com",
6
+ "pricingUrl": "https://launchdarkly.com/pricing/",
7
+ "category": "feature-flags",
8
+ "tags": ["feature-flags", "experimentation", "ab-testing", "targeting", "session-replays"],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": null,
15
+ "whatYouLose": "LaunchDarkly SDK integrations, targeting rules, experimentation data, audit logs"
16
+ },
17
+ "tiers": [
18
+ {
19
+ "name": "Developer",
20
+ "slug": "developer",
21
+ "pricingModel": "free",
22
+ "basePrice": 0,
23
+ "billingPeriod": "monthly",
24
+ "annualDiscount": null,
25
+ "seatPrice": null,
26
+ "usageMetrics": [],
27
+ "features": [],
28
+ "limits": {
29
+ "serviceConnections": 5,
30
+ "clientSideMAU": 1000,
31
+ "environments": 3,
32
+ "sessionReplaysPerMonth": 5000,
33
+ "logsAndTracesPerMonth": 10000000
34
+ }
35
+ },
36
+ {
37
+ "name": "Foundation",
38
+ "slug": "foundation",
39
+ "pricingModel": "hybrid",
40
+ "basePrice": 12,
41
+ "billingPeriod": "monthly",
42
+ "annualDiscount": null,
43
+ "seatPrice": null,
44
+ "usageMetrics": [
45
+ {
46
+ "name": "Client-Side MAU",
47
+ "unit": "MAU",
48
+ "pricePerUnit": 10,
49
+ "unitQuantity": 1000,
50
+ "includedQuantity": 0
51
+ }
52
+ ],
53
+ "features": [],
54
+ "limits": {}
55
+ },
56
+ {
57
+ "name": "Enterprise",
58
+ "slug": "enterprise",
59
+ "pricingModel": "custom",
60
+ "basePrice": null,
61
+ "billingPeriod": null,
62
+ "annualDiscount": null,
63
+ "seatPrice": null,
64
+ "usageMetrics": [],
65
+ "features": [],
66
+ "limits": {}
67
+ },
68
+ {
69
+ "name": "Guardian",
70
+ "slug": "guardian",
71
+ "pricingModel": "custom",
72
+ "basePrice": null,
73
+ "billingPeriod": null,
74
+ "annualDiscount": null,
75
+ "seatPrice": null,
76
+ "usageMetrics": [],
77
+ "features": [],
78
+ "limits": {}
79
+ }
80
+ ]
81
+ }