-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathuser-templates-api-spec.yaml
More file actions
219 lines (219 loc) · 5.88 KB
/
user-templates-api-spec.yaml
File metadata and controls
219 lines (219 loc) · 5.88 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
openapi: 3.0.0
info:
title: HuBMAP User Templates API
description: The User Templates API returns pre-defined templates to be used by interactive services (such as JupyterLab).
version: 1.0.2
termsOfService: 'https://hubmapconsortium.org'
contact:
name: HuBMAP Help Desk
email: help@hubmapconsortium.org
license:
name: MIT License
url: 'https://github.com/hubmapconsortium/user_workspaces_server/blob/master/license.txt'
servers:
- url: "https://user-templates.api.hubmapconsortium.org/"
components:
schemas:
GetTagsResponse:
type: object
properties:
message:
type: string
success:
type: boolean
data:
type: object
additionalProperties:
type: string
example:
sdk: HuBMAP Python SDK
api: HuBMAP API
GetTemplateTypesResponse:
type: object
properties:
message:
type: string
success:
type: boolean
data:
type: object
properties:
template_type_name:
type: object
properties:
usw_job_type:
type: string
example: jupyter_lab
description: This is tied to the User Workspaces Server
description:
type: string
example: Templates that can be used through JupyterLab as .ipynb files
GetTemplatesResponse:
type: object
properties:
message:
type: string
success:
type: boolean
data:
type: object
properties:
template_name:
type: object
properties:
template_title:
type: string
example: JupyterLab Vitessce Visualization
description:
type: string
example: This notebook allows the user to visualize a specific dataset using the vitessce framework.
PostTemplateResponse:
type: object
properties:
message:
type: string
success:
type: boolean
data:
type: object
properties:
template:
type: string
TemplateRequest:
type: object
properties:
uuids:
type: array
items:
type: string
TestTemplateRequest:
type: object
properties:
uuids:
type: array
items:
type: string
template:
type: object
paths:
'/template_types/':
get:
tags:
- Template Types
summary: Get a list of available template types.
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GetTemplateTypesResponse'
'/templates/{template_type}/':
get:
tags:
- Templates
summary: Get templates related to a template type.
parameters:
- name: template_type
in: path
description: Type of template.
required: true
schema:
type: string
example: jupyter_lab
- name: tags
in: query
description: Tags to find a specific type of template
required: false
schema:
type: array
items:
type: string
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GetTemplatesResponse'
'/templates/{template_type}/{template_name}/':
post:
tags:
- Templates
summary: Generate a template.
parameters:
- name: template_type
in: path
description: Type of template.
required: true
schema:
type: string
example: jupyter_lab
- name: template_name
in: path
description: Name of template.
required: true
schema:
type: string
example: visualization
requestBody:
description: Details provided to template for generation.
content:
'application/json':
schema:
$ref: '#/components/schemas/TemplateRequest'
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/PostTemplateResponse'
'/test_templates/{template_type}/{template_format}/':
post:
tags:
- Test Templates
summary: Generate a template.
parameters:
- name: template_type
in: path
description: Type of template.
required: true
schema:
type: string
example: jupyter_lab
- name: template_format
in: path
description: Format of template.
required: true
schema:
type: string
example: json
requestBody:
description: Details provided to template for generation.
content:
'application/json':
schema:
$ref: '#/components/schemas/TestTemplateRequest'
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/PostTemplateResponse'
'/tags/':
get:
tags:
- Tags
summary: Get tags available for querying
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/GetTagsResponse'
tags:
- name: Templates
- name: Template Types