Skip to content

Commit 1bc8052

Browse files
open api specs
1 parent 54ee485 commit 1bc8052

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-2
lines changed

services/api-server/openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6469,7 +6469,8 @@
64696469
"PricingPlanClassification": {
64706470
"type": "string",
64716471
"enum": [
6472-
"TIER"
6472+
"TIER",
6473+
"LICENSE"
64736474
],
64746475
"title": "PricingPlanClassification"
64756476
},

services/resource-usage-tracker/openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,8 @@
378378
"PricingPlanClassification": {
379379
"type": "string",
380380
"enum": [
381-
"TIER"
381+
"TIER",
382+
"LICENSE"
382383
],
383384
"title": "PricingPlanClassification"
384385
},

services/web/server/src/simcore_service_webserver/api/v0/openapi.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9996,6 +9996,60 @@ components:
99969996
additionalProperties: false
99979997
type: object
99989998
title: InvitationInfo
9999+
LicensedItemGet:
10000+
properties:
10001+
licensedItemId:
10002+
type: string
10003+
format: uuid
10004+
title: Licenseditemid
10005+
name:
10006+
type: string
10007+
title: Name
10008+
licensedResourceType:
10009+
$ref: '#/components/schemas/LicensedResourceType'
10010+
pricingPlanId:
10011+
type: integer
10012+
exclusiveMinimum: true
10013+
title: Pricingplanid
10014+
minimum: 0
10015+
createdAt:
10016+
type: string
10017+
format: date-time
10018+
title: Createdat
10019+
modifiedAt:
10020+
type: string
10021+
format: date-time
10022+
title: Modifiedat
10023+
type: object
10024+
required:
10025+
- licensedItemId
10026+
- name
10027+
- licensedResourceType
10028+
- pricingPlanId
10029+
- createdAt
10030+
- modifiedAt
10031+
title: LicensedItemGet
10032+
LicensedItemsBodyParams:
10033+
properties:
10034+
wallet_id:
10035+
type: integer
10036+
exclusiveMinimum: true
10037+
title: Wallet Id
10038+
minimum: 0
10039+
num_of_seeds:
10040+
type: integer
10041+
title: Num Of Seeds
10042+
additionalProperties: false
10043+
type: object
10044+
required:
10045+
- wallet_id
10046+
- num_of_seeds
10047+
title: LicensedItemsBodyParams
10048+
LicensedResourceType:
10049+
type: string
10050+
enum:
10051+
- VIP_MODEL
10052+
title: LicensedResourceType
999910053
Limits:
1000010054
properties:
1000110055
cpus:
@@ -11378,6 +11432,7 @@ components:
1137811432
type: string
1137911433
enum:
1138011434
- TIER
11435+
- LICENSE
1138111436
title: PricingPlanClassification
1138211437
PricingPlanToServiceAdminGet:
1138311438
properties:

0 commit comments

Comments
 (0)