-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
561 lines (551 loc) · 16.3 KB
/
openapi.yaml
File metadata and controls
561 lines (551 loc) · 16.3 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
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
openapi: 3.0.3
info:
title: REST API-profil - Lint Processor - OpenAPI 3.0
description: |-
This is a description.
Some useful links:
- [REST API-profil - Lint Processor (RAP-LP) repository](https://github.com/diggsweden/rest-api-profil-lint-processor/)
termsOfService: http://swagger.io/terms/
contact:
name: "test testsson"
email: apiteam@swagger.io
url: https://github.com/diggsweden/rest-api-profil-lint-processor/
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.11
externalDocs:
description: Find out more about RAPL-LP
url: https://www.dataportal.se/rest-api-profil
servers:
- url: http://localhost:3000/api/v1
tags:
- name: validate
description: Everything about your validations
externalDocs:
description: Find out more
url: http://swagger.io
paths:
/validation/validate:
post:
tags:
- validate
summary: Validate your yaml
description: Validate your yaml
operationId: validateContent
requestBody:
description: |-
Yaml can be sent as a base64 encoded file or a yaml string.
ContentType is specifying the type of yaml content being sent
content:
application/json:
schema:
$ref: "#/components/schemas/YamlContentDto"
example:
yaml: "<base64encoded file>"
categories:
- "DokRules"
- "UfnRules"
required: true
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationResponseDto"
example:
result:
- id: "AME.04"
omrade: "API Message"
krav: "För fältnamn i request och response body BÖR camelCase eller snake_case notation användas."
allvarlighetsgrad: "WARNING"
sokvag:
- "components"
- "schemas"
- "ValidationResponseDto"
- "properties"
- "report"
- "items"
- "properties"
- "Notering"
omfattning:
start:
character: 0
line: 0
end:
character: 0
line: 0
report:
- Notering: "Godkända regler - RAP-LP"
regler:
- id: "UFN.05"
omrade: "URL Format och namngivning"
status: "OK"
- Notering: "Ej Godkända regler - RAP-LP"
regler:
- id: "DOK.03"
omrade: "Dokumentation"
status: "EJ OK"
- Notering: "Ej tillämpade regler - RAP-LP"
regler:
- id: "SAK.09"
omrade: "Säkerhet"
status: "N/A"
"400":
description: BAD_REQUEST
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 400
detail: "Test error"
instance: "/example"
"500":
description: INTERNAL_SERVER_ERROR
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 500
detail: "Test error"
instance: "/example"
/validation/rules:
get:
tags:
- validation-rules
summary: Get validation rules
description: Get a collection of available validation rules.
operationId: getValidationRules
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationRules"
"500":
description: INTERNAL_SERVER_ERROR
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 500
detail: "Test error"
instance: "/example"
/validation/generate-report:
post:
tags:
- validate
summary: Generate status report
description: Accepts result data as the request body and returns a generated status report as a downloadable excel file.
operationId: generateReport
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- report
properties:
report:
type: array
items:
$ref: '#/components/schemas/DiagnosticReport'
description: An array of precomputed report items used to generate the Excel report.
responses:
'200':
description: Successful operation
content:
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet:
schema:
type: string
format: binary
example:
headers:
Content-Disposition:
schema:
type: string
description: Header to indicate the filename for the downloaded file.
'400':
description: BAD_REQUEST
content:
application/json:
schema:
$ref: '#/components/schemas/ProblemDetailsDto'
example:
type: "about:blank"
title: "Test title"
status: 400
detail: "Test error"
instance: "/example"
'500':
description: INTERNAL_SERVER_ERROR
content:
application/json:
schema:
$ref: '#/components/schemas/ProblemDetailsDto'
example:
type: "about:blank"
title: "Test title"
status: 500
detail: "Test error"
instance: "/example"
/validation/url:
post:
tags:
- validate
summary: Validate your yaml from remote url
description: Validate your yaml from remote url
operationId: validateUrl
requestBody:
description: |-
OpenApi yaml is fetched from remote server and validated on server.
Feature must be enabled explicitly on server.
content:
application/json:
schema:
$ref: "#/components/schemas/UrlContentDto"
example:
url: "http://localhost:8080/q/openapi"
categories:
- "DokRules"
- "UfnRules"
required: true
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationResponseDto"
example:
- id: "AME.04"
omrade: "API Message"
krav: "För fältnamn i request och response body BÖR camelCase eller snake_case notation användas."
allvarlighetsgrad: "WARNING"
sokvag:
- "components"
- "schemas"
omfattning:
start:
line: 1
character: 5
end:
line: 1
character: 10
"400":
description: BAD_REQUEST
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 400
detail: "Test error"
instance: "/example"
"409":
description: CONFLICT
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 409
detail: "Test error"
instance: "/example"
"500":
description: INTERNAL_SERVER_ERROR
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 500
detail: "Test error"
instance: "/example"
/api-info:
get:
tags:
- api-info
summary: Get info about the api
description: Get name, version, release date, links and status.
operationId: getApiInfo
responses:
"200":
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/ApiInfo"
example:
apiName: "RAP-LP"
apiVersion: "0.0.1"
apiReleased: "2024-10-10"
apiDocumentation: "http://example.digg/docs"
apiStatus: "active"
"400":
description: BAD_REQUEST
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 400
detail: "Test error"
instance: "/example"
"500":
description: INTERNAL_SERVER_ERROR
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetailsDto"
example:
type: "about:blank"
title: "Test title"
status: 500
detail: "Test error"
instance: "/example"
components:
schemas:
ValidationRules:
type: array
description: A list of validation rules.
items:
type: object
properties:
rule:
type: string
description: The name of the validation rule.
example: "UfnRules" # Example rule name
description:
type: string
description: Description of the validation rule.
example: "URL Format och namngivning" # Example description
example: # Example array of rules
- rule: "UfnRules"
description: "URL Format och namngivning"
- rule: "SakRules"
description: "Säkerhet"
- rule: "VerRules"
description: "Versionshantering"
- rule: "FnsRules"
description: "Filtrering, paginering och sökparametrar"
- rule: "ArqRules"
description: "API Request"
- rule: "DokRules"
description: "Dokumentation"
- rule: "AmeRules"
description: "API Message"
- rule: "ForRules"
description: "Förutsättningar"
- rule: "DotRules"
description: "Datum- och tidsformat"
YamlContentDto:
type: object
properties:
yaml:
type: string
categories:
type: array
items:
type: string
example: "DokRules,UfnRules"
UrlContentDto:
type: object
properties:
url:
type: string
categories:
type: array
items:
type: string
example: "DokRules,UfnRules"
ProblemDetailsDto:
type: object
properties:
type:
type: string
title:
type: string
status:
type: integer
detail:
type: string
instance:
type: string
ApiInfo:
type: object
properties:
apiName:
type: string
apiVersion:
type: string
apiReleased:
type: string
format: date
example: "2024-10-23"
apiDocumentation:
type: string
format: uri
apiStatus:
type: string
IDiagnostic:
type: object
properties:
tags:
type: array
items:
type: string
relatedInformation:
type: array
items:
$ref: "#/components/schemas/IDiagnosticRelatedInformation"
IDiagnosticRelatedInformation:
type: object
properties:
location:
$ref: "#/components/schemas/ILocation"
message:
type: string
ILocation:
type: object
properties:
uri:
type: string
nullable: true
range:
$ref: "#/components/schemas/IRange"
IPosition:
type: object
properties:
line:
type: "integer"
character:
type: "integer"
IRange:
type: object
properties:
start:
$ref: "#/components/schemas/IPosition"
end:
$ref: "#/components/schemas/IPosition"
RapLPCustomSpectralDiagnosticItem:
allOf:
- $ref: "#/components/schemas/IDiagnostic"
- type: object
properties:
id:
type: string
nullable: true
omrade:
type: string
nullable: true
krav:
type: string
nullable: true
allvarlighetsgrad:
type: string
nullable: true
sokvag:
type: array
items:
type: string
nullable: true
omfattning:
type: object
nullable: true
xml:
name: order
RapLPCustomSpectralDiagnostic:
type: array
items:
$ref: "#/components/schemas/RapLPCustomSpectralDiagnosticItem"
DiagnosticRuleInfo:
type: object
properties:
id:
type: string
example: "UFN.05"
område:
type: string
example: "URL Format och namngivning"
required:
- id
- område
PopulatedDiagnosticRuleInfo:
allOf:
- $ref: '#/components/schemas/DiagnosticRuleInfo'
- type: object
properties:
status:
type: string
example: "OK"
required:
- status
DiagnosticReport:
type: object
properties:
Notering:
type: string
example: "Godkända regler - RAP-LP"
regler:
type: array
items:
$ref: '#/components/schemas/PopulatedDiagnosticRuleInfo'
required:
- Notering
- regler
DiagnosticRuleinfoSet:
type: object
# additionalProperties: false
properties:
notApplicableRules:
type: array
items:
$ref: '#/components/schemas/DiagnosticRuleInfo'
executedUniqueRules:
type: array
items:
$ref: '#/components/schemas/DiagnosticRuleInfo'
executedUniqueRulesWithError:
type: array
items:
$ref: '#/components/schemas/DiagnosticRuleInfo'
RapLPDiagnostic:
type: object
properties:
_ruleSets:
$ref: '#/components/schemas/DiagnosticRuleinfoSet'
ValidationResponseDto:
type: object
properties:
result:
type: array
items:
$ref: "#/components/schemas/RapLPCustomSpectralDiagnosticItem"
report:
type: array
items:
$ref: "#/components/schemas/DiagnosticReport"
required:
- result
- report