Skip to content

Commit 03af404

Browse files
Update OpenAPI specification for GA and public preview
1 parent 6435197 commit 03af404

File tree

6 files changed

+69
-6
lines changed

6 files changed

+69
-6
lines changed

openapi/spec3.beta.sdk.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41815,6 +41815,10 @@
4181541815
]
4181641816
}
4181741817
},
41818+
"subtotal": {
41819+
"description": "The subtotal of the line item, in cents (or local equivalent), before any discounts or taxes.",
41820+
"type": "integer"
41821+
},
4181841822
"tax_calculation_reference": {
4181941823
"anyOf": [
4182041824
{
@@ -41851,6 +41855,7 @@
4185141855
"pricing",
4185241856
"quantity",
4185341857
"subscription",
41858+
"subtotal",
4185441859
"taxes"
4185541860
],
4185641861
"title": "InvoiceLineItem",
@@ -124105,6 +124110,7 @@
124105124110
"metadata",
124106124111
"name",
124107124112
"tax_code",
124113+
"tax_details",
124108124114
"unit_label"
124109124115
]
124110124116
},
@@ -127840,6 +127846,7 @@
127840127846
"metadata",
127841127847
"name",
127842127848
"tax_code",
127849+
"tax_details",
127843127850
"unit_label"
127844127851
]
127845127852
},
@@ -153396,6 +153403,7 @@
153396153403
"metadata",
153397153404
"name",
153398153405
"tax_code",
153406+
"tax_details",
153399153407
"unit_label"
153400153408
]
153401153409
},
@@ -154350,6 +154358,7 @@
154350154358
"metadata",
154351154359
"name",
154352154360
"tax_code",
154361+
"tax_details",
154353154362
"unit_label"
154354154363
]
154355154364
},
@@ -155286,6 +155295,7 @@
155286155295
"metadata",
155287155296
"name",
155288155297
"tax_code",
155298+
"tax_details",
155289155299
"unit_label"
155290155300
]
155291155301
},
@@ -210543,6 +210553,7 @@
210543210553
"metadata",
210544210554
"name",
210545210555
"tax_code",
210556+
"tax_details",
210546210557
"unit_label"
210547210558
]
210548210559
},
@@ -287482,7 +287493,8 @@
287482287493
"2025-09-30.clover",
287483287494
"2025-10-29.clover",
287484287495
"2025-11-17.clover",
287485-
"2025-12-15.clover"
287496+
"2025-12-15.clover",
287497+
"2026-01-28.clover"
287486287498
],
287487287499
"maxLength": 5000,
287488287500
"type": "string",

openapi/spec3.beta.sdk.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37962,6 +37962,11 @@ components:
3796237962
x-expansionResources:
3796337963
oneOf:
3796437964
- $ref: '#/components/schemas/subscription'
37965+
subtotal:
37966+
description: >-
37967+
The subtotal of the line item, in cents (or local equivalent),
37968+
before any discounts or taxes.
37969+
type: integer
3796537970
tax_calculation_reference:
3796637971
anyOf:
3796737972
- $ref: >-
@@ -37992,6 +37997,7 @@ components:
3799237997
- pricing
3799337998
- quantity
3799437999
- subscription
38000+
- subtotal
3799538001
- taxes
3799638002
title: InvoiceLineItem
3799738003
type: object
@@ -112589,6 +112595,7 @@ paths:
112589112595
- metadata
112590112596
- name
112591112597
- tax_code
112598+
- tax_details
112592112599
- unit_label
112593112600
recurring:
112594112601
description: >-
@@ -117520,6 +117527,7 @@ paths:
117520117527
- metadata
117521117528
- name
117522117529
- tax_code
117530+
- tax_details
117523117531
- unit_label
117524117532
recurring:
117525117533
description: >-
@@ -140225,6 +140233,7 @@ paths:
140225140233
- metadata
140226140234
- name
140227140235
- tax_code
140236+
- tax_details
140228140237
- unit_label
140229140238
tax_behavior:
140230140239
description: >-
@@ -141150,6 +141159,7 @@ paths:
141150141159
- metadata
141151141160
- name
141152141161
- tax_code
141162+
- tax_details
141153141163
- unit_label
141154141164
tax_behavior:
141155141165
description: >-
@@ -142058,6 +142068,7 @@ paths:
142058142068
- metadata
142059142069
- name
142060142070
- tax_code
142071+
- tax_details
142061142072
- unit_label
142062142073
tax_behavior:
142063142074
description: >-
@@ -199350,6 +199361,7 @@ paths:
199350199361
- metadata
199351199362
- name
199352199363
- tax_code
199364+
- tax_details
199353199365
- unit_label
199354199366
recurring:
199355199367
description: >-
@@ -268205,6 +268217,7 @@ paths:
268205268217
- 2025-10-29.clover
268206268218
- 2025-11-17.clover
268207268219
- 2025-12-15.clover
268220+
- 2026-01-28.clover
268208268221
maxLength: 5000
268209268222
type: string
268210268223
x-stripeBypassValidation: true

openapi/spec3.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27748,6 +27748,10 @@
2774827748
]
2774927749
}
2775027750
},
27751+
"subtotal": {
27752+
"description": "The subtotal of the line item, in cents (or local equivalent), before any discounts or taxes.",
27753+
"type": "integer"
27754+
},
2775127755
"taxes": {
2775227756
"description": "The tax information of the line item.",
2775327757
"items": {
@@ -27766,7 +27770,8 @@
2776627770
"livemode",
2776727771
"metadata",
2776827772
"object",
27769-
"period"
27773+
"period",
27774+
"subtotal"
2777027775
],
2777127776
"title": "InvoiceLineItem",
2777227777
"type": "object",
@@ -61881,7 +61886,7 @@
6188161886
"description": "The Stripe REST API. Please see https://stripe.com/docs/api for more details.",
6188261887
"termsOfService": "https://stripe.com/us/terms/",
6188361888
"title": "Stripe API",
61884-
"version": "2025-12-15.clover",
61889+
"version": "2026-01-28.clover",
6188561890
"x-stripeSpecFilename": "spec3"
6188661891
},
6188761892
"openapi": "3.0.0",
@@ -191454,7 +191459,8 @@
191454191459
"2025-09-30.clover",
191455191460
"2025-10-29.clover",
191456191461
"2025-11-17.clover",
191457-
"2025-12-15.clover"
191462+
"2025-12-15.clover",
191463+
"2026-01-28.clover"
191458191464
],
191459191465
"maxLength": 5000,
191460191466
"type": "string",

openapi/spec3.sdk.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37491,6 +37491,10 @@
3749137491
]
3749237492
}
3749337493
},
37494+
"subtotal": {
37495+
"description": "The subtotal of the line item, in cents (or local equivalent), before any discounts or taxes.",
37496+
"type": "integer"
37497+
},
3749437498
"taxes": {
3749537499
"description": "The tax information of the line item.",
3749637500
"items": {
@@ -37518,6 +37522,7 @@
3751837522
"pricing",
3751937523
"quantity",
3752037524
"subscription",
37525+
"subtotal",
3752137526
"taxes"
3752237527
],
3752337528
"title": "InvoiceLineItem",
@@ -102073,6 +102078,7 @@
102073102078
"metadata",
102074102079
"name",
102075102080
"tax_code",
102081+
"tax_details",
102076102082
"unit_label"
102077102083
]
102078102084
},
@@ -105481,6 +105487,7 @@
105481105487
"metadata",
105482105488
"name",
105483105489
"tax_code",
105490+
"tax_details",
105484105491
"unit_label"
105485105492
]
105486105493
},
@@ -127361,6 +127368,7 @@
127361127368
"metadata",
127362127369
"name",
127363127370
"tax_code",
127371+
"tax_details",
127364127372
"unit_label"
127365127373
]
127366127374
},
@@ -128166,6 +128174,7 @@
128166128174
"metadata",
128167128175
"name",
128168128176
"tax_code",
128177+
"tax_details",
128169128178
"unit_label"
128170128179
]
128171128180
},
@@ -129027,6 +129036,7 @@
129027129036
"metadata",
129028129037
"name",
129029129038
"tax_code",
129039+
"tax_details",
129030129040
"unit_label"
129031129041
]
129032129042
},
@@ -157338,6 +157348,7 @@
157338157348
"metadata",
157339157349
"name",
157340157350
"tax_code",
157351+
"tax_details",
157341157352
"unit_label"
157342157353
]
157343157354
},
@@ -224138,7 +224149,8 @@
224138224149
"2025-09-30.clover",
224139224150
"2025-10-29.clover",
224140224151
"2025-11-17.clover",
224141-
"2025-12-15.clover"
224152+
"2025-12-15.clover",
224153+
"2026-01-28.clover"
224142224154
],
224143224155
"maxLength": 5000,
224144224156
"type": "string",

openapi/spec3.sdk.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34094,6 +34094,11 @@ components:
3409434094
x-expansionResources:
3409534095
oneOf:
3409634096
- $ref: '#/components/schemas/subscription'
34097+
subtotal:
34098+
description: >-
34099+
The subtotal of the line item, in cents (or local equivalent),
34100+
before any discounts or taxes.
34101+
type: integer
3409734102
taxes:
3409834103
description: The tax information of the line item.
3409934104
items:
@@ -34118,6 +34123,7 @@ components:
3411834123
- pricing
3411934124
- quantity
3412034125
- subscription
34126+
- subtotal
3412134127
- taxes
3412234128
title: InvoiceLineItem
3412334129
type: object
@@ -93133,6 +93139,7 @@ paths:
9313393139
- metadata
9313493140
- name
9313593141
- tax_code
93142+
- tax_details
9313693143
- unit_label
9313793144
recurring:
9313893145
description: >-
@@ -97682,6 +97689,7 @@ paths:
9768297689
- metadata
9768397690
- name
9768497691
- tax_code
97692+
- tax_details
9768597693
- unit_label
9768697694
recurring:
9768797695
description: >-
@@ -116986,6 +116994,7 @@ paths:
116986116994
- metadata
116987116995
- name
116988116996
- tax_code
116997+
- tax_details
116989116998
- unit_label
116990116999
tax_behavior:
116991117000
description: >-
@@ -117775,6 +117784,7 @@ paths:
117775117784
- metadata
117776117785
- name
117777117786
- tax_code
117787+
- tax_details
117778117788
- unit_label
117779117789
tax_behavior:
117780117790
description: >-
@@ -118615,6 +118625,7 @@ paths:
118615118625
- metadata
118616118626
- name
118617118627
- tax_code
118628+
- tax_details
118618118629
- unit_label
118619118630
tax_behavior:
118620118631
description: >-
@@ -150196,6 +150207,7 @@ paths:
150196150207
- metadata
150197150208
- name
150198150209
- tax_code
150210+
- tax_details
150199150211
- unit_label
150200150212
recurring:
150201150213
description: >-
@@ -209672,6 +209684,7 @@ paths:
209672209684
- 2025-10-29.clover
209673209685
- 2025-11-17.clover
209674209686
- 2025-12-15.clover
209687+
- 2026-01-28.clover
209675209688
maxLength: 5000
209676209689
type: string
209677209690
x-stripeBypassValidation: true

openapi/spec3.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26339,6 +26339,11 @@ components:
2633926339
x-expansionResources:
2634026340
oneOf:
2634126341
- $ref: '#/components/schemas/subscription'
26342+
subtotal:
26343+
description: >-
26344+
The subtotal of the line item, in cents (or local equivalent),
26345+
before any discounts or taxes.
26346+
type: integer
2634226347
taxes:
2634326348
description: The tax information of the line item.
2634426349
items:
@@ -26355,6 +26360,7 @@ components:
2635526360
- metadata
2635626361
- object
2635726362
- period
26363+
- subtotal
2635826364
title: InvoiceLineItem
2635926365
type: object
2636026366
x-expandableFields:
@@ -58358,7 +58364,7 @@ info:
5835858364
details.
5835958365
termsOfService: 'https://stripe.com/us/terms/'
5836058366
title: Stripe API
58361-
version: 2025-12-15.clover
58367+
version: 2026-01-28.clover
5836258368
x-stripeSpecFilename: spec3
5836358369
openapi: 3.0.0
5836458370
paths:
@@ -159685,6 +159691,7 @@ paths:
159685159691
- 2025-10-29.clover
159686159692
- 2025-11-17.clover
159687159693
- 2025-12-15.clover
159694+
- 2026-01-28.clover
159688159695
maxLength: 5000
159689159696
type: string
159690159697
x-stripeBypassValidation: true

0 commit comments

Comments
 (0)