forked from ogen-go/ogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.go
597 lines (524 loc) · 19.2 KB
/
schema.go
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
587
588
589
590
591
592
593
594
595
596
597
package ogen
import (
"encoding/json"
"reflect"
"github.com/go-faster/errors"
"github.com/go-faster/jx"
"github.com/go-faster/yaml"
"github.com/ogen-go/ogen/jsonschema"
)
// The Schema Object allows the definition of input and output data types.
// These types can be objects, but also primitives and arrays.
type Schema struct {
Ref string `json:"$ref,omitempty" yaml:"$ref,omitempty"` // ref object
Summary string `json:"summary,omitempty" yaml:"summary,omitempty"`
Description string `json:"description,omitempty" yaml:"description,omitempty"`
// Additional external documentation for this schema.
ExternalDocs *ExternalDocumentation `json:"externalDocs,omitempty" yaml:"externalDocs,omitempty"`
// Value MUST be a string. Multiple types via an array are not supported.
Type string `json:"type,omitempty" yaml:"type,omitempty"`
// See Data Type Formats for further details (https://swagger.io/specification/#data-type-format).
// While relying on JSON Schema's defined formats,
// the OAS offers a few additional predefined formats.
Format string `json:"format,omitempty" yaml:"format,omitempty"`
// Property definitions MUST be a Schema Object and not a standard JSON Schema
// (inline or referenced).
Properties Properties `json:"properties,omitempty" yaml:"properties,omitempty"`
// Value can be boolean or object. Inline or referenced schema MUST be of a Schema Object
// and not a standard JSON Schema. Consistent with JSON Schema, additionalProperties defaults to true.
AdditionalProperties *AdditionalProperties `json:"additionalProperties,omitempty" yaml:"additionalProperties,omitempty"`
// The value of "patternProperties" MUST be an object. Each property
// name of this object SHOULD be a valid regular expression, according
// to the ECMA-262 regular expression dialect. Each property value of
// this object MUST be a valid JSON Schema.
PatternProperties PatternProperties `json:"patternProperties,omitempty" yaml:"patternProperties,omitempty"`
// The value of this keyword MUST be an array.
// This array MUST have at least one element.
// Elements of this array MUST be strings, and MUST be unique.
Required []string `json:"required,omitempty" yaml:"required,omitempty"`
// Value MUST be an object and not an array.
// Inline or referenced schema MUST be of a Schema Object and not a standard JSON Schema.
// MUST be present if the Type is "array".
Items *Items `json:"items,omitempty" yaml:"items,omitempty"`
// A true value adds "null" to the allowed type specified by the type keyword,
// only if type is explicitly defined within the same Schema Object.
// Other Schema Object constraints retain their defined behavior,
// and therefore may disallow the use of null as a value.
// A false value leaves the specified or default type unmodified.
// The default value is false.
Nullable bool `json:"nullable,omitempty" yaml:"nullable,omitempty"`
// AllOf takes an array of object definitions that are used
// for independent validation but together compose a single object.
// Still, it does not imply a hierarchy between the models.
// For that purpose, you should include the discriminator.
AllOf []*Schema `json:"allOf,omitempty" yaml:"allOf,omitempty"`
// OneOf validates the value against exactly one of the subschemas
OneOf []*Schema `json:"oneOf,omitempty" yaml:"oneOf,omitempty"`
// AnyOf validates the value against any (one or more) of the subschemas
AnyOf []*Schema `json:"anyOf,omitempty" yaml:"anyOf,omitempty"`
// Discriminator for subschemas.
Discriminator *Discriminator `json:"discriminator,omitempty" yaml:"discriminator,omitempty"`
// Adds additional metadata to describe the XML representation of this property.
//
// This MAY be used only on properties schemas. It has no effect on root schemas
XML *XML `json:"xml,omitempty" yaml:"xml,omitempty"`
// The value of this keyword MUST be an array.
// This array SHOULD have at least one element.
// Elements in the array SHOULD be unique.
Enum Enum `json:"enum,omitempty" yaml:"enum,omitempty"`
// The value of "multipleOf" MUST be a number, strictly greater than 0.
//
// A numeric instance is only valid if division by this keyword's value
// results in an integer.
MultipleOf Num `json:"multipleOf,omitempty" yaml:"multipleOf,omitempty"`
// The value of "maximum" MUST be a number, representing an upper limit
// for a numeric instance.
//
// If the instance is a number, then this keyword validates if
// "exclusiveMaximum" is true and instance is less than the provided
// value, or else if the instance is less than or exactly equal to the
// provided value.
Maximum Num `json:"maximum,omitempty" yaml:"maximum,omitempty"`
// The value of "exclusiveMaximum" MUST be a boolean, representing
// whether the limit in "maximum" is exclusive or not. An undefined
// value is the same as false.
//
// If "exclusiveMaximum" is true, then a numeric instance SHOULD NOT be
// equal to the value specified in "maximum". If "exclusiveMaximum" is
// false (or not specified), then a numeric instance MAY be equal to the
// value of "maximum".
ExclusiveMaximum bool `json:"exclusiveMaximum,omitempty" yaml:"exclusiveMaximum,omitempty"`
// The value of "minimum" MUST be a number, representing a lower limit
// for a numeric instance.
//
// If the instance is a number, then this keyword validates if
// "exclusiveMinimum" is true and instance is greater than the provided
// value, or else if the instance is greater than or exactly equal to
// the provided value.
Minimum Num `json:"minimum,omitempty" yaml:"minimum,omitempty"`
// The value of "exclusiveMinimum" MUST be a boolean, representing
// whether the limit in "minimum" is exclusive or not. An undefined
// value is the same as false.
//
// If "exclusiveMinimum" is true, then a numeric instance SHOULD NOT be
// equal to the value specified in "minimum". If "exclusiveMinimum" is
// false (or not specified), then a numeric instance MAY be equal to the
// value of "minimum".
ExclusiveMinimum bool `json:"exclusiveMinimum,omitempty" yaml:"exclusiveMinimum,omitempty"`
// The value of this keyword MUST be a non-negative integer.
//
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// A string instance is valid against this keyword if its length is less
// than, or equal to, the value of this keyword.
//
// The length of a string instance is defined as the number of its
// characters as defined by RFC 7159 [RFC7159].
MaxLength *uint64 `json:"maxLength,omitempty" yaml:"maxLength,omitempty"`
// A string instance is valid against this keyword if its length is
// greater than, or equal to, the value of this keyword.
//
// The length of a string instance is defined as the number of its
// characters as defined by RFC 7159 [RFC7159].
//
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// "minLength", if absent, may be considered as being present with
// integer value 0.
MinLength *uint64 `json:"minLength,omitempty" yaml:"minLength,omitempty"`
// The value of this keyword MUST be a string. This string SHOULD be a
// valid regular expression, according to the ECMA 262 regular
// expression dialect.
//
// A string instance is considered valid if the regular expression
// matches the instance successfully. Recall: regular expressions are
// not implicitly anchored.
Pattern string `json:"pattern,omitempty" yaml:"pattern,omitempty"`
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// An array instance is valid against "maxItems" if its size is less
// than, or equal to, the value of this keyword.
MaxItems *uint64 `json:"maxItems,omitempty" yaml:"maxItems,omitempty"`
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// An array instance is valid against "minItems" if its size is greater
// than, or equal to, the value of this keyword.
//
// If this keyword is not present, it may be considered present with a
// value of 0.
MinItems *uint64 `json:"minItems,omitempty" yaml:"minItems,omitempty"`
// The value of this keyword MUST be a boolean.
//
// If this keyword has boolean value false, the instance validates
// successfully. If it has boolean value true, the instance validates
// successfully if all of its elements are unique.
//
// If not present, this keyword may be considered present with boolean
// value false.
UniqueItems bool `json:"uniqueItems,omitempty" yaml:"uniqueItems,omitempty"`
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// An object instance is valid against "maxProperties" if its number of
// properties is less than, or equal to, the value of this keyword.
MaxProperties *uint64 `json:"maxProperties,omitempty" yaml:"maxProperties,omitempty"`
// The value of this keyword MUST be an integer. This integer MUST be
// greater than, or equal to, 0.
//
// An object instance is valid against "minProperties" if its number of
// properties is greater than, or equal to, the value of this keyword.
//
// If this keyword is not present, it may be considered present with a
// value of 0.
MinProperties *uint64 `json:"minProperties,omitempty" yaml:"minProperties,omitempty"`
// Default value.
Default Default `json:"default,omitempty" yaml:"default,omitempty"`
// A free-form property to include an example of an instance for this schema.
// To represent examples that cannot be naturally represented in JSON or YAML,
// a string value can be used to contain the example with escaping where necessary.
Example ExampleValue `json:"example,omitempty" yaml:"example,omitempty"`
// Specifies that a schema is deprecated and SHOULD be transitioned out
// of usage.
Deprecated bool `json:"deprecated,omitempty" yaml:"deprecated,omitempty"`
// If the instance value is a string, this property defines that the
// string SHOULD be interpreted as binary data and decoded using the
// encoding named by this property. RFC 2045, Section 6.1 lists
// the possible values for this property.
//
// The value of this property MUST be a string.
//
// The value of this property SHOULD be ignored if the instance
// described is not a string.
ContentEncoding string `json:"contentEncoding,omitempty" yaml:"contentEncoding,omitempty"`
// The value of this property must be a media type, as defined by RFC
// 2046. This property defines the media type of instances
// which this schema defines.
//
// The value of this property MUST be a string.
//
// The value of this property SHOULD be ignored if the instance
// described is not a string.
ContentMediaType string `json:"contentMediaType,omitempty" yaml:"contentMediaType,omitempty"`
Common jsonschema.OpenAPICommon `json:"-" yaml:",inline"`
}
// Property is item of Properties.
type Property struct {
Name string
Schema *Schema
}
// Properties is unparsed JSON Schema properties validator description.
type Properties []Property
// MarshalYAML implements yaml.Marshaler.
func (p Properties) MarshalYAML() (any, error) {
content := make([]*yaml.Node, 0, len(p)*2)
for _, prop := range p {
var val yaml.Node
if err := val.Encode(prop.Schema); err != nil {
return nil, err
}
content = append(content,
&yaml.Node{Kind: yaml.ScalarNode, Tag: "!!str", Value: prop.Name},
&val,
)
}
return &yaml.Node{
Kind: yaml.MappingNode,
Content: content,
}, nil
}
// UnmarshalYAML implements yaml.Unmarshaler.
func (p *Properties) UnmarshalYAML(node *yaml.Node) error {
if node.Kind != yaml.MappingNode {
return &yaml.UnmarshalError{
Node: node,
Type: reflect.TypeOf(p),
Err: errors.Errorf("cannot unmarshal %s into %T", node.ShortTag(), p),
}
}
for i := 0; i < len(node.Content); i += 2 {
var (
key = node.Content[i]
value = node.Content[i+1]
schema *Schema
)
if err := value.Decode(&schema); err != nil {
return err
}
*p = append(*p, Property{
Name: key.Value,
Schema: schema,
})
}
return nil
}
// MarshalJSON implements json.Marshaler.
func (p Properties) MarshalJSON() ([]byte, error) {
e := &jx.Encoder{}
e.ObjStart()
for _, prop := range p {
e.FieldStart(prop.Name)
b, err := json.Marshal(prop.Schema)
if err != nil {
return nil, errors.Wrap(err, "marshal")
}
e.Raw(b)
}
e.ObjEnd()
return e.Bytes(), nil
}
// UnmarshalJSON implements json.Unmarshaler.
func (p *Properties) UnmarshalJSON(data []byte) error {
d := jx.DecodeBytes(data)
return d.Obj(func(d *jx.Decoder, key string) error {
s := new(Schema)
b, err := d.Raw()
if err != nil {
return err
}
if err := json.Unmarshal(b, s); err != nil {
return err
}
*p = append(*p, Property{
Name: key,
Schema: s,
})
return nil
})
}
// AdditionalProperties is JSON Schema additionalProperties validator description.
type AdditionalProperties struct {
Bool *bool
Schema Schema
}
// MarshalYAML implements yaml.Marshaler.
func (p AdditionalProperties) MarshalYAML() (any, error) {
if p.Bool != nil {
return *p.Bool, nil
}
return p.Schema, nil
}
// UnmarshalYAML implements yaml.Unmarshaler.
func (p *AdditionalProperties) UnmarshalYAML(node *yaml.Node) error {
switch node.Kind {
case yaml.ScalarNode:
return node.Decode(&p.Bool)
case yaml.MappingNode:
return node.Decode(&p.Schema)
default:
return errors.Errorf("unexpected YAML kind %v", node.Kind)
}
}
// MarshalJSON implements json.Marshaler.
func (p AdditionalProperties) MarshalJSON() ([]byte, error) {
if p.Bool != nil {
return json.Marshal(p.Bool)
}
return json.Marshal(p.Schema)
}
// UnmarshalJSON implements json.Unmarshaler.
func (p *AdditionalProperties) UnmarshalJSON(data []byte) error {
d := jx.DecodeBytes(data)
switch tt := d.Next(); tt {
case jx.Object:
case jx.Bool:
val, err := d.Bool()
if err != nil {
return err
}
p.Bool = &val
return nil
default:
return errors.Errorf("unexpected type %s", tt.String())
}
s := Schema{}
b, err := d.Raw()
if err != nil {
return err
}
if err := json.Unmarshal(b, &s); err != nil {
return err
}
p.Schema = s
return nil
}
// PatternProperty is item of PatternProperties.
type PatternProperty struct {
Pattern string
Schema *Schema
}
// PatternProperties is unparsed JSON Schema patternProperties validator description.
type PatternProperties []PatternProperty
// MarshalYAML implements yaml.Marshaler.
func (p PatternProperties) MarshalYAML() (any, error) {
content := make([]*yaml.Node, 0, len(p)*2)
for _, prop := range p {
var val yaml.Node
if err := val.Encode(prop.Schema); err != nil {
return nil, err
}
content = append(content,
&yaml.Node{Kind: yaml.ScalarNode, Tag: "!!str", Value: prop.Pattern},
&val,
)
}
return &yaml.Node{
Kind: yaml.MappingNode,
Content: content,
}, nil
}
// UnmarshalYAML implements yaml.Unmarshaler.
func (p *PatternProperties) UnmarshalYAML(node *yaml.Node) error {
if node.Kind != yaml.MappingNode {
return &yaml.UnmarshalError{
Node: node,
Type: reflect.TypeOf(p),
Err: errors.Errorf("cannot unmarshal %s into %T", node.ShortTag(), p),
}
}
for i := 0; i < len(node.Content); i += 2 {
var (
key = node.Content[i]
value = node.Content[i+1]
schema *Schema
)
if err := value.Decode(&schema); err != nil {
return err
}
*p = append(*p, PatternProperty{
Pattern: key.Value,
Schema: schema,
})
}
return nil
}
// MarshalJSON implements json.Marshaler.
func (p PatternProperties) MarshalJSON() ([]byte, error) {
e := &jx.Encoder{}
e.ObjStart()
for _, prop := range p {
e.FieldStart(prop.Pattern)
b, err := json.Marshal(prop.Schema)
if err != nil {
return nil, errors.Wrap(err, "marshal")
}
e.Raw(b)
}
e.ObjEnd()
return e.Bytes(), nil
}
// UnmarshalJSON implements json.Unmarshaler.
func (p *PatternProperties) UnmarshalJSON(data []byte) error {
d := jx.DecodeBytes(data)
return d.Obj(func(d *jx.Decoder, key string) error {
s := new(Schema)
b, err := d.Raw()
if err != nil {
return err
}
if err := json.Unmarshal(b, s); err != nil {
return err
}
*p = append(*p, PatternProperty{
Pattern: key,
Schema: s,
})
return nil
})
}
// Items is unparsed JSON Schema items validator description.
type Items struct {
Item *Schema
Items []*Schema
}
// MarshalYAML implements yaml.Marshaler.
func (p Items) MarshalYAML() (any, error) {
if p.Item != nil {
return p.Item, nil
}
return p.Items, nil
}
// UnmarshalYAML implements yaml.Unmarshaler.
func (p *Items) UnmarshalYAML(node *yaml.Node) error {
switch node.Kind {
case yaml.MappingNode:
return node.Decode(&p.Item)
case yaml.SequenceNode:
return node.Decode(&p.Items)
default:
return errors.Errorf("unexpected YAML kind %v", node.Kind)
}
}
// MarshalJSON implements json.Marshaler.
func (p Items) MarshalJSON() ([]byte, error) {
if p.Item != nil {
return json.Marshal(p.Item)
}
return json.Marshal(p.Items)
}
// UnmarshalJSON implements json.Unmarshaler.
func (p *Items) UnmarshalJSON(data []byte) error {
switch tt := jx.DecodeBytes(data).Next(); tt {
case jx.Object:
s := Schema{}
if err := json.Unmarshal(data, &s); err != nil {
return err
}
p.Item = &s
return nil
case jx.Array:
var s []*Schema
if err := json.Unmarshal(data, &s); err != nil {
return err
}
p.Items = s
return nil
default:
return errors.Errorf("unexpected type %s", tt.String())
}
}
// Discriminator discriminates types for OneOf, AllOf, AnyOf.
//
// See https://spec.openapis.org/oas/v3.1.0#discriminator-object.
type Discriminator struct {
// REQUIRED. The name of the property in the payload that will hold the discriminator value.
PropertyName string `json:"propertyName" yaml:"propertyName"`
// An object to hold mappings between payload values and schema names or references.
Mapping map[string]string `json:"mapping,omitempty" yaml:"mapping,omitempty"`
Common OpenAPICommon `json:"-" yaml:",inline"`
}
// XML is a metadata object that allows for more fine-tuned XML model definitions.
//
// See https://spec.openapis.org/oas/v3.1.0#xml-object.
type XML struct {
// Replaces the name of the element/attribute used for the described schema property.
//
// When defined within items, it will affect the name of the individual XML elements within the list.
//
// When defined alongside type being array (outside the items), it will affect the wrapping element
// and only if wrapped is true.
//
// If wrapped is false, it will be ignored.
Name string `json:"name,omitempty" yaml:"name,omitempty"`
// The URI of the namespace definition.
//
// This MUST be in the form of an absolute URI.
Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`
// The prefix to be used for the name.
Prefix string `json:"prefix,omitempty" yaml:"prefix,omitempty"`
// Declares whether the property definition translates to an attribute instead of an element.
//
// Default value is false.
Attribute bool `json:"attribute,omitempty" yaml:"attribute,omitempty"`
// MAY be used only for an array definition. Signifies whether the array is wrapped
// (for example, `<books><book/><book/></books>`) or unwrapped (`<book/><book/>`).
//
// The definition takes effect only when defined alongside type being array (outside the items).
//
// Default value is false.
Wrapped bool `json:"wrapped,omitempty" yaml:"wrapped,omitempty"`
Common OpenAPICommon `json:"-" yaml:",inline"`
}