Skip to content

Commit 1bf1d05

Browse files
author
Andrei Neagu
committed
update openapi specs
1 parent b3a961f commit 1bf1d05

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

services/catalog/openapi.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,60 @@
190190
}
191191
}
192192
},
193+
"/v0/services/{service_key}/{service_version}/extras": {
194+
"get": {
195+
"tags": [
196+
"services"
197+
],
198+
"summary": "Get Service Extras",
199+
"operationId": "get_service_extras_v0_services__service_key___service_version__extras_get",
200+
"parameters": [
201+
{
202+
"name": "service_key",
203+
"in": "path",
204+
"required": true,
205+
"schema": {
206+
"type": "string",
207+
"pattern": "^simcore/services/((comp|dynamic|frontend))/([a-z0-9][a-z0-9_.-]*/)*([a-z0-9-_]+[a-z0-9])$",
208+
"title": "Service Key"
209+
}
210+
},
211+
{
212+
"name": "service_version",
213+
"in": "path",
214+
"required": true,
215+
"schema": {
216+
"type": "string",
217+
"pattern": "^(0|[1-9]\\d*)(\\.(0|[1-9]\\d*)){2}(-(0|[1-9]\\d*|\\d*[-a-zA-Z][-\\da-zA-Z]*)(\\.(0|[1-9]\\d*|\\d*[-a-zA-Z][-\\da-zA-Z]*))*)?(\\+[-\\da-zA-Z]+(\\.[-\\da-zA-Z-]+)*)?$",
218+
"title": "Service Version"
219+
}
220+
}
221+
],
222+
"responses": {
223+
"200": {
224+
"description": "Successful Response",
225+
"content": {
226+
"application/json": {
227+
"schema": {
228+
"type": "object",
229+
"title": "Response Get Service Extras V0 Services Service Key Service Version Extras Get"
230+
}
231+
}
232+
}
233+
},
234+
"422": {
235+
"description": "Validation Error",
236+
"content": {
237+
"application/json": {
238+
"schema": {
239+
"$ref": "#/components/schemas/HTTPValidationError"
240+
}
241+
}
242+
}
243+
}
244+
}
245+
}
246+
},
193247
"/v0/services/{service_key}/{service_version}/specifications": {
194248
"get": {
195249
"tags": [

0 commit comments

Comments
 (0)