Skip to content

Commit

Permalink
readd all openapi specs (tests depend on them)
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Dec 3, 2024
1 parent e8fd7a7 commit d02c990
Show file tree
Hide file tree
Showing 10 changed files with 35,657 additions and 0 deletions.
7,121 changes: 7,121 additions & 0 deletions services/api-server/openapi.json

Large diffs are not rendered by default.

4,178 changes: 4,178 additions & 0 deletions services/catalog/openapi.json

Large diffs are not rendered by default.

4,548 changes: 4,548 additions & 0 deletions services/director-v2/openapi.json

Large diffs are not rendered by default.

93 changes: 93 additions & 0 deletions services/dynamic-scheduler/openapi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"openapi": "3.1.0",
"info": {
"title": "simcore-service-dynamic-scheduler web API",
"description": "Service that manages lifecycle of dynamic services",
"version": "1.0.0"
},
"paths": {
"/": {
"get": {
"summary": "Healthcheck",
"operationId": "healthcheck__get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/v1/meta": {
"get": {
"tags": [
"meta"
],
"summary": "Get Service Metadata",
"operationId": "get_service_metadata_v1_meta_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Meta"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Meta": {
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"version": {
"type": "string",
"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-]+)*)?$",
"title": "Version"
},
"released": {
"anyOf": [
{
"additionalProperties": {
"type": "string",
"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-]+)*)?$"
},
"type": "object"
},
{
"type": "null"
}
],
"title": "Released",
"description": "Maps every route's path tag with a released version"
},
"docs_url": {
"type": "string",
"title": "Docs Url"
}
},
"type": "object",
"required": [
"name",
"version",
"docs_url"
],
"title": "Meta"
}
}
}
}
Loading

0 comments on commit d02c990

Please sign in to comment.