This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmarketplace_api.yaml
393 lines (390 loc) · 8.74 KB
/
marketplace_api.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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
openapi: 3.0.0
info:
version: "2.0.0"
title: "Marketplace API"
tags:
- name: Item
- name: User
paths:
/items:
post:
tags:
- Item
summary: Add a new marketplace item
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/MarketplaceItem"
responses:
201:
description: Return item id if created successfully
content:
text/plain:
schema:
type: string
405:
$ref: "#/components/responses/InvalidInput"
get:
tags:
- Item
summary: List marketplace items
parameters:
- in: query
name: name
schema:
type: string
- in: query
name: author
schema:
type: string
- in: query
name: type
schema:
type: string
- in: query
name: keyword
schema:
type: string
- in: query
name: source
schema:
type: string
responses:
200:
description: OK
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/MarketplaceItem"
/items/{itemId}:
parameters:
- name: itemId
in: path
required: true
schema:
type: string
get:
tags:
- Item
summary: Get specific marketplace item info
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/MarketplaceItem"
404:
$ref: "#/components/responses/404NotFound"
put:
tags:
- Item
summary: Update a marketplace item
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/MarketplaceItem"
responses:
200:
description: OK
404:
$ref: "#/components/responses/404NotFound"
405:
$ref: "#/components/responses/InvalidInput"
delete:
tags:
- Item
summary: delete a marketplace item
responses:
200:
description: OK
404:
$ref: "#/components/responses/404NotFound"
/storages/blobs:
get:
tags:
- Storage
parameters:
- name: type
in: query
schema:
type: string
enum: [blob]
- name: storageAccount
in: query
schema:
type: string
- name: containerName
in: query
schema:
type: string
- name: user
in: query
schema:
type: string
responses:
200:
description: Get blob storage matches query
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Storage"
post:
tags:
- Storage
summary: Add a new blob storage
requestBody:
required: true
content:
application/json:
schema:
type: object
$ref: "#/components/schemas/Storage"
responses:
201:
description: Return storage id if created successfully
content:
application/json:
schema:
type: object
properties:
id:
type: string
format: uuid
400:
description: Database vlidation error
content:
text/plain:
schema:
type: string
/storages/blobs/{blobId}:
parameters:
- name: blobId
in: path
required: true
schema:
type: string
get:
tags:
- Storage
summary: Get the blob storage of the specified id, 404 if not found
responses:
200:
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/Storage"
404:
description: Not Found
content:
text/plain:
schema:
type: string
put:
tags:
- Storage
summary: Update the blob storage of the specified id.
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/Storage"
responses:
200:
description: Updated successfully
content:
text/plain:
schema:
type: string
404:
description: Blob not found
content:
text/plain:
schema:
type: string
delete:
tags:
- Storage
summary: Delete the blob storage of the specified id.
responses:
200:
description: Deleted successfully
content:
text/plain:
schema:
type: string
404:
description: Blob not found
content:
text/plain:
schema:
type: string
components:
schemas:
MarketplaceItem:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
author:
type: string
type:
type: string
source:
type: string
enum: [marketplace, pai]
isPublic:
type: boolean
isPrivate:
type: boolean
groupList:
type: array
items:
type: string
dataType:
type: string
dataUrl:
type: string
categories:
type: array
items:
type: string
tags:
type: array
items:
type: string
summary:
type: string
description:
type: string
status:
type: string
enum: [pending, approved, rejected]
protocol:
type: string
description: "https://github.com/microsoft/openpai-protocol/blob/master/schemas/v2/schema.yaml"
useNumber:
type: number
starNumber:
type: number
createdAt:
type: string
format: "date-time"
updatedAt:
type: string
format: "date-time"
required:
- id
- name
- author
- type
- isPublic
- isPrivate
- groupList
Storage:
type: object
properties:
id:
type: string
format: uuid
type:
type: string
enum: [blob]
storageAccount:
type: string
containerName:
type: string
connectionStrings:
type: array
items:
type: string
tokens:
type: array
items:
type: string
users:
type: array
items:
type: string
createdAt:
type: string
format: "date-time"
updatedAt:
type: string
format: "date-time"
required:
- type
- storageAccount
- containerName
- connectionStrings
Data:
type: object
properties:
type:
type: string
description: public or platform
content:
oneOf:
- $ref: "#/components/schemas/PlatformStorage"
- $ref: "#/components/schemas/PublicStorage"
PlatformStorage:
type: object
properties:
storageName:
type: string
type:
type: string
description: pai storage type, nfs or azure blob
group:
type: string
PublicStorage:
type: object
properties:
url:
type: string
processScript:
type: string
Docker:
type: object
description: TODO
properties:
todo:
type: string
Model:
type: object
description: TODO
properties:
todo:
type: string
Job:
type: object
properties:
config:
type: string
User:
type: object
properties:
name:
type: string
groups:
type: array
items:
type: string
responses:
404NotFound:
description: The specified resource was not found.
InvalidInput:
description: Invalid input