-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchema.php
1030 lines (946 loc) · 38.4 KB
/
Schema.php
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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Zerotoprod\DataModelOpenapi30;
use Zerotoprod\DataModel\Describe;
use Zerotoprod\DataModelOpenapi30\Helpers\DataModel;
/**
* The Schema Object allows the definition of input and output data types.
* These types can be objects, but also primitives and arrays. This object
* is an extended subset of the JSON Schema Specification Draft Wright-00.
*
* For more information about the keywords, see JSON Schema Core and JSON
* Schema Validation. Unless stated otherwise, the keyword definitions
* follow those of JSON Schema and do not add any additional semantics.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#schema-object
* @see https://spec.openapis.org/oas/v3.0.4.html#bib-json-schema-05
* @see https://spec.openapis.org/oas/v3.0.4.html#bib-json-schema-validation-05
*/
class Schema
{
use DataModel;
/**
* The value of both of these keywords _MUST_ be a string.
*
* Both of these keywords can be used to decorate a user interface with
* information about the data produced by this user interface. A title
* will preferably be short, whereas a description will provide
* explanation about the purpose of the instance described by this
* schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-6.1
* @see $title
*/
public const title = 'title';
/**
* The value of both of these keywords _MUST_ be a string.
*
* Both of these keywords can be used to decorate a user interface with
* information about the data produced by this user interface. A title
* will preferably be short, whereas a description will provide
* explanation about the purpose of the instance described by this
* schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-6.1
*/
#[Describe(['nullable'])]
public ?string $title;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.1
* @see $multipleOf
*/
public const multipleOf = 'multipleOf';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.1
*/
#[Describe(['nullable'])]
public null|float|int $multipleOf;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.2
* @see $maximum
*/
public const maximum = 'maximum';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.2
*/
#[Describe(['nullable'])]
public null|int|float $maximum;
/**
* 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".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.3
* @see $exclusiveMaximum
*/
public const exclusiveMaximum = 'exclusiveMaximum';
/**
* 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".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.3
*/
#[Describe(['default' => false])]
public bool $exclusiveMaximum;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.4
* @see $minimum
*/
public const minimum = 'minimum';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.4
*/
#[Describe(['nullable'])]
public null|int|float $minimum;
/**
* 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".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.5
* @see $exclusiveMinimum
*/
public const exclusiveMinimum = 'exclusiveMinimum';
/**
* 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".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.5
*/
#[Describe(['default' => false])]
public bool $exclusiveMinimum;
/**
* 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].
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.6
* @see $maxLength
*/
public const maxLength = 'maxLength';
/**
* 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].
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.6
*/
#[Describe(['nullable'])]
public ?int $maxLength;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.7
* @see $minLength
*/
public const minLength = 'minLength';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.7
*/
#[Describe(['default' => 0])]
public int $minLength;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.8
* @see $pattern
*/
public const pattern = 'pattern';
/**
* 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.
*
* "pattern", if absent, may be considered as being present with
* integer value 0.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.7
*/
#[Describe(['default' => 0])]
public int|string $pattern;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.10
* @see $maxItems
*/
public const maxItems = 'maxItems';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.10
*/
#[Describe(['nullable'])]
public ?int $maxItems;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.11
* @see $minItems
*/
public const minItems = 'minItems';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.11
*/
#[Describe(['default' => 0])]
public int $minItems;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.12
* @see $uniqueItems
*/
public const uniqueItems = 'uniqueItems';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.13
*/
#[Describe(['default' => false])]
public bool $uniqueItems;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.13
* @see $maxProperties
*/
public const maxProperties = 'maxProperties';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.13
*/
#[Describe(['nullable'])]
public ?int $maxProperties;
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.14
* @see $minProperties
*/
public const minProperties = 'minProperties';
/**
* 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.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.14
*/
#[Describe(['default' => 0])]
public int $minProperties;
/**
* 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.
*
* An object instance is valid against this keyword if its property set
* contains all elements in this keyword's array value.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.15
* @see $required
*/
public const required = 'required';
/**
* 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.
*
* An object instance is valid against this keyword if its property set
* contains all elements in this keyword's array value.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.15
*/
#[Describe(['default' => []])]
public array $required;
/**
* The value of this keyword _MUST_ be an array. This array _SHOULD_ have
* at least one element. Elements in the array _SHOULD_ be unique.
*
* Elements in the array _MAY_ be of any type, including null.
*
* An instance validates successfully against this keyword if its value
* is equal to one of the elements in this keyword's array value.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.20
* @see $enum
*/
public const enum = 'enum';
/**
* The value of this keyword _MUST_ be an array. This array _SHOULD_ have
* at least one element. Elements in the array _SHOULD_ be unique.
*
* Elements in the array _MAY_ be of any type, including null.
*
* An instance validates successfully against this keyword if its value
* is equal to one of the elements in this keyword's array value.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-5.20
*/
#[Describe(['default' => []])]
public array $enum;
/**
* Value _MUST_ be a string. Multiple types via an array are not supported
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $type
*/
public const type = 'type';
/**
* Value _MUST_ be a string. Multiple types via an array are not supported
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['nullable'])]
public ?string $type;
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $allOf
*/
public const allOf = 'allOf';
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @var array<int, self|Reference> $allOf
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'allOf']])]
public array $allOf;
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $allOf
*/
public static function allOf($value, array $context): array
{
return isset($context[self::allOf])
? array_map(
static fn($value) => isset($value[Reference::ref])
? Reference::from($value)
: self::from($value),
$value
)
: [];
}
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $oneOf
*/
public const oneOf = 'oneOf';
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @var array<int, self|Reference> $oneOf
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'oneOf']])]
public array $oneOf;
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $oneOf
*/
public static function oneOf($value, array $context): array
{
return isset($context[self::oneOf])
? array_map(
static fn($value) => isset($value[Reference::ref])
? Reference::from($value)
: self::from($value),
$value
)
: [];
}
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $anyOf
*/
public const anyOf = 'anyOf';
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @var array<int, self|Reference> $anyOf
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'anyOf']])]
public array $anyOf;
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $anyOf
*/
public static function anyOf($value, array $context): array
{
return isset($context[self::anyOf])
? array_map(
static fn($value) => isset($value[Reference::ref])
? Reference::from($value)
: self::from($value),
$value
)
: [];
}
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $not
*/
public const not = 'not';
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'not']])]
public null|self|Reference $not;
/**
* Inline or referenced schema _MUST_ be of a Schema Object and not a standard JSON Schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $not
*/
public static function not($value, array $context): Schema|Reference|null
{
if (!isset($context[self::not])) {
return null;
}
return isset($value[Reference::ref])
? Reference::from($value)
: self::from($value);
}
/**
* 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.
* `items` _MUST_ be present if type is "array".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $items
*/
public const items = 'items';
/**
* 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.
* `items` _MUST_ be present if type is "array".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'items']])]
public null|self|Reference $items;
/**
* 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.
* `items` _MUST_ be present if type is "array".
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $items
*/
public static function items($value, array $context): Schema|Reference|null
{
if (!isset($context[self::items])) {
return null;
}
return isset($value[Reference::ref])
? Reference::from($value)
: self::from($value);
}
/**
* Property definitions _MUST_ be a Schema Object and not a standard
* JSON Schema (inline or referenced).
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $properties
*/
public const properties = 'properties';
/**
* Property definitions _MUST_ be a Schema Object and not a standard
* JSON Schema (inline or referenced).
*
* @var ?Reference|self[]
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'properties']])]
public array|Reference $properties;
/**
* Property definitions _MUST_ be a Schema Object and not a standard
* JSON Schema (inline or referenced).
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $properties
*/
public static function properties($value, array $context): Schema|array|null
{
return isset($context[self::properties])
? array_map(
static fn($value) => isset($value[Reference::ref])
? Reference::from($value)
: self::from($value),
$value
)
: [];
}
/**
* 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`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $additionalProperties
*/
public const additionalProperties = 'additionalProperties';
/**
* 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`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['cast' => [self::class, 'additionalProperties']])]
public bool|self|Reference $additionalProperties;
/**
* 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`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $additionalProperties
*/
public static function additionalProperties($value, array $context): Schema|Reference|bool
{
if (!isset($context[self::additionalProperties])) {
return false;
}
if (is_bool($value)) {
return $value;
}
return isset($value[Reference::ref])
? Reference::from($value)
: self::from($value);
}
/**
* [CommonMark] syntax MAY be used for rich text representation.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $description
*/
public const description = 'description';
/**
* [CommonMark] syntax MAY be used for rich text representation.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['nullable'])]
public ?string $description;
/**
* While relying on JSON Schema’s defined formats, the OAS offers a few
* additional predefined formats.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $format
*/
public const format = 'format';
/**
* While relying on JSON Schema’s defined formats, the OAS offers a few
* additional predefined formats.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['nullable'])]
public ?string $format;
/**
* The default value represents what would be assumed by the consumer of the
* input as the value of the schema if one is not provided. Unlike JSON
* Schema, the value _MUST_ conform to the defined type for the Schema
* Object defined at the same level. For example, if `type` is
* `"string"`, then `default` can be `"foo"` but cannot be 1.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
* @see $default
*/
public const default = 'default';
/**
* The default value represents what would be assumed by the consumer of the
* input as the value of the schema if one is not provided. Unlike JSON
* Schema, the value _MUST_ conform to the defined type for the Schema
* Object defined at the same level. For example, if `type` is
* `"string"`, then `default` can be `"foo"` but cannot be 1.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#json-schema-keywords
*/
#[Describe(['nullable'])]
public mixed $default;
/**
* This keyword only takes effect if `type` is explicitly defined within the
* same Schema Object. A `true` value indicates that both `null` values and
* values of the type specified by `type` are allowed. 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`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $nullable
*/
public const nullable = 'nullable';
/**
* This keyword only takes effect if `type` is explicitly defined within the
* same Schema Object. A `true` value indicates that both `null` values and
* values of the type specified by `type` are allowed. 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`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['default' => false])]
public bool $nullable;
/**
* Adds support for polymorphism. The discriminator is used to determine
* which of a set of schemas a payload is expected to satisfy. See
* Composition and Inheritance for more details.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $discriminator
*/
public const discriminator = 'discriminator';
/**
* Adds support for polymorphism. The discriminator is used to determine
* which of a set of schemas a payload is expected to satisfy. See
* Composition and Inheritance for more details.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['nullable'])]
public ?Discriminator $discriminator;
/**
* Relevant only for Schema Object `properties` definitions. Declares the
* property as “read only”. This means that it _MAY_ be sent as part
* of a response but _SHOULD_NOT_ be sent as part of the request.
* If the property is marked as `readOnly` being `true` and is in
* the `required` list, the `required` will take effect on the
* response only. A property _MUST NOT_ be marked as both
* `readOnly` and `writeOnly` being `true`. Default value
* is `false`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $readOnly
*/
public const readOnly = 'readOnly';
/**
* Relevant only for Schema Object `properties` definitions. Declares the
* property as “read only”. This means that it _MAY_ be sent as part
* of a response but _SHOULD_NOT_ be sent as part of the request.
* If the property is marked as `readOnly` being `true` and is in
* the `required` list, the `required` will take effect on the
* response only. A property _MUST NOT_ be marked as both
* `readOnly` and `writeOnly` being `true`. Default value
* is `false`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['default' => false])]
public bool $readOnly;
/**
* Relevant only for Schema Object `properties` definitions. Declares the
* property as “write only”. Therefore, it _MAY_ be sent as part of a
* request but _SHOULD_NOT_ be sent as part of the response. If the
* property is marked as `writeOnly` being `true` and is in the
* `required` list, the `required` will take effect on the
* request only. A property _MUST NOT_ be marked as both
* `readOnly` and `writeOnly` being `true`. Default value
* is `false`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $writeOnly
*/
public const writeOnly = 'writeOnly';
/**
* Relevant only for Schema Object `properties` definitions. Declares the
* property as “write only”. Therefore, it _MAY_ be sent as part of a
* request but _SHOULD_NOT_ be sent as part of the response. If the
* property is marked as `writeOnly` being `true` and is in the
* `required` list, the `required` will take effect on the
* request only. A property _MUST NOT_ be marked as both
* `readOnly` and `writeOnly` being `true`. Default value
* is `false`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['default' => false])]
public bool $writeOnly;
/**
* This _MAY_ be used only on property schemas. It has no effect on
* root schemas. Adds additional metadata to describe the XML
* representation of this property.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $xml
*/
public const xml = 'xml';
/**
* This _MAY_ be used only on property schemas. It has no effect on
* root schemas. Adds additional metadata to describe the XML
* representation of this property.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['nullable'])]
public ?Xml $xml;
/**
* Additional external documentation for this schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $externalDocs
*/
public const externalDocs = 'externalDocs';
/**
* Additional external documentation for this schema.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
*/
#[Describe(['nullable'])]
public ?ExternalDocumentation $externalDocs;
/**
* Specifies that a schema is deprecated and _SHOULD_ be transitioned
* out of usage. Default value is `false`.
*
* @link https://spec.openapis.org/oas/v3.0.4.html#fixed-fields-20
* @see $deprecated
*/
public const deprecated = 'deprecated';
/**