Skip to content

Commit 7bf6586

Browse files
committed
updates OAS
1 parent 9c518df commit 7bf6586

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

services/catalog/openapi.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2692,7 +2692,7 @@
26922692
"anyOf": [
26932693
{
26942694
"additionalProperties": {
2695-
"$ref": "#/components/schemas/ServiceGroupAccessRightsV2"
2695+
"$ref": "#/components/schemas/ServiceGroupAccessRights"
26962696
},
26972697
"type": "object"
26982698
},
@@ -2877,22 +2877,23 @@
28772877
],
28782878
"title": "ServiceGet"
28792879
},
2880-
"ServiceGroupAccessRightsV2": {
2880+
"ServiceGroupAccessRights": {
28812881
"properties": {
2882-
"execute": {
2882+
"execute_access": {
28832883
"type": "boolean",
2884-
"title": "Execute",
2884+
"title": "Execute Access",
2885+
"description": "defines whether the group can execute the service",
28852886
"default": false
28862887
},
2887-
"write": {
2888+
"write_access": {
28882889
"type": "boolean",
2889-
"title": "Write",
2890+
"title": "Write Access",
2891+
"description": "defines whether the group can modify the service",
28902892
"default": false
28912893
}
28922894
},
2893-
"additionalProperties": false,
28942895
"type": "object",
2895-
"title": "ServiceGroupAccessRightsV2"
2896+
"title": "ServiceGroupAccessRights"
28962897
},
28972898
"ServiceInput": {
28982899
"properties": {

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7450,6 +7450,11 @@ components:
74507450
- type: string
74517451
- type: 'null'
74527452
title: Thumbnail
7453+
icon:
7454+
anyOf:
7455+
- type: string
7456+
- type: 'null'
7457+
title: Icon
74537458
description:
74547459
type: string
74557460
title: Description
@@ -7580,6 +7585,7 @@ components:
75807585
version: 0.9.0
75817586
- version: 0.8.0
75827587
- version: 0.1.0
7588+
icon: https://cdn-icons-png.flaticon.com/512/25/25231.png
75837589
inputs:
75847590
input0:
75857591
contentSchema:
@@ -7624,6 +7630,14 @@ components:
76247630
format: uri
76257631
- type: 'null'
76267632
title: Thumbnail
7633+
icon:
7634+
anyOf:
7635+
- type: string
7636+
maxLength: 2083
7637+
minLength: 1
7638+
format: uri
7639+
- type: 'null'
7640+
title: Icon
76277641
description:
76287642
anyOf:
76297643
- type: string

0 commit comments

Comments
 (0)