forked from MaRDI4NFDI/mathpipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.template.yaml
119 lines (119 loc) · 2.83 KB
/
spec.template.yaml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
swagger: '2.0'
info:
version: 0.2.1
title: WMF Node.JS Service Template
description: A template for creating Node.JS services
termsOfService: https://wikimediafoundation.org/wiki/Terms_of_Use
contact:
name: the Wikimedia Services team
url: http://mediawiki.org/wiki/Services
license:
name: Apache2
url: http://www.apache.org/licenses/LICENSE-2.0
x-default-params:
domain: en.wikipedia.org
paths:
# from routes/root.js
/robots.txt:
get:
tags:
- Root
- Robots
description: Gets robots.txt
x-amples:
- title: robots.txt check
request: {}
response:
status: 200
headers:
user-agent: '*'
disallow: '/'
/:
get:
tags:
- Root
description: The root service end-point
produces:
- application/json
x-amples:
- title: root with no query params
request: {}
response:
status: 404
- title: spec from root
request:
query:
spec: true
response:
status: 200
- title: root with wrong query param
request:
query:
fooo: true
response:
status: 404
# from routes/info.js
/_info:
get:
tags:
- Service information
description: Gets information about the service
produces:
- application/json
x-amples:
- title: retrieve service info
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
description: /.+/
version: /.+/
home: /.+/
/_info/name:
get:
tags:
- Service information
- Service name
description: Gets the name of the service
produces:
- application/json
x-amples:
- title: retrieve service name
request: {}
response:
status: 200
headers:
content-type: application/json
body:
name: /.+/
/_info/version:
get:
tags:
- Service information
- Service version
description: Gets the running version of the service
produces:
- application/json
x-amples:
- title: retrieve service version
request: {}
response:
status: 200
headers:
content-type: application/json
body:
version: /.+/
/_info/home:
get:
tags:
- Service information
- Service homepage
description: Redirects to the home page
x-amples:
- title: redirect to the home page
request: {}
response:
status: 301