Skip to content

Commit 562720f

Browse files
author
shopwareBot
committed
[create-pull-request] automated change
1 parent 6f74eb8 commit 562720f

1 file changed

Lines changed: 42 additions & 18 deletions

File tree

adminapi.json

Lines changed: 42 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -107834,6 +107834,9 @@
107834107834
"$ref": "#/components/schemas/Price"
107835107835
}
107836107836
},
107837+
"customFields": {
107838+
"type": "object"
107839+
},
107837107840
"quantityStart": {
107838107841
"description": "Starting range of quantity of an item.",
107839107842
"type": "integer",
@@ -107844,9 +107847,6 @@
107844107847
"type": "integer",
107845107848
"format": "int64"
107846107849
},
107847-
"customFields": {
107848-
"type": "object"
107849-
},
107850107850
"createdAt": {
107851107851
"type": "string",
107852107852
"format": "date-time",
@@ -107967,6 +107967,10 @@
107967107967
},
107968107968
"description": "Price of the Product."
107969107969
},
107970+
"customFields": {
107971+
"type": "object",
107972+
"description": "Additional fields that offer a possibility to add own fields for the different program-areas."
107973+
},
107970107974
"quantityStart": {
107971107975
"description": "Starting range of quantity of an item.",
107972107976
"type": "integer",
@@ -107977,10 +107981,6 @@
107977107981
"type": "integer",
107978107982
"format": "int64"
107979107983
},
107980-
"customFields": {
107981-
"type": "object",
107982-
"description": "Additional fields that offer a possibility to add own fields for the different program-areas."
107983-
},
107984107984
"createdAt": {
107985107985
"type": "string",
107986107986
"format": "date-time",
@@ -123682,39 +123682,62 @@
123682123682
"description": "Price object",
123683123683
"properties": {
123684123684
"currencyId": {
123685+
"description": "Unique identity of the associated currency.",
123685123686
"type": "string",
123686123687
"pattern": "^[0-9a-f]{32}$"
123687123688
},
123688123689
"gross": {
123689-
"description": "",
123690+
"description": "Gross price for the associated currency.",
123690123691
"type": "number"
123691123692
},
123692123693
"net": {
123693-
"description": "",
123694+
"description": "Net price for the associated currency.",
123694123695
"type": "number"
123695123696
},
123696123697
"linked": {
123697-
"description": "",
123698+
"description": "Whether gross and net prices are linked through the tax configuration.",
123698123699
"type": "boolean"
123699123700
},
123701+
"percentage": {
123702+
"description": "Discount percentage relative to the list price for the gross and net amounts. `null` when no list price is set.",
123703+
"type": [
123704+
"object",
123705+
"null"
123706+
],
123707+
"properties": {
123708+
"gross": {
123709+
"description": "Discount percentage relative to the gross list price.",
123710+
"type": "number"
123711+
},
123712+
"net": {
123713+
"description": "Discount percentage relative to the net list price.",
123714+
"type": "number"
123715+
}
123716+
},
123717+
"required": [
123718+
"gross",
123719+
"net"
123720+
]
123721+
},
123700123722
"listPrice": {
123701-
"description": "",
123723+
"description": "Reference list price for displaying discounts.",
123702123724
"type": "object",
123703123725
"properties": {
123704123726
"currencyId": {
123727+
"description": "Unique identity of the associated currency.",
123705123728
"type": "string",
123706123729
"pattern": "^[0-9a-f]{32}$"
123707123730
},
123708123731
"gross": {
123709-
"description": "",
123732+
"description": "Gross list price for the associated currency.",
123710123733
"type": "number"
123711123734
},
123712123735
"net": {
123713-
"description": "",
123736+
"description": "Net list price for the associated currency.",
123714123737
"type": "number"
123715123738
},
123716123739
"linked": {
123717-
"description": "",
123740+
"description": "Whether gross and net list prices are linked through the tax configuration.",
123718123741
"type": "boolean"
123719123742
}
123720123743
},
@@ -123725,23 +123748,24 @@
123725123748
]
123726123749
},
123727123750
"regulationPrice": {
123728-
"description": "",
123751+
"description": "Reference price used for legal price disclosures.",
123729123752
"type": "object",
123730123753
"properties": {
123731123754
"currencyId": {
123755+
"description": "Unique identity of the associated currency.",
123732123756
"type": "string",
123733123757
"pattern": "^[0-9a-f]{32}$"
123734123758
},
123735123759
"gross": {
123736-
"description": "",
123760+
"description": "Gross regulation price for the associated currency.",
123737123761
"type": "number"
123738123762
},
123739123763
"net": {
123740-
"description": "",
123764+
"description": "Net regulation price for the associated currency.",
123741123765
"type": "number"
123742123766
},
123743123767
"linked": {
123744-
"description": "",
123768+
"description": "Whether gross and net regulation prices are linked through the tax configuration.",
123745123769
"type": "boolean"
123746123770
}
123747123771
},

0 commit comments

Comments
 (0)