-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlgo_OpenAPI_V0.yaml
346 lines (322 loc) · 10.2 KB
/
Algo_OpenAPI_V0.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
openapi: 3.0.0
info:
title: Algo API
version: 0.0.0
description: This API describe what the endpoints a service that want to be an algo-provider must implement
contact:
name: Tom Mansion
email: [email protected]
tags:
- name: Algorithms
paths:
/algorithms:
get:
description: Get the list of algorithms that this service can provide
operationId: algorithms.algorithms.get_algorithms
tags:
- Algorithms
responses:
"200":
description: The list of algorithms
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Algorithm"
/algorithms/{algorithmId}/run:
post:
description: Run an algorithm
operationId: algorithms.algorithms.use_algorithm
tags:
- Algorithms
parameters:
- name: algorithmId
in: path
description: The id of the algorithm to run
required: true
schema:
type: string
requestBody:
description: The inputs of the algorithm
required: true
content:
application/json:
schema:
type: object
required:
- inputs
properties:
inputs:
type: array
description: The inputs of the algorithm
items:
oneOf:
- $ref: "#/components/schemas/ValueString"
- $ref: "#/components/schemas/ValueNumber"
- $ref: "#/components/schemas/ValueBoolean"
- $ref: "#/components/schemas/ValueArray"
responses:
"200":
description: The outputs of the algorithm
content:
application/json:
schema:
type: object
required:
- outputs
properties:
outputs:
type: array
description: The results of the algorithm
items:
oneOf:
- $ref: "#/components/schemas/ValueString"
- $ref: "#/components/schemas/ValueNumber"
- $ref: "#/components/schemas/ValueBoolean"
- $ref: "#/components/schemas/ValueArray"
"400":
description: The inputs are not valid
content:
application/json:
schema:
type: string
example: "The inputs are not valid"
components:
schemas:
Algorithm:
type: object
description: Informations about an algorithm
required:
- id
- version
- inputs
- outputs
properties:
id:
type: string
description: The id of the algorithm, must be unique, will be used to identify the algorithm
example: "my-algorithm-01"
name:
type: string
description: The name of the algorithm
example: "My algorithm 01"
description:
type: string
description: The description of the algorithm
example: "This algorithm is used to do something"
tags:
type: array
description: The list of tags of the algorithm
items:
type: string
example: ["tag1", "tag2"]
author:
type: string
description: The author of the algorithm
example: "Ada Lovelace"
creationDate:
type: string
description: The creation date of the algorithm, ISO 8601 format, YYYY-MM-DD
example: "2023-01-01"
format: date
updateDate:
type: string
description: The last update date of the algorithm, ISO 8601 format, YYYY-MM-DD
example: "2023-03-20"
format: date
nullable: true
version:
type: string
description: The version of the algorithm
example: "0.1.0"
inputs:
type: array
description: The list of inputs of the algorithm
items:
oneOf:
- $ref: "#/components/schemas/ValueInformationString"
- $ref: "#/components/schemas/ValueInformationNumber"
- $ref: "#/components/schemas/ValueInformationBoolean"
- $ref: "#/components/schemas/ValueInformationArray"
outputs:
type: array
description: The list of outputs of the algorithm
items:
oneOf:
- $ref: "#/components/schemas/ValueInformationString"
- $ref: "#/components/schemas/ValueInformationNumber"
- $ref: "#/components/schemas/ValueInformationBoolean"
- $ref: "#/components/schemas/ValueInformationArray"
# Get algorithm Input and output informations
DataValueInformation:
type: object
description: Informations about an input or an output value of an algorithm
required:
- name
- type
properties:
name:
type: string
description: The name of the input or output, must be unique, will be used to identify the input or output
example: "my_data_01"
type:
type: string
description: The type of the input or output, only string, number, boolean and array are supported
example: "string"
enum:
- string
- number
- boolean
- array
description:
type: string
description: The description of the input or output
example: "This data is used to do something"
ValueInformationString:
allOf:
- $ref: "#/components/schemas/DataValueInformation"
- type: object
description: A string value
properties:
type:
type: string
example: "string"
enum:
- string
availableValues:
type: array
description: The list of available values for this input
items:
type: string
example: ["my value", "my other value"]
default:
type: string
description: The default value for this input
example: "my value"
ValueInformationNumber:
allOf:
- $ref: "#/components/schemas/DataValueInformation"
- type: object
description: A number, float or integer
properties:
type:
type: string
example: "number"
enum:
- number
availableValues:
type: array
description: The list of available values for this input
items:
type: number
example: [1, 2, 3]
min:
type: number
description: The minimum value for this input
example: 0
max:
type: number
description: The maximum value for this input
example: 10
default:
type: number
description: The default value for this input
example: 5
ValueInformationBoolean:
allOf:
- $ref: "#/components/schemas/DataValueInformation"
- type: object
description: A boolean value
properties:
type:
type: string
example: "boolean"
enum:
- boolean
default:
type: boolean
description: The default value for this input
example: true
ValueInformationArray:
allOf:
- $ref: "#/components/schemas/DataValueInformation"
- type: object
description: An array of values
required:
- arrayType
properties:
type:
type: string
example: "array"
enum:
- array
arrayType:
type: string
description: Specify type of the array, only string, number and boolean supported
example: "string"
enum:
- string
- number
- boolean
- dict
- array
lengthMin:
type: number
description: The minimum length of the array
example: 0
lengthMax:
type: number
description: The maximum length of the array
example: 10
# Use algorithm Input and output informations
DataValue:
type: object
description: A value of an input or an output of an algorithm
required:
- name
- value
properties:
name:
type: string
description: The name of the input or output, must be unique, match the name of the input or output of the algorithm
example: "my_data_01"
value:
description: The value of the input or output, must match the type of the input or output of the algorithm
ValueString:
allOf:
- $ref: "#/components/schemas/DataValue"
- type: object
description: A string value
properties:
value:
type: string
example: "my value"
ValueNumber:
allOf:
- $ref: "#/components/schemas/DataValue"
- type: object
description: A number, float or integer
properties:
value:
type: number
example: 2
ValueBoolean:
allOf:
- $ref: "#/components/schemas/DataValue"
- type: object
description: A boolean value
properties:
value:
type: boolean
example: true
ValueArray:
allOf:
- $ref: "#/components/schemas/DataValue"
- type: object
description: An array of values
properties:
value:
type: array
description: A list of value that is an input or an output of the algorithm
example: [1, 2, 3]