Skip to content

Commit cabbe03

Browse files
OAS Update
1 parent c34893e commit cabbe03

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

services/stackit-marketplace/v1/stackit-marketplace.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,9 @@
501501
"name": {
502502
"$ref": "#/components/schemas/pricingOptionName"
503503
},
504+
"noticePeriod": {
505+
"$ref": "#/components/schemas/noticePeriod"
506+
},
504507
"priceType": {
505508
"$ref": "#/components/schemas/priceType"
506509
},
@@ -1037,6 +1040,29 @@
10371040
"pattern": "^[a-zA-ZäüöÄÜÖ0-9,.!?()@\\/:=\\n\\t -]+$",
10381041
"type": "string"
10391042
},
1043+
"noticePeriod": {
1044+
"description": "The notice period for a product and plan.",
1045+
"example": {
1046+
"type": "DAYS",
1047+
"value": 14
1048+
},
1049+
"properties": {
1050+
"type": {
1051+
"description": "The notice period type.",
1052+
"enum": [
1053+
"SAME_DAY",
1054+
"DAYS",
1055+
"MONTHS"
1056+
],
1057+
"type": "string"
1058+
},
1059+
"value": {
1060+
"description": "The value of the corresponding type. Omitted for _SAME_DAY_.",
1061+
"type": "integer"
1062+
}
1063+
},
1064+
"type": "object"
1065+
},
10401066
"offerType": {
10411067
"description": "The offer type of a product reflecting the business model.",
10421068
"enum": [

0 commit comments

Comments
 (0)