Skip to content

Commit cf92f75

Browse files
committed
l2-l3-data
1 parent 4d4a81e commit cf92f75

File tree

85 files changed

+1250
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1250
-40
lines changed

api-reference/v1/openapi_spec_v1.json

Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7246,6 +7246,13 @@
72467246
"example": "Doe",
72477247
"nullable": true,
72487248
"maxLength": 255
7249+
},
7250+
"origin_zip": {
7251+
"type": "string",
7252+
"description": "The zip/postal code of the origin",
7253+
"example": "08807",
7254+
"nullable": true,
7255+
"maxLength": 50
72497256
}
72507257
},
72517258
"additionalProperties": false
@@ -13362,6 +13369,12 @@
1336213369
"example": "+1",
1336313370
"nullable": true,
1336413371
"maxLength": 2
13372+
},
13373+
"tax_registration_id": {
13374+
"type": "string",
13375+
"description": "The tax registration identifier of the customer.",
13376+
"nullable": true,
13377+
"maxLength": 255
1336513378
}
1336613379
}
1336713380
},
@@ -13705,6 +13718,13 @@
1370513718
"type": "object",
1370613719
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
1370713720
"nullable": true
13721+
},
13722+
"tax_registration_id": {
13723+
"type": "string",
13724+
"description": "Customer's tax registration ID",
13725+
"example": "123456789",
13726+
"nullable": true,
13727+
"maxLength": 255
1370813728
}
1370913729
}
1371013730
},
@@ -13782,6 +13802,13 @@
1378213802
"example": "pm_djh2837dwduh890123",
1378313803
"nullable": true,
1378413804
"maxLength": 64
13805+
},
13806+
"tax_registration_id": {
13807+
"type": "string",
13808+
"description": "The customer's tax registration number.",
13809+
"example": "123456789",
13810+
"nullable": true,
13811+
"maxLength": 255
1378513812
}
1378613813
}
1378713814
},
@@ -13836,6 +13863,13 @@
1383613863
"type": "object",
1383713864
"description": "You can specify up to 50 keys, with key names up to 40 characters long and values up to 500\ncharacters long. Metadata is useful for storing additional, structured information on an\nobject.",
1383813865
"nullable": true
13866+
},
13867+
"tax_registration_id": {
13868+
"type": "string",
13869+
"description": "Customer's tax registration ID",
13870+
"example": "123456789",
13871+
"nullable": true,
13872+
"maxLength": 255
1383913873
}
1384013874
}
1384113875
},
@@ -19410,6 +19444,43 @@
1941019444
"type": "string",
1941119445
"description": "The tax code for the product",
1941219446
"nullable": true
19447+
},
19448+
"description": {
19449+
"type": "string",
19450+
"description": "Description for the item",
19451+
"nullable": true
19452+
},
19453+
"sku": {
19454+
"type": "string",
19455+
"description": "Stock Keeping Unit (SKU) or the item identifier for this item.",
19456+
"nullable": true
19457+
},
19458+
"upc": {
19459+
"type": "string",
19460+
"description": "Universal Product Code for the item.",
19461+
"nullable": true
19462+
},
19463+
"commodity_code": {
19464+
"type": "string",
19465+
"description": "Code describing a commodity or a group of commodities pertaining to goods classification.",
19466+
"nullable": true
19467+
},
19468+
"unit_of_measure": {
19469+
"type": "string",
19470+
"description": "Unit of measure used for the item quantity.",
19471+
"nullable": true
19472+
},
19473+
"total_amount": {
19474+
"type": "integer",
19475+
"format": "int64",
19476+
"description": "Total amount for the item.",
19477+
"nullable": true
19478+
},
19479+
"unit_discount_amount": {
19480+
"type": "integer",
19481+
"format": "int64",
19482+
"description": "Discount amount applied to this item.",
19483+
"nullable": true
1941319484
}
1941419485
}
1941519486
},
@@ -22502,6 +22573,43 @@
2250222573
}
2250322574
],
2250422575
"nullable": true
22576+
},
22577+
"tax_status": {
22578+
"allOf": [
22579+
{
22580+
"$ref": "#/components/schemas/TaxStatus"
22581+
}
22582+
],
22583+
"nullable": true
22584+
},
22585+
"discount_amount": {
22586+
"type": "integer",
22587+
"format": "int64",
22588+
"description": "Total amount of the discount you have applied to the order or transaction.",
22589+
"example": 6540,
22590+
"nullable": true
22591+
},
22592+
"shipping_amount_tax": {
22593+
"allOf": [
22594+
{
22595+
"$ref": "#/components/schemas/MinorUnit"
22596+
}
22597+
],
22598+
"nullable": true
22599+
},
22600+
"duty_amount": {
22601+
"allOf": [
22602+
{
22603+
"$ref": "#/components/schemas/MinorUnit"
22604+
}
22605+
],
22606+
"nullable": true
22607+
},
22608+
"order_date": {
22609+
"type": "string",
22610+
"format": "date-time",
22611+
"description": "Date the payer placed the order.",
22612+
"nullable": true
2250522613
}
2250622614
}
2250722615
},
@@ -22933,6 +23041,43 @@
2293323041
}
2293423042
],
2293523043
"nullable": true
23044+
},
23045+
"tax_status": {
23046+
"allOf": [
23047+
{
23048+
"$ref": "#/components/schemas/TaxStatus"
23049+
}
23050+
],
23051+
"nullable": true
23052+
},
23053+
"discount_amount": {
23054+
"type": "integer",
23055+
"format": "int64",
23056+
"description": "Total amount of the discount you have applied to the order or transaction.",
23057+
"example": 6540,
23058+
"nullable": true
23059+
},
23060+
"shipping_amount_tax": {
23061+
"allOf": [
23062+
{
23063+
"$ref": "#/components/schemas/MinorUnit"
23064+
}
23065+
],
23066+
"nullable": true
23067+
},
23068+
"duty_amount": {
23069+
"allOf": [
23070+
{
23071+
"$ref": "#/components/schemas/MinorUnit"
23072+
}
23073+
],
23074+
"nullable": true
23075+
},
23076+
"order_date": {
23077+
"type": "string",
23078+
"format": "date-time",
23079+
"description": "Date the payer placed the order.",
23080+
"nullable": true
2293623081
}
2293723082
}
2293823083
},
@@ -24250,6 +24395,43 @@
2425024395
}
2425124396
],
2425224397
"nullable": true
24398+
},
24399+
"tax_status": {
24400+
"allOf": [
24401+
{
24402+
"$ref": "#/components/schemas/TaxStatus"
24403+
}
24404+
],
24405+
"nullable": true
24406+
},
24407+
"discount_amount": {
24408+
"type": "integer",
24409+
"format": "int64",
24410+
"description": "Total amount of the discount you have applied to the order or transaction.",
24411+
"example": 6540,
24412+
"nullable": true
24413+
},
24414+
"shipping_amount_tax": {
24415+
"allOf": [
24416+
{
24417+
"$ref": "#/components/schemas/MinorUnit"
24418+
}
24419+
],
24420+
"nullable": true
24421+
},
24422+
"duty_amount": {
24423+
"allOf": [
24424+
{
24425+
"$ref": "#/components/schemas/MinorUnit"
24426+
}
24427+
],
24428+
"nullable": true
24429+
},
24430+
"order_date": {
24431+
"type": "string",
24432+
"format": "date-time",
24433+
"description": "Date the payer placed the order.",
24434+
"nullable": true
2425324435
}
2425424436
},
2425524437
"additionalProperties": false
@@ -25436,6 +25618,43 @@
2543625618
}
2543725619
],
2543825620
"nullable": true
25621+
},
25622+
"tax_status": {
25623+
"allOf": [
25624+
{
25625+
"$ref": "#/components/schemas/TaxStatus"
25626+
}
25627+
],
25628+
"nullable": true
25629+
},
25630+
"discount_amount": {
25631+
"type": "integer",
25632+
"format": "int64",
25633+
"description": "Total amount of the discount you have applied to the order or transaction.",
25634+
"example": 6540,
25635+
"nullable": true
25636+
},
25637+
"shipping_amount_tax": {
25638+
"allOf": [
25639+
{
25640+
"$ref": "#/components/schemas/MinorUnit"
25641+
}
25642+
],
25643+
"nullable": true
25644+
},
25645+
"duty_amount": {
25646+
"allOf": [
25647+
{
25648+
"$ref": "#/components/schemas/MinorUnit"
25649+
}
25650+
],
25651+
"nullable": true
25652+
},
25653+
"order_date": {
25654+
"type": "string",
25655+
"format": "date-time",
25656+
"description": "Date the payer placed the order.",
25657+
"nullable": true
2543925658
}
2544025659
}
2544125660
},
@@ -31001,6 +31220,13 @@
3100131220
"SwishQrData": {
3100231221
"type": "object"
3100331222
},
31223+
"TaxStatus": {
31224+
"type": "string",
31225+
"enum": [
31226+
"taxable",
31227+
"exempt"
31228+
]
31229+
},
3100431230
"ThirdPartySdkSessionResponse": {
3100531231
"type": "object",
3100631232
"required": [

0 commit comments

Comments
 (0)