-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yaml
586 lines (585 loc) · 14.2 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
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
components:
schemas:
AudioValidator:
description: Validator model for audio devices
properties:
identifier:
title: Identifier
type: string
model:
title: Model
type: string
vendor:
title: Vendor
type: string
required:
- model
- vendor
- identifier
title: AudioValidator
type: object
BiosValidator:
properties:
firmware_revision:
anyOf:
- type: string
- type: 'null'
title: Firmware Revision
release_date:
anyOf:
- format: date
type: string
- type: 'null'
title: Release Date
revision:
anyOf:
- type: string
- type: 'null'
title: Revision
vendor:
title: Vendor
type: string
version:
title: Version
type: string
required:
- vendor
- version
- revision
- firmware_revision
- release_date
title: BiosValidator
type: object
BoardValidator:
properties:
manufacturer:
title: Manufacturer
type: string
product_name:
title: Product Name
type: string
version:
title: Version
type: string
required:
- manufacturer
- product_name
- version
title: BoardValidator
type: object
CertificationStatusRequest:
description: Request body validator for status check endpoint
properties:
architecture:
title: Architecture
type: string
bios:
anyOf:
- $ref: '#/components/schemas/BiosValidator'
- type: 'null'
board:
$ref: '#/components/schemas/BoardValidator'
chassis:
anyOf:
- $ref: '#/components/schemas/ChassisValidator'
- type: 'null'
model:
title: Model
type: string
os:
$ref: '#/components/schemas/OSValidator'
pci_peripherals:
default: []
items:
$ref: '#/components/schemas/PCIPeripheralValidator'
title: Pci Peripherals
type: array
processor:
$ref: '#/components/schemas/ProcessorValidator'
usb_peripherals:
default: []
items:
$ref: '#/components/schemas/USBPeripheralValidator'
title: Usb Peripherals
type: array
vendor:
title: Vendor
type: string
required:
- vendor
- model
- architecture
- board
- os
- processor
title: CertificationStatusRequest
type: object
CertifiedImageExistsResponse:
properties:
architecture:
title: Architecture
type: string
available_releases:
items:
$ref: '#/components/schemas/OSValidator'
title: Available Releases
type: array
bios:
anyOf:
- $ref: '#/components/schemas/BiosValidator'
- type: 'null'
board:
$ref: '#/components/schemas/BoardValidator'
chassis:
anyOf:
- $ref: '#/components/schemas/ChassisValidator'
- type: 'null'
status:
const: Certified Image Exists
default: Certified Image Exists
title: Status
type: string
required:
- architecture
- bios
- board
- available_releases
title: CertifiedImageExistsResponse
type: object
CertifiedResponse:
properties:
architecture:
title: Architecture
type: string
available_releases:
items:
$ref: '#/components/schemas/OSValidator'
title: Available Releases
type: array
bios:
anyOf:
- $ref: '#/components/schemas/BiosValidator'
- type: 'null'
board:
$ref: '#/components/schemas/BoardValidator'
chassis:
anyOf:
- $ref: '#/components/schemas/ChassisValidator'
- type: 'null'
status:
const: Certified
default: Certified
title: Status
type: string
required:
- architecture
- bios
- board
- available_releases
title: CertifiedResponse
type: object
ChassisValidator:
properties:
chassis_type:
title: Chassis Type
type: string
manufacturer:
title: Manufacturer
type: string
sku:
title: Sku
type: string
version:
title: Version
type: string
required:
- chassis_type
- manufacturer
- sku
- version
title: ChassisValidator
type: object
DeviceStatus:
enum:
- known-working
- known-breaking
- unknown
title: DeviceStatus
type: string
GPUValidator:
properties:
codename:
anyOf:
- type: string
- type: 'null'
title: Codename
identifier:
title: Identifier
type: string
manufacturer:
title: Manufacturer
type: string
status:
anyOf:
- $ref: '#/components/schemas/DeviceStatus'
- type: 'null'
version:
title: Version
type: string
required:
- manufacturer
- version
- identifier
title: GPUValidator
type: object
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
title: Detail
type: array
title: HTTPValidationError
type: object
KernelPackageValidator:
properties:
loaded_modules:
default: []
items:
type: string
title: Loaded Modules
type: array
name:
anyOf:
- type: string
- type: 'null'
title: Name
signature:
anyOf:
- type: string
- type: 'null'
title: Signature
version:
title: Version
type: string
required:
- name
- version
- signature
title: KernelPackageValidator
type: object
NetworkAdapterValidator:
description: Validator for ethernet network adapters
properties:
bus:
title: Bus
type: string
capacity:
title: Capacity
type: integer
identifier:
title: Identifier
type: string
model:
title: Model
type: string
vendor:
title: Vendor
type: string
required:
- bus
- identifier
- model
- vendor
- capacity
title: NetworkAdapterValidator
type: object
NotCertifiedResponse:
properties:
status:
const: Not Seen
default: Not Seen
title: Status
type: string
title: NotCertifiedResponse
type: object
OSValidator:
properties:
codename:
title: Codename
type: string
distributor:
title: Distributor
type: string
kernel:
$ref: '#/components/schemas/KernelPackageValidator'
version:
title: Version
type: string
required:
- distributor
- version
- codename
- kernel
title: OSValidator
type: object
PCIPeripheralValidator:
properties:
name:
title: Name
type: string
pci_id:
title: Pci Id
type: string
status:
anyOf:
- $ref: '#/components/schemas/DeviceStatus'
- type: 'null'
vendor:
title: Vendor
type: string
required:
- pci_id
- name
- vendor
title: PCIPeripheralValidator
type: object
ProcessorValidator:
properties:
frequency:
title: Frequency
type: integer
identifier:
anyOf:
- items:
type: integer
type: array
- type: 'null'
title: Identifier
manufacturer:
title: Manufacturer
type: string
version:
title: Version
type: string
required:
- identifier
- frequency
- manufacturer
- version
title: ProcessorValidator
type: object
RelatedCertifiedSystemExistsResponse:
properties:
architecture:
title: Architecture
type: string
audio:
anyOf:
- items:
$ref: '#/components/schemas/AudioValidator'
type: array
- type: 'null'
title: Audio
available_releases:
items:
$ref: '#/components/schemas/OSValidator'
title: Available Releases
type: array
bios:
anyOf:
- $ref: '#/components/schemas/BiosValidator'
- type: 'null'
board:
$ref: '#/components/schemas/BoardValidator'
chassis:
anyOf:
- $ref: '#/components/schemas/ChassisValidator'
- type: 'null'
gpu:
anyOf:
- items:
$ref: '#/components/schemas/GPUValidator'
type: array
- type: 'null'
title: Gpu
network:
anyOf:
- items:
$ref: '#/components/schemas/NetworkAdapterValidator'
type: array
- type: 'null'
title: Network
pci_peripherals:
default: []
items:
$ref: '#/components/schemas/PCIPeripheralValidator'
title: Pci Peripherals
type: array
status:
const: Related Certified System Exists
default: Related Certified System Exists
title: Status
type: string
usb_peripherals:
default: []
items:
$ref: '#/components/schemas/USBPeripheralValidator'
title: Usb Peripherals
type: array
video:
anyOf:
- items:
$ref: '#/components/schemas/VideoCaptureValidator'
type: array
- type: 'null'
title: Video
wireless:
anyOf:
- items:
$ref: '#/components/schemas/WirelessAdapterValidator'
type: array
- type: 'null'
title: Wireless
required:
- architecture
- board
- bios
- available_releases
title: RelatedCertifiedSystemExistsResponse
type: object
USBPeripheralValidator:
properties:
name:
title: Name
type: string
status:
anyOf:
- $ref: '#/components/schemas/DeviceStatus'
- type: 'null'
usb_id:
title: Usb Id
type: string
vendor:
title: Vendor
type: string
required:
- usb_id
- name
- vendor
title: USBPeripheralValidator
type: object
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
title: Location
type: array
msg:
title: Message
type: string
type:
title: Error Type
type: string
required:
- loc
- msg
- type
title: ValidationError
type: object
VideoCaptureValidator:
description: Validator model for video capture devices
properties:
identifier:
title: Identifier
type: string
model:
title: Model
type: string
status:
anyOf:
- $ref: '#/components/schemas/DeviceStatus'
- type: 'null'
vendor:
title: Vendor
type: string
required:
- model
- vendor
- identifier
title: VideoCaptureValidator
type: object
WirelessAdapterValidator:
description: Validator model for wireless network adapters
properties:
identifier:
title: Identifier
type: string
model:
title: Model
type: string
status:
anyOf:
- $ref: '#/components/schemas/DeviceStatus'
- type: 'null'
vendor:
title: Vendor
type: string
required:
- model
- vendor
- identifier
title: WirelessAdapterValidator
type: object
info:
description: API server for working with hardware information from C3
title: Hardware API (hwapi)
version: 1.0.0
openapi: 3.1.0
paths:
/:
get:
operationId: root__get
responses:
'200':
content:
application/json:
schema: {}
description: Successful Response
summary: Root
/v1/certification/status:
post:
description: 'Endpoint for checking certification status (whether a system is
certified, not seen
or some of its components have been seen on other systems)'
operationId: check_certification_v1_certification_status_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CertificationStatusRequest'
required: true
responses:
'200':
content:
application/json:
schema:
anyOf:
- $ref: '#/components/schemas/CertifiedResponse'
- $ref: '#/components/schemas/NotCertifiedResponse'
- $ref: '#/components/schemas/RelatedCertifiedSystemExistsResponse'
- $ref: '#/components/schemas/CertifiedImageExistsResponse'
title: Response Check Certification V1 Certification Status Post
description: Successful Response
'422':
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
description: Validation Error
summary: Check Certification
tags:
- certification