Skip to content

Commit d02c990

Browse files
committed
readd all openapi specs (tests depend on them)
1 parent e8fd7a7 commit d02c990

File tree

10 files changed

+35657
-0
lines changed

10 files changed

+35657
-0
lines changed

services/api-server/openapi.json

Lines changed: 7121 additions & 0 deletions
Large diffs are not rendered by default.

services/catalog/openapi.json

Lines changed: 4178 additions & 0 deletions
Large diffs are not rendered by default.

services/director-v2/openapi.json

Lines changed: 4548 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"openapi": "3.1.0",
3+
"info": {
4+
"title": "simcore-service-dynamic-scheduler web API",
5+
"description": "Service that manages lifecycle of dynamic services",
6+
"version": "1.0.0"
7+
},
8+
"paths": {
9+
"/": {
10+
"get": {
11+
"summary": "Healthcheck",
12+
"operationId": "healthcheck__get",
13+
"responses": {
14+
"200": {
15+
"description": "Successful Response",
16+
"content": {
17+
"text/plain": {
18+
"schema": {
19+
"type": "string"
20+
}
21+
}
22+
}
23+
}
24+
}
25+
}
26+
},
27+
"/v1/meta": {
28+
"get": {
29+
"tags": [
30+
"meta"
31+
],
32+
"summary": "Get Service Metadata",
33+
"operationId": "get_service_metadata_v1_meta_get",
34+
"responses": {
35+
"200": {
36+
"description": "Successful Response",
37+
"content": {
38+
"application/json": {
39+
"schema": {
40+
"$ref": "#/components/schemas/Meta"
41+
}
42+
}
43+
}
44+
}
45+
}
46+
}
47+
}
48+
},
49+
"components": {
50+
"schemas": {
51+
"Meta": {
52+
"properties": {
53+
"name": {
54+
"type": "string",
55+
"title": "Name"
56+
},
57+
"version": {
58+
"type": "string",
59+
"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-]+)*)?$",
60+
"title": "Version"
61+
},
62+
"released": {
63+
"anyOf": [
64+
{
65+
"additionalProperties": {
66+
"type": "string",
67+
"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-]+)*)?$"
68+
},
69+
"type": "object"
70+
},
71+
{
72+
"type": "null"
73+
}
74+
],
75+
"title": "Released",
76+
"description": "Maps every route's path tag with a released version"
77+
},
78+
"docs_url": {
79+
"type": "string",
80+
"title": "Docs Url"
81+
}
82+
},
83+
"type": "object",
84+
"required": [
85+
"name",
86+
"version",
87+
"docs_url"
88+
],
89+
"title": "Meta"
90+
}
91+
}
92+
}
93+
}

0 commit comments

Comments
 (0)