-
Notifications
You must be signed in to change notification settings - Fork 11
/
openapi.yaml
217 lines (215 loc) · 4.97 KB
/
openapi.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
openapi: 3.0.3
info:
title: Lynx Scanner
description: Lynx Scanner API
version: 1.0.0
servers:
- url: 'http://localhost:{port}'
description: Local server
variables:
port:
default: '8080'
- url: 'https://{stage}.lynx.ssegning.com'
description: Production server
variables:
stage:
default: 'dev'
enum:
- dev
- api
tags:
- name: file
- name: scan
paths:
'/api/files/upload':
post:
summary: Upload a file
tags: [file]
operationId: uploadFile
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/FileUploadResponse'
requestBody:
content:
multipart/form-data:
schema:
$ref: '#/components/schemas/FileUpload'
'/api/files/download/{file_id}':
get:
summary: Get a file
tags: [file]
operationId: getFile
parameters:
- name: file_id
in: path
required: true
description: File ID
schema:
type: string
responses:
'200':
description: OK
content:
application/octet-stream:
schema:
type: string
format: binary
'404':
description: 'File not found'
'500':
description: 'Internal server error'
'/api/scans':
get:
summary: Get all scans
tags: [scan]
operationId: getScans
description: Get all scans
parameters:
- name: page
in: query
required: false
description: Page number
schema:
type: number
- name: size
in: query
required: false
description: Size of page
schema:
type: number
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Scan'
'500':
description: 'Internal server error'
post:
summary: Create a scan
tags: [scan]
operationId: createScan
description: Create a scan
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Scan'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Scan'
'400':
description: 'Bad request'
'500':
description: 'Internal server error'
'/api/scans/{scan_id}':
get:
summary: Get a scan
tags: [scan]
operationId: getScan
description: Get a scan
parameters:
- name: scan_id
in: path
required: true
description: Scan ID
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Scan'
'404':
description: 'Scan not found'
'500':
description: 'Internal server error'
put:
summary: Update a scan
tags: [scan]
operationId: updateScan
description: Update a scan
parameters:
- name: scan_id
in: path
required: true
description: Scan ID
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Scan'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Scan'
'400':
description: 'Bad request'
'404':
description: 'Scan not found'
'500':
description: 'Internal server error'
delete:
summary: Delete a scan
tags: [scan]
operationId: deleteScan
description: Delete a scan
parameters:
- name: scan_id
in: path
required: true
description: Scan ID
schema:
type: string
responses:
'200':
description: OK
'404':
description: 'Scan not found'
'500':
description: 'Internal server error'
components:
schemas:
Scan:
type: object
properties:
id:
type: string
created_at:
type: string
updated_at:
type: string
meta_data:
additionalProperties:
type: string
title:
type: string
FileUpload:
type: object
properties:
file:
type: string
format: binary
FileUploadResponse:
type: object
properties:
file_id:
type: string