-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathopenapi.json
More file actions
54 lines (54 loc) · 1.23 KB
/
openapi.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"openapi": "3.1.0",
"info": {
"title": "simcore-service-notifications",
"description": "Service used for sending notifications to users via different channels",
"version": "0.1.0"
},
"servers": [
{
"url": "/",
"description": "Default server: requests directed to serving url"
}
],
"paths": {
"/": {
"get": {
"summary": "Check Service Health",
"operationId": "check_service_health__get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HealthCheckGet"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"HealthCheckGet": {
"properties": {
"timestamp": {
"type": "string",
"title": "Timestamp"
}
},
"type": "object",
"required": [
"timestamp"
],
"title": "HealthCheckGet",
"example": {
"timestamp": "simcore_service_directorv2.api.routes.health@2023-07-03T12:59:12.024551+00:00"
}
}
}
}
}