-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.yaml
More file actions
422 lines (416 loc) · 12.4 KB
/
Copy pathapi.yaml
File metadata and controls
422 lines (416 loc) · 12.4 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
openapi: 3.0.0
info:
title: Example OpenAPI Spec.
description: An example OpenAPI-spec to generate example Java records.
version: 0.0.1
servers:
- url: http://localhost/
description: Irrelevant
paths:
/ignore:
get:
summary: Ignore
description: Irrelevant
responses:
'200':
description: OK
content:
application/json:
schema:
title: FlexibleRecord
oneOf:
- type: object
title: FlexibleNonNullRecord
properties:
field1:
type: boolean
- type: object
title: FlexibleNullableRecord
nullable: true
properties:
field1:
type: boolean
components:
schemas:
RecordWithRequiredFieldsOfEachType:
type: object
description: Example of a Record with fields of each type
required:
- field1
- field2
- field3
- field4
- field5
- field6
- field7
- field8
properties:
field1:
type: boolean
description: a Boolean field
field2:
type: string
description: a String field
field3:
type: integer
description: an Integer field
field4:
type: number
description: a Number field
field5:
type: array
description: an Array of Boolean field
items:
type: boolean
field6:
type: array
description: a Set field
uniqueItems: true
items:
type: boolean
field7:
description: an ExampleRecord field
$ref: '#/components/schemas/ExampleRecord'
field8:
description: an ExampleEnum field
$ref: '#/components/schemas/ExampleEnum'
RecordWithNullableFieldsOfEachType:
type: object
description: Example of a Record with fields of each type
required:
- field1
- field2
- field3
- field4
- field5
- field6
properties:
field1:
type: boolean
description: a Boolean field
nullable: true
field2:
type: string
description: a String field
nullable: true
field3:
type: integer
description: an Integer field
nullable: true
field4:
type: number
description: a Number field
nullable: true
field5:
type: array
description: an Array of Boolean field
nullable: true
items:
type: boolean
field6:
type: array
description: a Set field
uniqueItems: true
nullable: true
items:
type: boolean
field7:
description: an ExampleNullableRecord field
$ref: '#/components/schemas/ExampleNullableRecord'
field8:
description: an ExampleNullableEnum field
nullable: true
$ref: '#/components/schemas/ExampleNullableEnum'
ExampleRecordWithCollectionsOfRecords:
type: object
description: Example of a Record with collections of records.
required:
- requiredRecordList
- requiredRecordSet
properties:
optionalRecordList:
type: array
description: Optional field
items:
$ref: '#/components/schemas/ExampleRecord'
requiredRecordList:
type: array
description: Required field
items:
$ref: '#/components/schemas/ExampleRecord'
optionalRecordSet:
type: array
description: Another Optional field
uniqueItems: true
items:
$ref: '#/components/schemas/ExampleRecord'
requiredRecordSet:
type: array
description: Another required field
uniqueItems: true
items:
$ref: '#/components/schemas/ExampleRecord'
ExampleRecord:
type: object
description: Example of a Record
properties:
field1:
type: boolean
description: a boolean field
ExampleNullableRecord:
type: object
description: Example of a Record
nullable: true
properties:
field1:
type: boolean
description: a boolean field
DeprecatedExampleRecord:
type: object
deprecated: true
description: Example of a deprecated Record
properties:
field1:
type: boolean
description: a boolean field
ExampleRecordWithExtraFieldAnnotations:
type: object
description: Example of a Record with fields with `x-field-extra-annotations`.
properties:
oneAnnotationAsInline:
type: boolean
description: Setting ONE annotation, using inlined.
x-field-extra-annotation: '@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne'
oneAnnotationAsNewLine:
type: boolean
description: Setting ONE annotation, using newlines.
x-field-extra-annotation: |-
@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne
oneAnnotationAsList:
type: boolean
description: Setting ONE annotation, using list.
x-field-extra-annotation:
- '@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne'
oneAnnotationAsArray:
type: boolean
description: Setting ONE annotation, using array.
x-field-extra-annotation: [
'@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne'
]
twoAnnotationsAsNewLine:
type: boolean
description: Setting TWO annotations, using newlines.
x-field-extra-annotation: |-
@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne
@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationTwo
twoAnnotationsAsList:
type: boolean
description: Setting TWO annotations, using list.
x-field-extra-annotation:
- '@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne'
- '@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationTwo'
twoAnnotationsAsArray:
type: boolean
description: Setting TWO annotations, using array.
x-field-extra-annotation: [
'@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne',
'@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationTwo'
]
ExampleRecordWithOneExtraAnnotation:
type: object
description: Example of a Record with an extra annotation
x-class-extra-annotation: '@io.github.chrimle.o2jrm.annotations.TestExtraAnnotation'
properties:
field1:
type: boolean
description: a boolean field with an extra field annotation
x-field-extra-annotation: '@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne'
field2:
type: boolean
description: a boolean field with two extra field annotations
x-field-extra-annotation: |-
@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationOne
@io.github.chrimle.o2jrm.annotations.TestFieldExtraAnnotationTwo
ExampleRecordWithTwoExtraAnnotations:
type: object
description: Example of a Record with two extra annotations
x-class-extra-annotation: |-
@io.github.chrimle.o2jrm.annotations.TestExtraAnnotation
@io.github.chrimle.o2jrm.annotations.TestExtraAnnotationTwo
properties:
field1:
type: boolean
description: a boolean field
ExampleRecordWithDefaultFields:
type: object
description: Example of a Record with default fields
properties:
field1:
type: string
description: a String field with a default value
default: someDefaultValue
ExampleEnum:
type: string
description: Example of an Enum
enum:
- ENUM1
- ENUM2
- ENUM3
x-enum-descriptions:
- Some description of ENUM1
- Some description of ENUM2
- Some description of ENUM3
ExampleNullableEnum:
type: string
description: Example of an Enum
nullable: true
enum:
- ENUM1
- ENUM2
- ENUM3
x-enum-descriptions:
- Some description of ENUM1
- Some description of ENUM2
- Some description of ENUM3
ExampleUriEnum:
type: string
format: uri
description: Example of an Enum with URI values
enum:
- "https://github.com/Chrimle/openapi-to-java-records-mustache-templates"
- "https://chrimle.github.io/openapi-to-java-records-mustache-templates/"
ExampleEnumWithIntegerValues:
type: integer
description: Example of an Enum with integer values
enum:
- 100
- 200
- 300
- 400
- 500
DeprecatedExampleEnum:
type: string
deprecated: true
description: Example of a deprecated Enum
enum:
- ENUM1
- ENUM2
- ENUM3
RecordWithInnerEnums:
type: object
description: Example of a Record with inner enum classes
properties:
exampleInner:
type: string
description: Example of an inner enum class
enum:
- ENUM1
- ENUM2
- ENUM3
x-enum-descriptions:
- Some description of ENUM1
- Some description of ENUM2
- Some description of ENUM3
exampleInnerTwo:
type: integer
description: Example of another inner enum class with integer values
enum:
- 404
- 501
- 503
exampleInnerThree:
type: string
format: uri
description: Example of another inner enum class with URI values
enum:
- "https://github.com/Chrimle/openapi-to-java-records-mustache-templates"
- "https://chrimle.github.io/openapi-to-java-records-mustache-templates/"
RecordWithAllConstraints:
type: object
description: Example of a Record which has fields with constraints
required:
- stringRequired
- stringRequiredNullable
- stringRequiredPattern
properties:
stringStandard:
type: string
stringDefault:
type: string
default: 'someDefaultValue'
stringNullable:
type: string
nullable: true
stringRequired:
type: string
stringRequiredNullable:
type: string
nullable: true
stringRequiredPattern:
type: string
pattern: '^\d{3}-\d{2}-\d{4}$'
stringEmailFormat:
type: string
format: email
stringUuidFormat:
type: string
format: uuid
stringMinLength:
type: string
minLength: 3
stringMaxLength:
type: string
maxLength: 7
stringMinAndMaxLength:
type: string
minLength: 3
maxLength: 7
arrayMinItems:
type: array
minItems: 1
items:
type: string
arrayMaxItems:
type: array
maxItems: 10
items:
type: string
arrayMinAndMaxItems:
type: array
minItems: 1
maxItems: 10
items:
type: string
intMinimum:
type: integer
minimum: 18
intMaximum:
type: integer
maximum: 100
intMinimumAndMaximum:
type: integer
minimum: 0
maximum: 100
longMinimum:
type: integer
format: int64
minimum: 18
longMaximum:
type: integer
format: int64
maximum: 100
longMinimumAndMaximum:
type: integer
format: int64
minimum: 0
maximum: 100
bigDecimalMinimum:
type: number
minimum: 0
bigDecimalMaximum:
type: number
maximum: 100
bigDecimalMinimumAndMaximum:
type: number
minimum: 0
maximum: 100