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,116 @@
1
+ {
2
+ "id": "mergent",
3
+ "name": "Mergent",
4
+ "description": "Usage-based task scheduling and invocation platform for developers",
5
+ "url": "https://mergent.co",
6
+ "pricingUrl": "https://docs.mergent.co/pricing.md",
7
+ "category": "scheduling",
8
+ "tags": [
9
+ "task-scheduling",
10
+ "cron",
11
+ "invocations",
12
+ "api"
13
+ ],
14
+ "lastVerified": "2026-04-02",
15
+ "freshnessCategory": "volatile",
16
+ "currency": "USD",
17
+ "portability": {
18
+ "switchingCost": "moderate",
19
+ "openStandard": null,
20
+ "whatYouLose": "Mergent task scheduling, retry logic, dashboard"
21
+ },
22
+ "tiers": [
23
+ {
24
+ "name": "Free",
25
+ "slug": "free",
26
+ "pricingModel": "free",
27
+ "basePrice": 0,
28
+ "billingPeriod": "monthly",
29
+ "annualDiscount": null,
30
+ "seatPrice": null,
31
+ "usageMetrics": [
32
+ {
33
+ "name": "invocations",
34
+ "unit": "invocations",
35
+ "pricePerUnit": 0,
36
+ "unitQuantity": 1,
37
+ "includedQuantity": 1000
38
+ }
39
+ ],
40
+ "features": [],
41
+ "limits": {
42
+ "invocationsPerMonth": 1000
43
+ }
44
+ },
45
+ {
46
+ "name": "Standard",
47
+ "slug": "standard",
48
+ "pricingModel": "usage_based",
49
+ "basePrice": 0,
50
+ "billingPeriod": "monthly",
51
+ "annualDiscount": null,
52
+ "seatPrice": null,
53
+ "usageMetrics": [
54
+ {
55
+ "name": "invocations",
56
+ "unit": "invocations",
57
+ "pricePerUnit": 0.002,
58
+ "unitQuantity": 1,
59
+ "includedQuantity": 0,
60
+ "tieredPricing": [
61
+ {
62
+ "upTo": 10000,
63
+ "pricePerUnit": 0.002
64
+ },
65
+ {
66
+ "upTo": 100000,
67
+ "pricePerUnit": 0.00175
68
+ },
69
+ {
70
+ "upTo": 500000,
71
+ "pricePerUnit": 0.0005
72
+ },
73
+ {
74
+ "upTo": 1000000,
75
+ "pricePerUnit": 0.0002
76
+ },
77
+ {
78
+ "upTo": 2000000,
79
+ "pricePerUnit": 0.000175
80
+ },
81
+ {
82
+ "upTo": 10000000,
83
+ "pricePerUnit": 0.00005
84
+ },
85
+ {
86
+ "upTo": 100000000,
87
+ "pricePerUnit": 0.00002
88
+ },
89
+ {
90
+ "upTo": 1000000000,
91
+ "pricePerUnit": 0.000004
92
+ },
93
+ {
94
+ "upTo": null,
95
+ "pricePerUnit": 0.000003
96
+ }
97
+ ]
98
+ }
99
+ ],
100
+ "features": [],
101
+ "limits": {}
102
+ },
103
+ {
104
+ "name": "Enterprise",
105
+ "slug": "enterprise",
106
+ "pricingModel": "custom",
107
+ "basePrice": null,
108
+ "billingPeriod": null,
109
+ "annualDiscount": null,
110
+ "seatPrice": null,
111
+ "usageMetrics": [],
112
+ "features": [],
113
+ "limits": {}
114
+ }
115
+ ]
116
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "id": "mixpanel",
3
+ "name": "Mixpanel",
4
+ "description": "Product analytics platform with event tracking, funnels, cohorts, and session replay",
5
+ "url": "https://mixpanel.com",
6
+ "pricingUrl": "https://mixpanel.com/pricing",
7
+ "category": "analytics",
8
+ "tags": [],
9
+ "lastVerified": "2026-04-03",
10
+ "freshnessCategory": "volatile",
11
+ "currency": "USD",
12
+ "portability": {
13
+ "switchingCost": "moderate",
14
+ "openStandard": null,
15
+ "whatYouLose": "Mixpanel reports, cohorts, funnels, session replay data, Spark AI queries"
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": 1000000,
30
+ "savedReports": 5,
31
+ "sessionReplaysPerMonth": 10000
32
+ }
33
+ },
34
+ {
35
+ "name": "Growth",
36
+ "slug": "growth",
37
+ "pricingModel": "usage_based",
38
+ "basePrice": 0,
39
+ "billingPeriod": "monthly",
40
+ "annualDiscount": null,
41
+ "seatPrice": null,
42
+ "usageMetrics": [
43
+ {
44
+ "name": "events",
45
+ "unit": "events",
46
+ "pricePerUnit": 0.28,
47
+ "unitQuantity": 1000,
48
+ "includedQuantity": 1000000
49
+ }
50
+ ],
51
+ "features": [],
52
+ "limits": {
53
+ "sessionReplaysPerMonth": 20000,
54
+ "sparkAiQueriesPerMonth": 60
55
+ }
56
+ },
57
+ {
58
+ "name": "Enterprise",
59
+ "slug": "enterprise",
60
+ "pricingModel": "custom",
61
+ "basePrice": null,
62
+ "billingPeriod": null,
63
+ "annualDiscount": null,
64
+ "seatPrice": null,
65
+ "usageMetrics": [],
66
+ "features": [],
67
+ "limits": {}
68
+ }
69
+ ]
70
+ }
@@ -0,0 +1,164 @@
1
+ {
2
+ "id": "mux",
3
+ "name": "Mux",
4
+ "description": "Video infrastructure for developers with encoding, storage, and delivery APIs",
5
+ "url": "https://mux.com",
6
+ "pricingUrl": "https://www.mux.com/docs/pricing.txt",
7
+ "category": "storage",
8
+ "tags": [
9
+ "video",
10
+ "streaming",
11
+ "cdn",
12
+ "encoding",
13
+ "infrastructure"
14
+ ],
15
+ "lastVerified": "2026-04-02",
16
+ "freshnessCategory": "volatile",
17
+ "currency": "USD",
18
+ "portability": {
19
+ "switchingCost": "significant",
20
+ "openStandard": null,
21
+ "whatYouLose": "Mux Player, Data analytics, encoding pipeline, delivery CDN, asset management"
22
+ },
23
+ "tiers": [
24
+ {
25
+ "name": "Pay As You Go",
26
+ "slug": "pay-as-you-go",
27
+ "pricingModel": "usage_based",
28
+ "basePrice": 0,
29
+ "billingPeriod": "monthly",
30
+ "annualDiscount": null,
31
+ "seatPrice": null,
32
+ "usageMetrics": [
33
+ {
34
+ "name": "plus-encoding-720p",
35
+ "unit": "minutes",
36
+ "pricePerUnit": 0.025,
37
+ "unitQuantity": 1,
38
+ "includedQuantity": 0,
39
+ "tieredPricing": [
40
+ { "upTo": 5000, "pricePerUnit": 0.025 },
41
+ { "upTo": 15000, "pricePerUnit": 0.02375 },
42
+ { "upTo": 25000, "pricePerUnit": 0.023125 },
43
+ { "upTo": null, "pricePerUnit": 0.0225 }
44
+ ]
45
+ },
46
+ {
47
+ "name": "plus-encoding-1080p",
48
+ "unit": "minutes",
49
+ "pricePerUnit": 0.03125,
50
+ "unitQuantity": 1,
51
+ "includedQuantity": 0,
52
+ "tieredPricing": [
53
+ { "upTo": 5000, "pricePerUnit": 0.03125 },
54
+ { "upTo": 15000, "pricePerUnit": 0.029688 },
55
+ { "upTo": 25000, "pricePerUnit": 0.028906 },
56
+ { "upTo": null, "pricePerUnit": 0.028125 }
57
+ ]
58
+ },
59
+ {
60
+ "name": "plus-storage-720p",
61
+ "unit": "minutes/month",
62
+ "pricePerUnit": 0.0024,
63
+ "unitQuantity": 1,
64
+ "includedQuantity": 0,
65
+ "tieredPricing": [
66
+ { "upTo": 50000, "pricePerUnit": 0.0024 },
67
+ { "upTo": 150000, "pricePerUnit": 0.00232 },
68
+ { "upTo": 250000, "pricePerUnit": 0.00228 },
69
+ { "upTo": null, "pricePerUnit": 0.00224 }
70
+ ]
71
+ },
72
+ {
73
+ "name": "plus-delivery-720p",
74
+ "unit": "minutes",
75
+ "pricePerUnit": 0.0008,
76
+ "unitQuantity": 1,
77
+ "includedQuantity": 0,
78
+ "tieredPricing": [
79
+ { "upTo": 500000, "pricePerUnit": 0.0008 },
80
+ { "upTo": 1000000, "pricePerUnit": 0.00076 },
81
+ { "upTo": 2000000, "pricePerUnit": 0.00072 },
82
+ { "upTo": 6000000, "pricePerUnit": 0.00067 },
83
+ { "upTo": 10000000, "pricePerUnit": 0.00061 },
84
+ { "upTo": null, "pricePerUnit": 0.00056 }
85
+ ]
86
+ },
87
+ {
88
+ "name": "live-captions",
89
+ "unit": "minutes",
90
+ "pricePerUnit": 0.024,
91
+ "unitQuantity": 1,
92
+ "includedQuantity": 6000
93
+ },
94
+ {
95
+ "name": "live-simulcasting",
96
+ "unit": "minutes per target",
97
+ "pricePerUnit": 0.02,
98
+ "unitQuantity": 1,
99
+ "includedQuantity": 0
100
+ },
101
+ {
102
+ "name": "drm-access-fee",
103
+ "unit": "months",
104
+ "pricePerUnit": 100,
105
+ "unitQuantity": 1,
106
+ "includedQuantity": 0
107
+ },
108
+ {
109
+ "name": "drm-license",
110
+ "unit": "licenses",
111
+ "pricePerUnit": 0.003,
112
+ "unitQuantity": 1,
113
+ "includedQuantity": 0
114
+ }
115
+ ],
116
+ "features": [],
117
+ "limits": {
118
+ "freeDeliveryMinutes": 100000
119
+ }
120
+ },
121
+ {
122
+ "name": "Launch Credits",
123
+ "slug": "launch-credits",
124
+ "pricingModel": "hybrid",
125
+ "basePrice": 20,
126
+ "billingPeriod": "monthly",
127
+ "annualDiscount": null,
128
+ "seatPrice": null,
129
+ "usageMetrics": [],
130
+ "features": [],
131
+ "limits": {
132
+ "monthlyCreditsUsd": 100
133
+ }
134
+ },
135
+ {
136
+ "name": "Scale Credits",
137
+ "slug": "scale-credits",
138
+ "pricingModel": "hybrid",
139
+ "basePrice": 500,
140
+ "billingPeriod": "monthly",
141
+ "annualDiscount": null,
142
+ "seatPrice": null,
143
+ "usageMetrics": [],
144
+ "features": [],
145
+ "limits": {
146
+ "monthlyCreditsUsd": 1000
147
+ }
148
+ },
149
+ {
150
+ "name": "Enterprise",
151
+ "slug": "enterprise",
152
+ "pricingModel": "custom",
153
+ "basePrice": null,
154
+ "billingPeriod": "monthly",
155
+ "annualDiscount": null,
156
+ "seatPrice": null,
157
+ "usageMetrics": [],
158
+ "features": [],
159
+ "limits": {
160
+ "minimumMonthlyUsd": 3000
161
+ }
162
+ }
163
+ ]
164
+ }
@@ -0,0 +1,173 @@
1
+ {
2
+ "id": "neon",
3
+ "name": "Neon",
4
+ "description": "Serverless Postgres platform with autoscaling, branching, and scale-to-zero",
5
+ "url": "https://neon.tech",
6
+ "pricingUrl": "https://neon.tech/pricing.md",
7
+ "category": "database",
8
+ "tags": [
9
+ "database",
10
+ "postgres",
11
+ "serverless",
12
+ "branching"
13
+ ],
14
+ "lastVerified": "2026-04-02",
15
+ "freshnessCategory": "volatile",
16
+ "currency": "USD",
17
+ "portability": {
18
+ "switchingCost": "drop-in",
19
+ "openStandard": "PostgreSQL wire protocol",
20
+ "whatYouLose": "Serverless autoscaling, scale-to-zero, database branching, instant restore, Neon Auth"
21
+ },
22
+ "tiers": [
23
+ {
24
+ "name": "Free",
25
+ "slug": "free",
26
+ "pricingModel": "free",
27
+ "basePrice": 0,
28
+ "billingPeriod": "monthly",
29
+ "annualDiscount": null,
30
+ "seatPrice": null,
31
+ "usageMetrics": [
32
+ {
33
+ "name": "egress",
34
+ "pricePerUnit": 0,
35
+ "unitQuantity": 1,
36
+ "includedQuantity": 5,
37
+ "unit": "GB"
38
+ }
39
+ ],
40
+ "features": [],
41
+ "limits": {
42
+ "projects": 100,
43
+ "branchesPerProject": 10,
44
+ "maxComputeCU": 2,
45
+ "restoreWindowHours": 6,
46
+ "monitoringRetentionDays": 1,
47
+ "manualSnapshots": 1,
48
+ "authMAU": 60000,
49
+ "computeCUHours": 100,
50
+ "storageGB": 0.5
51
+ }
52
+ },
53
+ {
54
+ "name": "Launch",
55
+ "slug": "launch",
56
+ "pricingModel": "usage_based",
57
+ "basePrice": 0,
58
+ "billingPeriod": "monthly",
59
+ "annualDiscount": null,
60
+ "seatPrice": null,
61
+ "usageMetrics": [
62
+ {
63
+ "name": "compute",
64
+ "pricePerUnit": 0.106,
65
+ "unitQuantity": 1,
66
+ "includedQuantity": 0,
67
+ "unit": "CU-hours"
68
+ },
69
+ {
70
+ "name": "storage",
71
+ "pricePerUnit": 0.35,
72
+ "unitQuantity": 1,
73
+ "includedQuantity": 0,
74
+ "unit": "GB-month"
75
+ },
76
+ {
77
+ "name": "extra-branches",
78
+ "pricePerUnit": 1.5,
79
+ "unitQuantity": 1,
80
+ "includedQuantity": 10,
81
+ "unit": "branches"
82
+ },
83
+ {
84
+ "name": "instant-restore",
85
+ "pricePerUnit": 0.2,
86
+ "unitQuantity": 1,
87
+ "includedQuantity": 0,
88
+ "unit": "GB-month"
89
+ },
90
+ {
91
+ "name": "egress",
92
+ "pricePerUnit": 0.1,
93
+ "unitQuantity": 1,
94
+ "includedQuantity": 100,
95
+ "unit": "GB"
96
+ }
97
+ ],
98
+ "features": [],
99
+ "limits": {
100
+ "projects": 100,
101
+ "branchesPerProject": 10,
102
+ "maxComputeCU": 16,
103
+ "restoreWindowDays": 7,
104
+ "monitoringRetentionDays": 3,
105
+ "manualSnapshots": 10,
106
+ "authMAU": 1000000
107
+ }
108
+ },
109
+ {
110
+ "name": "Scale",
111
+ "slug": "scale",
112
+ "pricingModel": "usage_based",
113
+ "basePrice": 0,
114
+ "billingPeriod": "monthly",
115
+ "annualDiscount": null,
116
+ "seatPrice": null,
117
+ "usageMetrics": [
118
+ {
119
+ "name": "compute",
120
+ "pricePerUnit": 0.222,
121
+ "unitQuantity": 1,
122
+ "includedQuantity": 0,
123
+ "unit": "CU-hours"
124
+ },
125
+ {
126
+ "name": "storage",
127
+ "pricePerUnit": 0.35,
128
+ "unitQuantity": 1,
129
+ "includedQuantity": 0,
130
+ "unit": "GB-month"
131
+ },
132
+ {
133
+ "name": "extra-branches",
134
+ "pricePerUnit": 1.5,
135
+ "unitQuantity": 1,
136
+ "includedQuantity": 25,
137
+ "unit": "branches"
138
+ },
139
+ {
140
+ "name": "instant-restore",
141
+ "pricePerUnit": 0.2,
142
+ "unitQuantity": 1,
143
+ "includedQuantity": 0,
144
+ "unit": "GB-month"
145
+ },
146
+ {
147
+ "name": "egress",
148
+ "pricePerUnit": 0.1,
149
+ "unitQuantity": 1,
150
+ "includedQuantity": 100,
151
+ "unit": "GB"
152
+ },
153
+ {
154
+ "name": "private-network-transfer",
155
+ "pricePerUnit": 0.01,
156
+ "unitQuantity": 1,
157
+ "includedQuantity": 0,
158
+ "unit": "GB"
159
+ }
160
+ ],
161
+ "features": [],
162
+ "limits": {
163
+ "projects": 1000,
164
+ "branchesPerProject": 25,
165
+ "maxComputeCU": 56,
166
+ "restoreWindowDays": 30,
167
+ "monitoringRetentionDays": 14,
168
+ "manualSnapshots": 10,
169
+ "authMAU": 1000000
170
+ }
171
+ }
172
+ ]
173
+ }
@@ -0,0 +1,99 @@
1
+ {
2
+ "id": "netlify",
3
+ "name": "Netlify",
4
+ "description": "Web platform for building, deploying, and scaling modern web projects with credit-based usage pricing",
5
+ "url": "https://netlify.com",
6
+ "pricingUrl": "https://netlify.com/pricing.md",
7
+ "category": "hosting",
8
+ "tags": [
9
+ "hosting",
10
+ "deployment",
11
+ "jamstack",
12
+ "serverless",
13
+ "cdn"
14
+ ],
15
+ "lastVerified": "2026-04-02",
16
+ "freshnessCategory": "volatile",
17
+ "currency": "USD",
18
+ "portability": {
19
+ "switchingCost": "moderate",
20
+ "openStandard": null,
21
+ "whatYouLose": "Netlify Functions, deploy previews, credit-based billing model, built-in form handling, Agent Runners"
22
+ },
23
+ "tiers": [
24
+ {
25
+ "name": "Free",
26
+ "slug": "free",
27
+ "pricingModel": "usage_based",
28
+ "basePrice": 0,
29
+ "billingPeriod": "monthly",
30
+ "annualDiscount": null,
31
+ "seatPrice": null,
32
+ "usageMetrics": [
33
+ {
34
+ "name": "credits",
35
+ "pricePerUnit": 0,
36
+ "unitQuantity": 1,
37
+ "includedQuantity": 300,
38
+ "unit": "credits"
39
+ }
40
+ ],
41
+ "features": [],
42
+ "limits": {
43
+ "credits": 300
44
+ }
45
+ },
46
+ {
47
+ "name": "Personal",
48
+ "slug": "personal",
49
+ "pricingModel": "hybrid",
50
+ "basePrice": 9,
51
+ "billingPeriod": "monthly",
52
+ "annualDiscount": null,
53
+ "seatPrice": null,
54
+ "usageMetrics": [
55
+ {
56
+ "name": "credits",
57
+ "pricePerUnit": 0.01,
58
+ "unitQuantity": 1,
59
+ "includedQuantity": 1000,
60
+ "unit": "credits"
61
+ }
62
+ ],
63
+ "features": [],
64
+ "limits": {}
65
+ },
66
+ {
67
+ "name": "Pro",
68
+ "slug": "pro",
69
+ "pricingModel": "hybrid",
70
+ "basePrice": 20,
71
+ "billingPeriod": "monthly",
72
+ "annualDiscount": null,
73
+ "seatPrice": 20,
74
+ "usageMetrics": [
75
+ {
76
+ "name": "credits",
77
+ "pricePerUnit": 0.00667,
78
+ "unitQuantity": 1,
79
+ "includedQuantity": 3000,
80
+ "unit": "credits"
81
+ }
82
+ ],
83
+ "features": [],
84
+ "limits": {}
85
+ },
86
+ {
87
+ "name": "Enterprise",
88
+ "slug": "enterprise",
89
+ "pricingModel": "custom",
90
+ "basePrice": null,
91
+ "billingPeriod": null,
92
+ "annualDiscount": null,
93
+ "seatPrice": null,
94
+ "usageMetrics": [],
95
+ "features": [],
96
+ "limits": {}
97
+ }
98
+ ]
99
+ }