This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
1088 lines (1088 loc) · 80.7 KB
/
manifest.json
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
{
"description": "RAML files listed in order corresponding RAML feature appears in RAML 1.0 spec",
"filePaths": [
"tests/raml-1.0/Root/version/invalid-version-structure.raml",
"tests/raml-1.0/Root/version/valid.raml",
"tests/raml-1.0/Root/title-04/invalid-included.raml",
"tests/raml-1.0/Root/title-04/valid-included.raml",
"tests/raml-1.0/Root/title-03/invalid-not-string.raml",
"tests/raml-1.0/Root/title-03/valid.raml",
"tests/raml-1.0/Root/title-02/invalid-not-string.raml",
"tests/raml-1.0/Root/title-02/valid.raml",
"tests/raml-1.0/Root/title-01/invalid-missing.raml",
"tests/raml-1.0/Root/title-01/invalid-no-raml-version-whitespace.raml",
"tests/raml-1.0/Root/title-01/valid.raml",
"tests/raml-1.0/Root/protocols/invalid-empty-array.raml",
"tests/raml-1.0/Root/protocols/invalid-not-array.raml",
"tests/raml-1.0/Root/protocols/invalid-unknown-protocol.raml",
"tests/raml-1.0/Root/protocols/valid-case-insensitive.raml",
"tests/raml-1.0/Root/protocols/valid.raml",
"tests/raml-1.0/Root/other-02/invalid-unknown-node.raml",
"tests/raml-1.0/Root/other-01/invalid-unknown-node.raml",
"tests/raml-1.0/Root/mediatype-04/invalid-array-element.raml",
"tests/raml-1.0/Root/mediatype-04/valid-array-val.raml",
"tests/raml-1.0/Root/mediatype-03/invalid-array-element.raml",
"tests/raml-1.0/Root/mediatype-03/valid-array-val.raml",
"tests/raml-1.0/Root/mediatype-02/invalid-not-supported.raml",
"tests/raml-1.0/Root/mediatype-01/invalid-missing-value.raml",
"tests/raml-1.0/Root/mediatype-01/valid.raml",
"tests/raml-1.0/Root/include-02/invalid-https.raml",
"tests/raml-1.0/Root/include-02/valid-https.raml",
"tests/raml-1.0/Root/include-01/invalid-missing-include.raml",
"tests/raml-1.0/Root/include-01/valid.raml",
"tests/raml-1.0/Root/empty-03/invalid-empty-2newline.raml",
"tests/raml-1.0/Root/empty-02/invalid-empty-newline.raml",
"tests/raml-1.0/Root/empty-01/invalid-empty.raml",
"tests/raml-1.0/Root/documentation/invalid-empty-content-and-title.raml",
"tests/raml-1.0/Root/documentation/invalid-empty-content.raml",
"tests/raml-1.0/Root/documentation/invalid-empty-title.raml",
"tests/raml-1.0/Root/documentation/invalid-no-content-node.raml",
"tests/raml-1.0/Root/documentation/invalid-no-items.raml",
"tests/raml-1.0/Root/documentation/invalid-no-title-node.raml",
"tests/raml-1.0/Root/documentation/invalid-wrong-format.raml",
"tests/raml-1.0/Root/documentation/valid.raml",
"tests/raml-1.0/Root/baseuriparameters-07/invalid-type-structure.raml",
"tests/raml-1.0/Root/baseuriparameters-07/valid-file.raml",
"tests/raml-1.0/Root/baseuriparameters-06/invalid-unknown-node.raml",
"tests/raml-1.0/Root/baseuriparameters-06/valid-datetime.raml",
"tests/raml-1.0/Root/baseuriparameters-05/invalid-example-type.raml",
"tests/raml-1.0/Root/baseuriparameters-05/valid-integer.raml",
"tests/raml-1.0/Root/baseuriparameters-04/invalid-wrong-inherit.raml",
"tests/raml-1.0/Root/baseuriparameters-04/valid-number.raml",
"tests/raml-1.0/Root/baseuriparameters-03/invalid-unknown-facet.raml",
"tests/raml-1.0/Root/baseuriparameters-03/valid-string.raml",
"tests/raml-1.0/Root/baseuriparameters-01/invalid-val-sequence.raml",
"tests/raml-1.0/Root/baseuriparameters-01/valid.raml",
"tests/raml-1.0/Root/baseuri-with-value/invalid.raml",
"tests/raml-1.0/Root/baseuri-with-value/valid.raml",
"tests/raml-1.0/Root/baseuri/invalid-wrong-param.raml",
"tests/raml-1.0/Root/baseuri/valid.raml",
"tests/raml-1.0/Types/xsdscheme/req-body-type-02/invalid-unknown-property.raml",
"tests/raml-1.0/Types/xsdscheme/req-body-type-02/valid.raml",
"tests/raml-1.0/Types/xsdscheme/req-body-type-01/invalid-unknown-property.raml",
"tests/raml-1.0/Types/xsdscheme/req-body-type-01/valid.raml",
"tests/raml-1.0/Types/xsdscheme/no-anchor-01/invalid-unknown-property.raml",
"tests/raml-1.0/Types/xsdscheme/no-anchor-01/valid.raml",
"tests/raml-1.0/Types/xsdscheme/inherit-xsd-type-02/invalid-unknown-property.raml",
"tests/raml-1.0/Types/xsdscheme/inherit-xsd-type-02/valid.raml",
"tests/raml-1.0/Types/xsdscheme/inherit-xsd-type-01/invalid-unknown-property.raml",
"tests/raml-1.0/Types/xsdscheme/inherit-xsd-type-01/valid.raml",
"tests/raml-1.0/Types/xml-serialization/invalid-wrapped-value.raml",
"tests/raml-1.0/Types/xml-serialization/valid.raml",
"tests/raml-1.0/Types/used-in-annotations/invalid-failed-array-minitems.raml",
"tests/raml-1.0/Types/used-in-annotations/valid.raml",
"tests/raml-1.0/Types/use-as-property-type-03/invalid-violated-minmax.raml",
"tests/raml-1.0/Types/use-as-property-type-03/valid.raml",
"tests/raml-1.0/Types/use-as-property-type-02/invalid-pattern-violated.raml",
"tests/raml-1.0/Types/use-as-property-type-02/valid.raml",
"tests/raml-1.0/Types/use-as-property-type-01/invalid-violated-minlength.raml",
"tests/raml-1.0/Types/use-as-property-type-01/valid.raml",
"tests/raml-1.0/Types/union-of-scalar-arrays/invalid-example-array-elements.raml",
"tests/raml-1.0/Types/union-of-scalar-arrays/valid.raml",
"tests/raml-1.0/Types/union-in-array/invalid-types-conflict.raml",
"tests/raml-1.0/Types/union-in-array/valid.raml",
"tests/raml-1.0/Types/types-nil-type/valid.raml",
"tests/raml-1.0/Types/types-constraits-conflict/invalid-constraints-conflict.raml",
"tests/raml-1.0/Types/types-constraits-conflict/valid.raml",
"tests/raml-1.0/Types/types-and-schemas/invalid-exclusive.raml",
"tests/raml-1.0/Types/types-and-schemas/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-07/invalid-example-type.raml",
"tests/raml-1.0/Types/single-type-with-example-07/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-06/invalid-failed-array-minitems.raml",
"tests/raml-1.0/Types/single-type-with-example-06/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-04/invalid-failed-array-constraints.raml",
"tests/raml-1.0/Types/single-type-with-example-04/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-03/invalid-enum-value.raml",
"tests/raml-1.0/Types/single-type-with-example-03/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-02/invalid-example-property.raml",
"tests/raml-1.0/Types/single-type-with-example-02/valid.raml",
"tests/raml-1.0/Types/single-type-with-example-01/invalid-example-prop-type.raml",
"tests/raml-1.0/Types/single-type-with-example-01/valid.raml",
"tests/raml-1.0/Types/single-type-json-example/invalid-json-example.raml",
"tests/raml-1.0/Types/single-type-json-example/valid.raml",
"tests/raml-1.0/Types/single-string-property/invalid-example-type.raml",
"tests/raml-1.0/Types/single-string-property/valid.raml",
"tests/raml-1.0/Types/scheme/invalid-schema-and-type.raml",
"tests/raml-1.0/Types/scheme/valid.raml",
"tests/raml-1.0/Types/reuse-datatypes-02/invalid-expected-type.raml",
"tests/raml-1.0/Types/reuse-datatypes-02/valid.raml",
"tests/raml-1.0/Types/reuse-datatypes-01/invalid-expected-type.raml",
"tests/raml-1.0/Types/reuse-datatypes-01/valid.raml",
"tests/raml-1.0/Types/restrictions-conflict/invalid.raml",
"tests/raml-1.0/Types/restrictions-conflict/valid.raml",
"tests/raml-1.0/Types/recurrent-definition/invalid.raml",
"tests/raml-1.0/Types/recurrent-definition/valid.raml",
"tests/raml-1.0/Types/recurrent-array-definition/invalid.raml",
"tests/raml-1.0/Types/recurrent-array-definition/valid.raml",
"tests/raml-1.0/Types/property-array-of-scalars/invalid-array-item-type.raml",
"tests/raml-1.0/Types/property-array-of-scalars/valid.raml",
"tests/raml-1.0/Types/property-array-of-datatypes/invalid-array-item-type.raml",
"tests/raml-1.0/Types/property-array-of-datatypes/valid.raml",
"tests/raml-1.0/Types/pattern-string-property-02/invalid-unexpected-type.raml",
"tests/raml-1.0/Types/pattern-string-property-02/valid.raml",
"tests/raml-1.0/Types/pattern-string-property-01/invalid-minproperties-violated.raml",
"tests/raml-1.0/Types/pattern-string-property-01/valid.raml",
"tests/raml-1.0/Types/pattern-string-array-property/invalid-wrong-value-type.raml",
"tests/raml-1.0/Types/pattern-string-array-property/valid.raml",
"tests/raml-1.0/Types/not-required-property/invalid-missing-required.raml",
"tests/raml-1.0/Types/not-required-property/valid.raml",
"tests/raml-1.0/Types/nested-self-reference/invalid-property-name.raml",
"tests/raml-1.0/Types/nested-self-reference/valid.raml",
"tests/raml-1.0/Types/multiple-recurrent-definitions-02/invalid.raml",
"tests/raml-1.0/Types/multiple-recurrent-definitions-02/valid.raml",
"tests/raml-1.0/Types/multiple-recurrent-definitions-01/invalid.raml",
"tests/raml-1.0/Types/multiple-recurrent-definitions-01/valid.raml",
"tests/raml-1.0/Types/multiple-inheritance/invalid-incompatible-types.raml",
"tests/raml-1.0/Types/multiple-inheritance/valid.raml",
"tests/raml-1.0/Types/lib-with-simple-type-03/invalid-wrong-example-type.raml",
"tests/raml-1.0/Types/lib-with-simple-type-03/valid.raml",
"tests/raml-1.0/Types/lib-with-simple-type-02/invalid-wrong-value-type.raml",
"tests/raml-1.0/Types/lib-with-simple-type-02/valid.raml",
"tests/raml-1.0/Types/lib-with-simple-type-01/invalid-requirement-violated.raml",
"tests/raml-1.0/Types/lib-with-simple-type-01/valid.raml",
"tests/raml-1.0/Types/lib-with-included-json-02/invalid-missing-req-property.raml",
"tests/raml-1.0/Types/lib-with-included-json-02/valid.raml",
"tests/raml-1.0/Types/lib-with-included-json-01/invalid-required-val-missing.raml",
"tests/raml-1.0/Types/lib-with-included-json-01/valid.raml",
"tests/raml-1.0/Types/lib-trait-with-param/invalid-missing-lib-tag.raml",
"tests/raml-1.0/Types/lib-trait-with-param/lib.raml",
"tests/raml-1.0/Types/lib-trait-with-param/valid.raml",
"tests/raml-1.0/Types/inline-uri-parameters/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-uri-parameters/valid.raml",
"tests/raml-1.0/Types/inline-response-headers/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-response-headers/valid.raml",
"tests/raml-1.0/Types/inline-response-body/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-response-body/valid.raml",
"tests/raml-1.0/Types/inline-request-headers/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-request-headers/valid.raml",
"tests/raml-1.0/Types/inline-request-body/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-request-body/valid.raml",
"tests/raml-1.0/Types/inline-query-string/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-query-string/valid.raml",
"tests/raml-1.0/Types/inline-baseuriparameters/invalid-type-declaration.raml",
"tests/raml-1.0/Types/inline-baseuriparameters/valid.raml",
"tests/raml-1.0/Types/inheritance-03/invalid-unknown-parent-type.raml",
"tests/raml-1.0/Types/inheritance-03/valid.raml",
"tests/raml-1.0/Types/inheritance-02/invalid-unknown-prop.raml",
"tests/raml-1.0/Types/inheritance-02/valid-multiple-inher.raml",
"tests/raml-1.0/Types/inheritance-01/invalid-wrong-type-missing-req.raml",
"tests/raml-1.0/Types/inheritance-01/valid-define-new-property.raml",
"tests/raml-1.0/Types/inherit-string-min-max/invalid-minmax-values.raml",
"tests/raml-1.0/Types/inherit-string-min-max/valid.raml",
"tests/raml-1.0/Types/inherit-pattern-property-02/invalid-max-properties-violated.raml",
"tests/raml-1.0/Types/inherit-pattern-property-02/valid.raml",
"tests/raml-1.0/Types/inherit-pattern-property-01/invalid-minproperties-violated.raml",
"tests/raml-1.0/Types/inherit-pattern-property-01/valid.raml",
"tests/raml-1.0/Types/inherit-number-with-decimals/invalid-wrong-decimal-point.raml",
"tests/raml-1.0/Types/inherit-number-with-decimals/valid.raml",
"tests/raml-1.0/Types/inherit-number-min-max/invalid-conflict.raml",
"tests/raml-1.0/Types/inherit-number-min-max/invalid-wrong-format.raml",
"tests/raml-1.0/Types/inherit-number-min-max/valid.raml",
"tests/raml-1.0/Types/inherit-integer-min-max/invalid-conflict-minmax.raml",
"tests/raml-1.0/Types/inherit-integer-min-max/valid.raml",
"tests/raml-1.0/Types/inherit-file/invalid-length.raml",
"tests/raml-1.0/Types/inherit-file/valid.raml",
"tests/raml-1.0/Types/inherit-datetime/invalid-date-only-example.raml",
"tests/raml-1.0/Types/inherit-datetime/invalid-datetime-format.raml",
"tests/raml-1.0/Types/inherit-datetime/invalid-datetime-only-example.raml",
"tests/raml-1.0/Types/inherit-datetime/invalid-time-only-example.raml",
"tests/raml-1.0/Types/inherit-datetime/invalid-time-only-format.raml",
"tests/raml-1.0/Types/inherit-datetime/valid-date-only.raml",
"tests/raml-1.0/Types/inherit-datetime/valid-datetime-only.raml",
"tests/raml-1.0/Types/inherit-datetime/valid-datetime.raml",
"tests/raml-1.0/Types/inherit-datetime/valid-time-only.raml",
"tests/raml-1.0/Types/inherit-boolean/invalid-default-value.raml",
"tests/raml-1.0/Types/inherit-boolean/valid.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-03/invalid-make-non-required.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-03/valid-make-required.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-02/invalid-lesser-constraints.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-02/valid-make-narrower.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-01/invalid-minmaxlength-violated.raml",
"tests/raml-1.0/Types/inherit-and-extend-constraints-01/valid.raml",
"tests/raml-1.0/Types/implicitly-defined-type/invalid-inexisting-base-type.raml",
"tests/raml-1.0/Types/implicitly-defined-type/valid.raml",
"tests/raml-1.0/Types/determine-default-types/invalid-unknown-property.raml",
"tests/raml-1.0/Types/determine-default-types/valid.raml",
"tests/raml-1.0/Types/defined-with-jsonschema/invalid-json-schema.raml",
"tests/raml-1.0/Types/defined-with-jsonschema/valid-explicit.raml",
"tests/raml-1.0/Types/defined-with-jsonschema/valid.raml",
"tests/raml-1.0/Types/datatypes-union-01/invalid-example-property.raml",
"tests/raml-1.0/Types/datatypes-union-01/valid.raml",
"tests/raml-1.0/Types/datatypes-array-02/invalid-wrong-example-types.raml",
"tests/raml-1.0/Types/datatypes-array-02/valid.raml",
"tests/raml-1.0/Types/datatypes-array-01/invalid.raml",
"tests/raml-1.0/Types/datatypes-array-01/valid.raml",
"tests/raml-1.0/Types/complex-used-in-annotations-01/invalid-multiple-errors.raml",
"tests/raml-1.0/Types/complex-used-in-annotations-01/valid.raml",
"tests/raml-1.0/Types/complex-example-02/invalid-wrong-structure.raml",
"tests/raml-1.0/Types/complex-example-02/valid.raml",
"tests/raml-1.0/Types/complex-example-01/invalid-wrong-structure.raml",
"tests/raml-1.0/Types/complex-example-01/valid.raml",
"tests/raml-1.0/Types/array-property/invalid-string-in-number-array.raml",
"tests/raml-1.0/Types/array-property/valid.raml",
"tests/raml-1.0/Types/array-of-union/valid-array-of-union.raml",
"tests/raml-1.0/Types/array-of-datatype-unions-02/invalid-example-property.raml",
"tests/raml-1.0/Types/array-of-datatype-unions-02/valid.raml",
"tests/raml-1.0/Types/array-of-datatype-unions-01/invalid-example-property.raml",
"tests/raml-1.0/Types/array-of-datatype-unions-01/valid.raml",
"tests/raml-1.0/Types/annotations-used-in-type-03/invalid-wrong-nested-property-type.raml",
"tests/raml-1.0/Types/annotations-used-in-type-03/valid.raml",
"tests/raml-1.0/Types/annotations-used-in-type-02/invalid-undefined-annotation.raml",
"tests/raml-1.0/Types/annotations-used-in-type-02/valid.raml",
"tests/raml-1.0/Types/annotations-used-in-type-01/invalid-wrong-value-type.raml",
"tests/raml-1.0/Types/annotations-used-in-type-01/valid.raml",
"tests/raml-1.0/Types/annotation-inherits-pattern-prop-01/invalid-minproperties-violated.raml",
"tests/raml-1.0/Types/annotation-inherits-pattern-prop-01/valid.raml",
"tests/raml-1.0/Types/additional-properties/invalid-property-value.raml",
"tests/raml-1.0/Types/additional-properties/valid.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-scalar-nested-array/invalid-nesting-syntax.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-scalar-nested-array/valid.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-union-array-02/invalid-inherit-inexisting-type.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-union-array-02/valid.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-union-array-01/invalid-use-inexisting-type.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-union-array-01/valid.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-scalar-union/invalid-inherit-two-scalars.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-scalar-union/valid-union-array.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-scalar-union/valid-union.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-array/invalid-inherit-inexisting-type.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype-array/valid.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype/invalid-inherit-inexisting-datatype.raml",
"tests/raml-1.0/Types/Type Expressions/inherit-datatype/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/override-type-with-type-01/invalid-violate-maxlength.raml",
"tests/raml-1.0/Types/PropertyOverride/override-type-with-type-01/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/override-string-with-type-01/invalid-make-property-not-required.raml",
"tests/raml-1.0/Types/PropertyOverride/override-string-with-type-01/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/override-optional-property/invalid-blank-example.raml",
"tests/raml-1.0/Types/PropertyOverride/override-optional-property/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/override-facet/invalid-cannot-be-overriden.raml",
"tests/raml-1.0/Types/PropertyOverride/override-facet/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/multiple-override/invalid-make-property-not-required.raml",
"tests/raml-1.0/Types/PropertyOverride/multiple-override/valid.raml",
"tests/raml-1.0/Types/PropertyOverride/define-restrictions/invalid-restrictions-conflict.raml",
"tests/raml-1.0/Types/PropertyOverride/define-restrictions/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/single-trailing-question-mark/invalid-explicitly-required.raml",
"tests/raml-1.0/Types/ObjectTypes/single-trailing-question-mark/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/simple-type/invalid-wrong-value-type.raml",
"tests/raml-1.0/Types/ObjectTypes/simple-type/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/simple-inheritance/invalid-missing-required-prop.raml",
"tests/raml-1.0/Types/ObjectTypes/simple-inheritance/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/required-property/invalid-missing.raml",
"tests/raml-1.0/Types/ObjectTypes/required-property/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/properties-property/invalid-wrong-parent-type.raml",
"tests/raml-1.0/Types/ObjectTypes/properties-property/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-two/invalid-wrong-type.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-two/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-or/invalid-no-additionalProperties.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-or/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-chars/invalid-does-not-match-pattern.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-chars/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-asterisk/invalid-wrong-type.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-asterisk/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-and-explicit/invalid-expected-pattern-prevail.raml",
"tests/raml-1.0/Types/ObjectTypes/pattern-property-and-explicit/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/not-required-with-default/invalid-wrong-default-type.raml",
"tests/raml-1.0/Types/ObjectTypes/not-required-with-default/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/multiple-inheritance/invalid-inherit-inexisting-type.raml",
"tests/raml-1.0/Types/ObjectTypes/multiple-inheritance/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/min-properties/invalid-min-violated.raml",
"tests/raml-1.0/Types/ObjectTypes/min-properties/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/max-properties/invalid-max-violated.raml",
"tests/raml-1.0/Types/ObjectTypes/max-properties/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/inherit-string/invalid-wrong-constraint.raml",
"tests/raml-1.0/Types/ObjectTypes/inherit-string/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark-val-provided/invalid-missing-required-value.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark-val-provided/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark-explicit-optional/invalid-explicitly-required.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark-explicit-optional/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark/invalid-explicitly-required.raml",
"tests/raml-1.0/Types/ObjectTypes/double-trailing-question-mark/valid.raml",
"tests/raml-1.0/Types/ObjectTypes/discriminator/invalid-inline-discriminator.raml",
"tests/raml-1.0/Types/ObjectTypes/discriminator/invalid-union-type.raml",
"tests/raml-1.0/Types/ObjectTypes/discriminator/invalid-wrong-prop-pointed.raml",
"tests/raml-1.0/Types/ObjectTypes/discriminator/valid.raml",
"tests/raml-1.0/Types/Facets/simple-facet/invalid-wrong-facet-used.raml",
"tests/raml-1.0/Types/Facets/simple-facet/valid.raml",
"tests/raml-1.0/Types/Facets/redefine-built-in/invalid-redefine-datetime.raml",
"tests/raml-1.0/Types/Facets/redefine-built-in/valid.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/invalid-ancestor-facet.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/invalid-matches-built-in.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/invalid-missing-required-facet.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/invalid-paren-in-name.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/valid-ignore-not-required.raml",
"tests/raml-1.0/Types/Facets/naming-constraints/valid.raml",
"tests/raml-1.0/Types/Facets/inheritance-02/invalid-inherit-unknown-type.raml",
"tests/raml-1.0/Types/Facets/inheritance-02/valid.raml",
"tests/raml-1.0/Types/Facets/inheritance-01/invalid-wrong-type.raml",
"tests/raml-1.0/Types/Facets/inheritance-01/valid.raml",
"tests/raml-1.0/Types/External Types/json-schema-examples-02/invalid-external-prop-definition.raml",
"tests/raml-1.0/Types/External Types/json-schema-examples-02/valid.raml",
"tests/raml-1.0/Types/External Types/json-schema-examples-01/invalid-examples.raml",
"tests/raml-1.0/Types/External Types/json-schema-examples-01/valid.raml",
"tests/raml-1.0/Types/External Types/include-type-xsd/invalid-inexisting-file.raml",
"tests/raml-1.0/Types/External Types/include-type-xsd/valid.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/invalid-add-more-properties.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/invalid-use-in-other-types.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/invalid-used-in-headers.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/invalid-used-in-queryParameters.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/invalid-used-in-uriParameters.raml",
"tests/raml-1.0/Types/External Types/include-type-json-02/valid.raml",
"tests/raml-1.0/Types/External Types/include-type-json-01/invalid-included-json.raml",
"tests/raml-1.0/Types/External Types/include-type-json-01/valid.raml",
"tests/raml-1.0/Types/External Types/include-txt/invalid-unknown-type.raml",
"tests/raml-1.0/Types/External Types/include-txt/valid-include-documentation-content.raml",
"tests/raml-1.0/Resources/uri-parameters-02/invalid-unmatched-bracket.raml",
"tests/raml-1.0/Resources/uri-parameters-02/valid-ext-param.raml",
"tests/raml-1.0/Resources/uri-parameters-02/valid-version-param.raml",
"tests/raml-1.0/Resources/uri-parameters-01/invalid-param-not-used.raml",
"tests/raml-1.0/Resources/uri-parameters-01/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-08/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-08/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-07/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-07/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-06/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-06/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-05/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-05/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-04/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-04/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-03/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-03/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-02/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-02/valid.raml",
"tests/raml-1.0/Resources/restype-datatype-property-01/invalid-req-property-missing.raml",
"tests/raml-1.0/Resources/restype-datatype-property-01/valid.raml",
"tests/raml-1.0/Resources/response-inline-type/invalid-property-type.raml",
"tests/raml-1.0/Resources/response-inline-type/valid.raml",
"tests/raml-1.0/Resources/response-datatype/invalid-property-type.raml",
"tests/raml-1.0/Resources/response-datatype/valid.raml",
"tests/raml-1.0/Resources/request-datatype-property/invalid-unknown-property.raml",
"tests/raml-1.0/Resources/request-datatype-property/valid.raml",
"tests/raml-1.0/Resources/request-datatype/invalid-property-type.raml",
"tests/raml-1.0/Resources/request-datatype/valid.raml",
"tests/raml-1.0/Resources/nesting/invalid-share-same-uri.raml",
"tests/raml-1.0/Resources/nesting/valid.raml",
"tests/raml-1.0/Resources/duplicate-uris/invalid-duplicate-uris.raml",
"tests/raml-1.0/Resources/description-only/invalid-not-supported-node.raml",
"tests/raml-1.0/Resources/description-only/valid.raml",
"tests/raml-1.0/Resources/complex-description/invalid-structure.raml",
"tests/raml-1.0/Resources/complex-description/valid.raml",
"tests/raml-1.0/Methods/typed-response-body/invalid-scheme-and-type.raml",
"tests/raml-1.0/Methods/typed-response-body/valid.raml",
"tests/raml-1.0/Methods/typed-resp-and-req-body/invalid-type-with-scheme.raml",
"tests/raml-1.0/Methods/typed-resp-and-req-body/valid.raml",
"tests/raml-1.0/Methods/typed-request-body/invalid-type-with-schema.raml",
"tests/raml-1.0/Methods/typed-request-body/valid.raml",
"tests/raml-1.0/Methods/request-body-03/invalid-structure.raml",
"tests/raml-1.0/Methods/request-body-03/valid-inline-type.raml",
"tests/raml-1.0/Methods/request-body-02/invalid-inexisting-type.raml",
"tests/raml-1.0/Methods/request-body-02/valid-typed.raml",
"tests/raml-1.0/Methods/request-body-01/invalid-missing-root-media-type.raml",
"tests/raml-1.0/Methods/request-body-01/valid-uses-root-media-type.raml",
"tests/raml-1.0/Methods/querystring-queryparams/invalid-mutual-exclusive.raml",
"tests/raml-1.0/Methods/querystring-queryparams/valid.raml",
"tests/raml-1.0/Methods/query-params-ref-named-enum/invalid-example-type.raml",
"tests/raml-1.0/Methods/query-params-ref-named-enum/valid.raml",
"tests/raml-1.0/Methods/query-params-number-01/invalid-example-type.raml",
"tests/raml-1.0/Methods/query-params-number-01/valid.raml",
"tests/raml-1.0/Methods/query-params-enum/invalid-along-with-qs.raml",
"tests/raml-1.0/Methods/query-params-enum/valid.raml",
"tests/raml-1.0/Methods/query-params-boolean/invalid-example-type.raml",
"tests/raml-1.0/Methods/query-params-boolean/valid.raml",
"tests/raml-1.0/Methods/protocols-string/invalid-unknown-protocol.raml",
"tests/raml-1.0/Methods/protocols-string/valid.raml",
"tests/raml-1.0/Methods/protocols-array/invalid-element.raml",
"tests/raml-1.0/Methods/protocols-array/valid.raml",
"tests/raml-1.0/Methods/include-example-raml/example.raml",
"tests/raml-1.0/Methods/include-example-raml/invalid-inexisting-file.raml",
"tests/raml-1.0/Methods/include-example-raml/valid.raml",
"tests/raml-1.0/Methods/custom-response-header/invalid-headers-node-type.raml",
"tests/raml-1.0/Methods/custom-response-header/valid-array-header.raml",
"tests/raml-1.0/Methods/custom-response-header/valid.raml",
"tests/raml-1.0/Methods/custom-request-header/invalid-headers-node-type.raml",
"tests/raml-1.0/Methods/custom-request-header/valid-array-header.raml",
"tests/raml-1.0/Methods/custom-request-header/valid.raml",
"tests/raml-1.0/Methods/available-methods/invalid-unknown-method.raml",
"tests/raml-1.0/Methods/available-methods/valid.raml",
"tests/raml-1.0/Methods/all-request-body-types/invalid-request-body-type.raml",
"tests/raml-1.0/Methods/all-request-body-types/valid.raml",
"tests/raml-1.0/Responses/response-headers/invalid-headers-node-type.raml",
"tests/raml-1.0/Responses/response-headers/valid.raml",
"tests/raml-1.0/Responses/inline-json-schema/invalid-schema.raml",
"tests/raml-1.0/Responses/inline-json-schema/valid.raml",
"tests/raml-1.0/Responses/default-object-value/valid.raml",
"tests/raml-1.0/Responses/datatype-body-type/invalid-not-defined-type.raml",
"tests/raml-1.0/Responses/datatype-body-type/valid.raml",
"tests/raml-1.0/Responses/complex-body-type/invalid-missing-req-property.raml",
"tests/raml-1.0/Responses/complex-body-type/valid.raml",
"tests/raml-1.0/Responses/code-without-body/invalid-duplicate-codes.raml",
"tests/raml-1.0/Responses/code-without-body/valid.raml",
"tests/raml-1.0/Responses/body-without-schema/invalid-resp-code.raml",
"tests/raml-1.0/Responses/body-without-schema/valid.raml",
"tests/raml-1.0/Responses/all-supported-content-types/invalid-not-supported.raml",
"tests/raml-1.0/Responses/all-supported-content-types/valid.raml",
"tests/raml-1.0/MethodResponses/root-schemas/invalid-json.raml",
"tests/raml-1.0/MethodResponses/root-schemas/valid.raml",
"tests/raml-1.0/MethodResponses/response-code/invalid.raml",
"tests/raml-1.0/MethodResponses/response-code/valid.raml",
"tests/raml-1.0/MethodResponses/response-body-type/invalid-reference-not-defined-type.raml",
"tests/raml-1.0/MethodResponses/response-body-type/valid.raml",
"tests/raml-1.0/MethodResponses/not-used-type/invalid-not-defined-type-used.raml",
"tests/raml-1.0/MethodResponses/not-used-type/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-union/invalid-wrong-union.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-union/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-lib/invalid-inexisting-example-file.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-lib/types.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-lib/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-06/invalid-missing-req-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-06/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-05/invalid-missing-req-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-05/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-04/invalid-missing-req-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-04/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-03/invalid-missing-req-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-03/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-02/invalid-missing-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-02/valid.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-01/invalid-missing-property.raml",
"tests/raml-1.0/MethodResponses/inline-using-datatype-01/valid.raml",
"tests/raml-1.0/MethodResponses/inline-schema-01/invalid-missing-req-params.raml",
"tests/raml-1.0/MethodResponses/inline-schema-01/valid.raml",
"tests/raml-1.0/MethodResponses/example-json/invalid-json.raml",
"tests/raml-1.0/MethodResponses/example-json/valid.raml",
"tests/raml-1.0/MethodResponses/complex-json-schemes/invalid-schema-json.raml",
"tests/raml-1.0/MethodResponses/complex-json-schemes/valid.raml",
"tests/raml-1.0/MethodResponses/body-schema-json-02/invalid-conform-schema.raml",
"tests/raml-1.0/MethodResponses/body-schema-json-02/valid.raml",
"tests/raml-1.0/MethodResponses/body-schema-json-01/invalid-conform-schema.raml",
"tests/raml-1.0/MethodResponses/body-schema-json-01/valid.raml",
"tests/raml-1.0/ResourceTypes/with-params/invalid-missing-param.raml",
"tests/raml-1.0/ResourceTypes/with-params/valid.raml",
"tests/raml-1.0/ResourceTypes/used-with-traits/invalid-not-defined-trait.raml",
"tests/raml-1.0/ResourceTypes/used-with-traits/valid.raml",
"tests/raml-1.0/ResourceTypes/used-in-resource/invalid-inexisting-resourcetype.raml",
"tests/raml-1.0/ResourceTypes/used-in-resource/valid.raml",
"tests/raml-1.0/ResourceTypes/redefine-parameter/valid.raml",
"tests/raml-1.0/ResourceTypes/parameter-mediatype/valid.raml",
"tests/raml-1.0/ResourceTypes/not-required-methods/invalid-not-supported-method.raml",
"tests/raml-1.0/ResourceTypes/not-required-methods/valid.raml",
"tests/raml-1.0/ResourceTypes/invalid-type/invalid.raml",
"tests/raml-1.0/ResourceTypes/inherit-and-used/invalid-defines-resources.raml",
"tests/raml-1.0/ResourceTypes/inherit-and-used/valid.raml",
"tests/raml-1.0/ResourceTypes/include-parameter/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-11/invalid-status-code.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-11/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-09/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-09/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-08/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-08/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-07/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-07/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-06/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-06/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-05/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-05/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-04/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-04/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-03/invalid-req-property-missing.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-03/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-02/invalid-unknown-property.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-02/valid.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-01/invalid-unknown-property.raml",
"tests/raml-1.0/ResourceTypes/datatype-properties-01/valid.raml",
"tests/raml-1.0/ResourceTypes/chaining-functions/invalid-inexisting-func.raml",
"tests/raml-1.0/ResourceTypes/chaining-functions/valid.raml",
"tests/raml-1.0/Traits/with-params/invalid-inexisting-trait.raml",
"tests/raml-1.0/Traits/with-params/valid.raml",
"tests/raml-1.0/Traits/params-collision-resolution/invalid-unknown-param.raml",
"tests/raml-1.0/Traits/params-collision-resolution/valid.raml",
"tests/raml-1.0/Traits/parameter-as-key/valid.raml",
"tests/raml-1.0/Traits/merge-array-values/invalid-types-conflict.raml",
"tests/raml-1.0/Traits/merge-array-values/valid.raml",
"tests/raml-1.0/Traits/datatype-properties-04/invalid-wrong-value-type.raml",
"tests/raml-1.0/Traits/datatype-properties-04/valid.raml",
"tests/raml-1.0/Traits/datatype-properties-03/invalid-wrong-value-type.raml",
"tests/raml-1.0/Traits/datatype-properties-03/valid.raml",
"tests/raml-1.0/Traits/datatype-properties-02/invalid-req-property-missing.raml",
"tests/raml-1.0/Traits/datatype-properties-02/valid.raml",
"tests/raml-1.0/Traits/datatype-properties-01/invalid-req-property-missing.raml",
"tests/raml-1.0/Traits/datatype-properties-01/valid.raml",
"tests/raml-1.0/Traits/applied-to-method/invalid-pattern.raml",
"tests/raml-1.0/Traits/applied-to-method/valid.raml",
"tests/raml-1.0/TemplateFunctions/upperunderscorecase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/upperunderscorecase/valid.raml",
"tests/raml-1.0/TemplateFunctions/upperhyphencase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/upperhyphencase/valid.raml",
"tests/raml-1.0/TemplateFunctions/uppercase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/uppercase/valid.raml",
"tests/raml-1.0/TemplateFunctions/uppercamelcase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/uppercamelcase/valid.raml",
"tests/raml-1.0/TemplateFunctions/singularize/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/singularize/valid.raml",
"tests/raml-1.0/TemplateFunctions/pluralize/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/pluralize/valid.raml",
"tests/raml-1.0/TemplateFunctions/multiple/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/multiple/valid.raml",
"tests/raml-1.0/TemplateFunctions/lowerunderscorecase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/lowerunderscorecase/valid.raml",
"tests/raml-1.0/TemplateFunctions/lowerhyphencase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/lowerhyphencase/valid.raml",
"tests/raml-1.0/TemplateFunctions/lowercase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/lowercase/valid.raml",
"tests/raml-1.0/TemplateFunctions/lowercamelcase/invalid-used-without-pipe.raml",
"tests/raml-1.0/TemplateFunctions/lowercamelcase/valid.raml",
"tests/raml-1.0/SecuritySchemes/scopes/invalid-scope.raml",
"tests/raml-1.0/SecuritySchemes/scopes/valid.raml",
"tests/raml-1.0/SecuritySchemes/pass-through/invalid-unknown-type.raml",
"tests/raml-1.0/SecuritySchemes/pass-through/valid.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-used/invalid-unknown-type.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-used/valid.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-03/invalid-property-value.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-03/valid.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-02/invalid-req-property-missing.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-02/valid.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-01/invalid-unknown-node.raml",
"tests/raml-1.0/SecuritySchemes/oauth2-01/valid.raml",
"tests/raml-1.0/SecuritySchemes/oauth1/invalid-not-supported-signature.raml",
"tests/raml-1.0/SecuritySchemes/oauth1/invalid-req-property-missing.raml",
"tests/raml-1.0/SecuritySchemes/oauth1/valid.raml",
"tests/raml-1.0/SecuritySchemes/digest-authentication/invalid-unknown-type.raml",
"tests/raml-1.0/SecuritySchemes/digest-authentication/valid.raml",
"tests/raml-1.0/SecuritySchemes/custom-scheme-prefix/invalid-prefix.raml",
"tests/raml-1.0/SecuritySchemes/custom-scheme-prefix/valid.raml",
"tests/raml-1.0/SecuritySchemes/basic-authentication/invalid-unknown-type.raml",
"tests/raml-1.0/SecuritySchemes/basic-authentication/valid.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-annotation-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-api-used-in-annotation.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-doc-item-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-example-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-method-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-request-body-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-resource-type-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-resource-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-response-body-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-response-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-security-scheme-settings.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-security-scheme-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-trait-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/invalid-type-declaration-used-in-api.raml",
"tests/raml-1.0/Annotations/target-locations/valid-annotation.raml",
"tests/raml-1.0/Annotations/target-locations/valid-api.raml",
"tests/raml-1.0/Annotations/target-locations/valid-doc-item.raml",
"tests/raml-1.0/Annotations/target-locations/valid-example.raml",
"tests/raml-1.0/Annotations/target-locations/valid-method.raml",
"tests/raml-1.0/Annotations/target-locations/valid-request-body.raml",
"tests/raml-1.0/Annotations/target-locations/valid-resource-type.raml",
"tests/raml-1.0/Annotations/target-locations/valid-resource.raml",
"tests/raml-1.0/Annotations/target-locations/valid-response-body.raml",
"tests/raml-1.0/Annotations/target-locations/valid-response.raml",
"tests/raml-1.0/Annotations/target-locations/valid-security-scheme-settings.raml",
"tests/raml-1.0/Annotations/target-locations/valid-security-scheme.raml",
"tests/raml-1.0/Annotations/target-locations/valid-trait.raml",
"tests/raml-1.0/Annotations/target-locations/valid-type-declaration.raml",
"tests/raml-1.0/Annotations/scalar-values-annotated/invalid-missing-value.raml",
"tests/raml-1.0/Annotations/scalar-values-annotated/valid.raml",
"tests/raml-1.0/Annotations/root-10/invalid-inherit-type.raml",
"tests/raml-1.0/Annotations/root-10/valid-inherit-type.raml",
"tests/raml-1.0/Annotations/root-09/invalid-inheritance.raml",
"tests/raml-1.0/Annotations/root-09/valid-inheritance.raml",
"tests/raml-1.0/Annotations/root-08/invalid-target.raml",
"tests/raml-1.0/Annotations/root-08/valid-target.raml",
"tests/raml-1.0/Annotations/root-07/invalid-min-length.raml",
"tests/raml-1.0/Annotations/root-07/valid-min-length.raml",
"tests/raml-1.0/Annotations/root-06/invalid-num-pattern-prop.raml",
"tests/raml-1.0/Annotations/root-06/valid-num-pattern-prop.raml",
"tests/raml-1.0/Annotations/root-05/invalid-inheritance.raml",
"tests/raml-1.0/Annotations/root-05/valid-inheritance.raml",
"tests/raml-1.0/Annotations/root-04/invalid-bools-array.raml",
"tests/raml-1.0/Annotations/root-04/valid-bools-array.raml",
"tests/raml-1.0/Annotations/root-03/invalid-missing-required-prop.raml",
"tests/raml-1.0/Annotations/root-03/valid-non-required-prop.raml",
"tests/raml-1.0/Annotations/root-02/invalid-boolean-val.raml",
"tests/raml-1.0/Annotations/root-02/valid-obj.raml",
"tests/raml-1.0/Annotations/root-01/invalid-enum-val.raml",
"tests/raml-1.0/Annotations/root-01/valid-obj.raml",
"tests/raml-1.0/Annotations/resource-08/invalid-duplicate-prop.raml",
"tests/raml-1.0/Annotations/resource-08/valid.raml",
"tests/raml-1.0/Annotations/resource-07/invalid-enum-val.raml",
"tests/raml-1.0/Annotations/resource-07/valid-enum.raml",
"tests/raml-1.0/Annotations/resource-06/invalid-undefined-annotation.raml",
"tests/raml-1.0/Annotations/resource-06/valid.raml",
"tests/raml-1.0/Annotations/resource-05/invalid-pattern-prop.raml",
"tests/raml-1.0/Annotations/resource-05/valid-pattern-prop.raml",
"tests/raml-1.0/Annotations/resource-04/invalid-pattern-prop.raml",
"tests/raml-1.0/Annotations/resource-04/valid-pattern-prop.raml",
"tests/raml-1.0/Annotations/resource-03/invalid-not-allowed-prop.raml",
"tests/raml-1.0/Annotations/resource-03/valid-additional-props.raml",
"tests/raml-1.0/Annotations/resource-03/valid-no-additional-props.raml",
"tests/raml-1.0/Annotations/resource-02/invalid-missing-required-prop.raml",
"tests/raml-1.0/Annotations/resource-02/valid-non-required-prop.raml",
"tests/raml-1.0/Annotations/resource-01/invalid-missing-required-prop.raml",
"tests/raml-1.0/Annotations/resource-01/valid-obj.raml",
"tests/raml-1.0/Annotations/other-06/invalid-undefined-annotation.raml",
"tests/raml-1.0/Annotations/other-06/valid-method.raml",
"tests/raml-1.0/Annotations/other-05/invalid-prop-type.raml",
"tests/raml-1.0/Annotations/other-05/valid.raml",
"tests/raml-1.0/Annotations/other-04/invalid-max.raml",
"tests/raml-1.0/Annotations/other-04/valid-max.raml",
"tests/raml-1.0/Annotations/other-03/invalid-min.raml",
"tests/raml-1.0/Annotations/other-03/valid-min.raml",
"tests/raml-1.0/Annotations/other-02/invalid-prop-type.raml",
"tests/raml-1.0/Annotations/other-02/valid-prop-type.raml",
"tests/raml-1.0/Annotations/complex-11/invalid-multiple-annots.raml",
"tests/raml-1.0/Annotations/complex-11/valid-multiple-annots.raml",
"tests/raml-1.0/Annotations/complex-10/invalid-wrong-type.raml",
"tests/raml-1.0/Annotations/complex-10/lib.raml",
"tests/raml-1.0/Annotations/complex-10/valid-lib-annotation.raml",
"tests/raml-1.0/Annotations/complex-08/invalid-undefined-property.raml",
"tests/raml-1.0/Annotations/complex-08/lib.raml",
"tests/raml-1.0/Annotations/complex-08/valid-annotation-lib.raml",
"tests/raml-1.0/Annotations/complex-06/invalid-param-missing.raml",
"tests/raml-1.0/Annotations/complex-06/valid-params.raml",
"tests/raml-1.0/Annotations/complex-05/invalid-enum.raml",
"tests/raml-1.0/Annotations/complex-05/valid-enum.raml",
"tests/raml-1.0/Annotations/complex-03/invalid-target.raml",
"tests/raml-1.0/Annotations/complex-03/valid.raml",
"tests/raml-1.0/Annotations/complex-02/invalid-nil-annotation.raml",
"tests/raml-1.0/Annotations/complex-02/valid-nil-annotation.raml",
"tests/raml-1.0/Annotations/complex-01/invalid-wrong-target.raml",
"tests/raml-1.0/Annotations/complex-01/valid.raml",
"tests/raml-1.0/Fragments/using-libraries/invalid-chaining.raml",
"tests/raml-1.0/Fragments/using-libraries/valid-uses.raml",
"tests/raml-1.0/Fragments/using-libraries/libraries/file-type.raml",
"tests/raml-1.0/Fragments/using-libraries/libraries/files.raml",
"tests/raml-1.0/Fragments/simple-library/invalid-nodes.raml",
"tests/raml-1.0/Fragments/simple-library/valid.raml",
"tests/raml-1.0/Fragments/securityscheme/invalid-nodes-in-security-scheme.raml",
"tests/raml-1.0/Fragments/securityscheme/valid.raml",
"tests/raml-1.0/Fragments/securityscheme/includes/invalid-nodes.raml",
"tests/raml-1.0/Fragments/securityscheme/includes/valid-oauth2.raml",
"tests/raml-1.0/Fragments/resourcetype/invalid-nodes-in-resourcetype.raml",
"tests/raml-1.0/Fragments/resourcetype/valid.raml",
"tests/raml-1.0/Fragments/resourcetype/includes/invalid-nodes.raml",
"tests/raml-1.0/Fragments/resourcetype/includes/valid.raml",
"tests/raml-1.0/Fragments/namedexample-02/invalid-meaningless-examples-content.raml",
"tests/raml-1.0/Fragments/namedexample-02/valid.raml",
"tests/raml-1.0/Fragments/namedexample-02/examples/invalid-meaningless-content.raml",
"tests/raml-1.0/Fragments/namedexample-02/examples/valid-multiple-examples.raml",
"tests/raml-1.0/Fragments/namedexample-01/invalid-includes-incorrect-named-example.raml",
"tests/raml-1.0/Fragments/namedexample-01/valid.raml",
"tests/raml-1.0/Fragments/namedexample-01/examples/invalid-one-example.raml",
"tests/raml-1.0/Fragments/namedexample-01/examples/valid-multiple-examples.raml",
"tests/raml-1.0/Fragments/extension/invalid-nodes.raml",
"tests/raml-1.0/Fragments/extension/main.raml",
"tests/raml-1.0/Fragments/extension/valid.raml",
"tests/raml-1.0/Fragments/extension/lib/decls.raml",
"tests/raml-1.0/Fragments/extend-with-new-method/base.raml",
"tests/raml-1.0/Fragments/extend-with-new-method/invalid-inexisting-base.raml",
"tests/raml-1.0/Fragments/extend-with-new-method/valid.raml",
"tests/raml-1.0/Fragments/documentationitem/invalid-docitem-included.raml",
"tests/raml-1.0/Fragments/documentationitem/valid.raml",
"tests/raml-1.0/Fragments/documentationitem/includes/invalid-wrong-nodes.raml",
"tests/raml-1.0/Fragments/documentationitem/includes/valid.raml",
"tests/raml-1.0/Fragments/datatype/invalid-datatype-included.raml",
"tests/raml-1.0/Fragments/datatype/valid.raml",
"tests/raml-1.0/Fragments/datatype/includes/invalid-nodes.raml",
"tests/raml-1.0/Fragments/datatype/includes/valid.raml",
"tests/raml-1.0/Fragments/annotation/invalid-annotation-included.raml",
"tests/raml-1.0/Fragments/annotation/valid.raml",
"tests/raml-1.0/Fragments/annotation/includes/invalid-wrong-structure.raml",
"tests/raml-1.0/Fragments/annotation/includes/valid-annotation.raml",
"tests/raml-1.0/Libraries/uses-02/invalid-uses-non-lib.raml",
"tests/raml-1.0/Libraries/uses-02/lib.raml",
"tests/raml-1.0/Libraries/uses-02/valid-indirect-use.raml",
"tests/raml-1.0/Libraries/uses-01/invalid-uses-inexisting-lib.raml",
"tests/raml-1.0/Libraries/uses-01/lib.raml",
"tests/raml-1.0/Libraries/uses-01/valid.raml",
"tests/raml-1.0/Libraries/standalone/invalid-resource-defined.raml",
"tests/raml-1.0/Libraries/standalone/valid.raml",
"tests/raml-1.0/Libraries/include-02/files-resource.raml",
"tests/raml-1.0/Libraries/include-02/invalid-include-in-wrong-place.raml",
"tests/raml-1.0/Libraries/include-02/valid-resource-type.raml",
"tests/raml-1.0/Libraries/include-02/libraries/files.raml",
"tests/raml-1.0/Libraries/include-01/invalid-dynamic-inclusion.raml",
"tests/raml-1.0/Libraries/include-01/invalid-include-inexisting.raml",
"tests/raml-1.0/Libraries/include-01/myLibrary.raml",
"tests/raml-1.0/Libraries/include-01/rt0.raml",
"tests/raml-1.0/Libraries/include-01/valid-resource-type.raml",
"tests/raml-1.0/Libraries/chain-uses/object-B.raml",
"tests/raml-1.0/Libraries/chain-uses/object-C.raml",
"tests/raml-1.0/Libraries/chain-uses/object-D.raml",
"tests/raml-1.0/Libraries/chain-uses/valid.raml",
"tests/raml-1.0/Overlays/with-lib/aws-lib.raml",
"tests/raml-1.0/Overlays/with-lib/base.raml",
"tests/raml-1.0/Overlays/with-lib/invalid-inexisting-lib.raml",
"tests/raml-1.0/Overlays/with-lib/valid.raml",
"tests/raml-1.0/Overlays/triple-overlay-extension/base1.raml",
"tests/raml-1.0/Overlays/triple-overlay-extension/base2.raml",
"tests/raml-1.0/Overlays/triple-overlay-extension/base3.raml",
"tests/raml-1.0/Overlays/triple-overlay-extension/valid.raml",
"tests/raml-1.0/Overlays/override-version/base.raml",
"tests/raml-1.0/Overlays/override-version/invalid.raml",
"tests/raml-1.0/Overlays/override-not-existing-nested-resource/base.raml",
"tests/raml-1.0/Overlays/override-not-existing-nested-resource/invalid.raml",
"tests/raml-1.0/Overlays/override-not-existing-method/base.raml",
"tests/raml-1.0/Overlays/override-not-existing-method/invalid.raml",
"tests/raml-1.0/Overlays/override-documentation/base.raml",
"tests/raml-1.0/Overlays/override-documentation/valid.raml",
"tests/raml-1.0/Overlays/override-displayname/base.raml",
"tests/raml-1.0/Overlays/override-displayname/valid.raml",
"tests/raml-1.0/Overlays/override-default/base.raml",
"tests/raml-1.0/Overlays/override-default/invalid.raml",
"tests/raml-1.0/Overlays/override-deep-param/base.raml",
"tests/raml-1.0/Overlays/override-deep-param/invalid-overrides-method.raml",
"tests/raml-1.0/Overlays/override-deep-param/valid.raml",
"tests/raml-1.0/Overlays/overlay-with-metadata/base.raml",
"tests/raml-1.0/Overlays/overlay-with-metadata/invalid-defines-mediatype.raml",
"tests/raml-1.0/Overlays/overlay-with-metadata/valid.raml",
"tests/raml-1.0/Overlays/lib-extend-method/base.raml",
"tests/raml-1.0/Overlays/lib-extend-method/invalid-adds-protocols.raml",
"tests/raml-1.0/Overlays/lib-extend-method/valid.raml",
"tests/raml-1.0/Overlays/lib-extend-method/lib/decls.raml",
"tests/raml-1.0/Overlays/extend-deep-param/base.raml",
"tests/raml-1.0/Overlays/extend-deep-param/invalid-resp-code.raml",
"tests/raml-1.0/Overlays/extend-deep-param/valid.raml",
"tests/raml-1.0/Overlays/ext-override-deep-param/base.raml",
"tests/raml-1.0/Overlays/ext-override-deep-param/invalid-overide-body-content-type.raml",
"tests/raml-1.0/Overlays/ext-override-deep-param/valid.raml",
"tests/raml-1.0/Overlays/empty-base/base.raml",
"tests/raml-1.0/Overlays/empty-base/invalid-define-security-schemes.raml",
"tests/raml-1.0/Overlays/empty-base/valid.raml",
"tests/raml-1.0/Overlays/double-overlay-with-lib/base1.raml",
"tests/raml-1.0/Overlays/double-overlay-with-lib/base2.raml",
"tests/raml-1.0/Overlays/double-overlay-with-lib/invalid-define-subresource.raml",
"tests/raml-1.0/Overlays/double-overlay-with-lib/lib.raml",
"tests/raml-1.0/Overlays/double-overlay-with-lib/valid.raml",
"tests/raml-1.0/Overlays/double-overlay/base1.raml",
"tests/raml-1.0/Overlays/double-overlay/base2.raml",
"tests/raml-1.0/Overlays/double-overlay/invalid-define-new-resource.raml",
"tests/raml-1.0/Overlays/double-overlay/valid.raml",
"tests/raml-1.0/Overlays/double-displayname-override/base1.raml",
"tests/raml-1.0/Overlays/double-displayname-override/base2.raml",
"tests/raml-1.0/Overlays/double-displayname-override/invalid-add-trait-headers.raml",
"tests/raml-1.0/Overlays/double-displayname-override/valid.raml",
"tests/raml-1.0/Overlays/define-new-types/base.raml",
"tests/raml-1.0/Overlays/define-new-types/invalid-defines-resourcetype.raml",
"tests/raml-1.0/Overlays/define-new-types/valid.raml",
"tests/raml-1.0/Overlays/define-new-schemas/base.raml",
"tests/raml-1.0/Overlays/define-new-schemas/invalid-defineds-trait.raml",
"tests/raml-1.0/Overlays/define-new-schemas/valid.raml",
"tests/raml-1.0/Overlays/define-new-params/base.raml",
"tests/raml-1.0/Overlays/define-new-params/invalid-defineds-resource.raml",
"tests/raml-1.0/Overlays/define-new-params/valid.raml",
"tests/raml-1.0/Overlays/define-new-annotations/base.raml",
"tests/raml-1.0/Overlays/define-new-annotations/invalid-extends-inexisting-file.raml",
"tests/raml-1.0/Overlays/define-new-annotations/valid.raml",
"tests/raml-1.0/spec-examples/teams-api/valid.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/api.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/types.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/traits/acceptCallback.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/traits/limitable.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/traits/limitableByGeoPoint.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/traits/limitableById.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/traits/limitableByTime.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/securitySchemes/clientId.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/securitySchemes/oauth_2_0.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/resourceTypes/base.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/resourceTypes/feedsListing.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/resourceTypes/mediaSearch.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/resourceTypes/secured.raml",
"tests/raml-1.0/spec-examples/Instagram1.0/resourceTypes/usersListing.raml",
"tests/raml-1.0/spec-examples/APIs/additional-facets-single-example.raml",
"tests/raml-1.0/spec-examples/APIs/additional-properties.raml",
"tests/raml-1.0/spec-examples/APIs/annotating-scalar-nodes.raml",
"tests/raml-1.0/spec-examples/APIs/annotations-targets.raml",
"tests/raml-1.0/spec-examples/APIs/annotations.raml",
"tests/raml-1.0/spec-examples/APIs/apply-annotations-1.raml",
"tests/raml-1.0/spec-examples/APIs/apply-annotations-2.raml",
"tests/raml-1.0/spec-examples/APIs/apply-default-media-type.raml",
"tests/raml-1.0/spec-examples/APIs/apply-resourcetypes-traits.raml",
"tests/raml-1.0/spec-examples/APIs/apply-security-scheme-null.raml",
"tests/raml-1.0/spec-examples/APIs/apply-security-schemes.raml",
"tests/raml-1.0/spec-examples/APIs/apply-securityscheme-parameter.raml",
"tests/raml-1.0/spec-examples/APIs/array-type-expanded.raml",
"tests/raml-1.0/spec-examples/APIs/array-type.raml",
"tests/raml-1.0/spec-examples/APIs/array-uri-parameter.raml",
"tests/raml-1.0/spec-examples/APIs/base-uri-parameter.raml",
"tests/raml-1.0/spec-examples/APIs/base-uri-template.raml",
"tests/raml-1.0/spec-examples/APIs/bodies.raml",
"tests/raml-1.0/spec-examples/APIs/boolean-type.raml",
"tests/raml-1.0/spec-examples/APIs/complex-examples.raml",
"tests/raml-1.0/spec-examples/APIs/complex-headers.raml",
"tests/raml-1.0/spec-examples/APIs/date-types.raml",
"tests/raml-1.0/spec-examples/APIs/default-media-types-multiple-2.raml",
"tests/raml-1.0/spec-examples/APIs/default-media-types-multiple.raml",
"tests/raml-1.0/spec-examples/APIs/default-media-types-single.raml",
"tests/raml-1.0/spec-examples/APIs/default-security.raml",
"tests/raml-1.0/spec-examples/APIs/default-type-5.raml",
"tests/raml-1.0/spec-examples/APIs/default-type-any-2.raml",
"tests/raml-1.0/spec-examples/APIs/default-type-any.raml",
"tests/raml-1.0/spec-examples/APIs/default-type-object.raml",
"tests/raml-1.0/spec-examples/APIs/default-type-string.raml",
"tests/raml-1.0/spec-examples/APIs/default-types-1.raml",
"tests/raml-1.0/spec-examples/APIs/default-types-2.raml",
"tests/raml-1.0/spec-examples/APIs/default-types-3.raml",
"tests/raml-1.0/spec-examples/APIs/default-types-4.raml",
"tests/raml-1.0/spec-examples/APIs/define-uri-parameters.raml",
"tests/raml-1.0/spec-examples/APIs/documentation.raml",
"tests/raml-1.0/spec-examples/APIs/duplicated-uris-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/external-type-extend-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/external-types-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/external-types.raml",
"tests/raml-1.0/spec-examples/APIs/file-type.raml",
"tests/raml-1.0/spec-examples/APIs/fragments-simple.raml",
"tests/raml-1.0/spec-examples/APIs/includes.raml",
"tests/raml-1.0/spec-examples/APIs/inline-type-declaration.raml",
"tests/raml-1.0/spec-examples/APIs/integer-type.raml",
"tests/raml-1.0/spec-examples/APIs/introduction-types-complex.raml",
"tests/raml-1.0/spec-examples/APIs/introduction-types.raml",
"tests/raml-1.0/spec-examples/APIs/invalid-discriminator-usage.raml",
"tests/raml-1.0/spec-examples/APIs/librarybooks.raml",
"tests/raml-1.0/spec-examples/APIs/markup-language.raml",
"tests/raml-1.0/spec-examples/APIs/multiple-examples.raml",
"tests/raml-1.0/spec-examples/APIs/multiple-inheritance-1.raml",
"tests/raml-1.0/spec-examples/APIs/multiple-inheritance-2.raml",
"tests/raml-1.0/spec-examples/APIs/multiple-inheritance-3-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/nested-resources.raml",
"tests/raml-1.0/spec-examples/APIs/null-type-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/null-type-union.raml",
"tests/raml-1.0/spec-examples/APIs/null-type.raml",
"tests/raml-1.0/spec-examples/APIs/number-type.raml",
"tests/raml-1.0/spec-examples/APIs/object-type-long.raml",
"tests/raml-1.0/spec-examples/APIs/object-type-short.raml",
"tests/raml-1.0/spec-examples/APIs/protocols.raml",
"tests/raml-1.0/spec-examples/APIs/query-parameter.raml",
"tests/raml-1.0/spec-examples/APIs/query-string.raml",
"tests/raml-1.0/spec-examples/APIs/resolve-includes.raml",
"tests/raml-1.0/spec-examples/APIs/resourcetypes-not-required-methods.raml",
"tests/raml-1.0/spec-examples/APIs/resourcetypes-traits-no-subresources-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/resourcetypes-traits-parameter.raml",
"tests/raml-1.0/spec-examples/APIs/resourcetypes-traits-parameterfunctions.raml",
"tests/raml-1.0/spec-examples/APIs/resourcetypes-traits.raml",
"tests/raml-1.0/spec-examples/APIs/responses.raml",
"tests/raml-1.0/spec-examples/APIs/resurcetypes-traits-external.raml",
"tests/raml-1.0/spec-examples/APIs/root.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-basic.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-digest.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-oauth1.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-oauth2.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-pass.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes-xother.raml",
"tests/raml-1.0/spec-examples/APIs/security-schemes.raml",
"tests/raml-1.0/spec-examples/APIs/simple-header.raml",
"tests/raml-1.0/spec-examples/APIs/single-example.raml",
"tests/raml-1.0/spec-examples/APIs/string-type.raml",
"tests/raml-1.0/spec-examples/APIs/template-uri-1.raml",
"tests/raml-1.0/spec-examples/APIs/trailing-slashes.raml",
"tests/raml-1.0/spec-examples/APIs/traits-merge-enumlist.raml",
"tests/raml-1.0/spec-examples/APIs/type-expression-extends.raml",
"tests/raml-1.0/spec-examples/APIs/type-expression.raml",
"tests/raml-1.0/spec-examples/APIs/type-names-question-mark.raml",
"tests/raml-1.0/spec-examples/APIs/type-schema-invalid.raml",
"tests/raml-1.0/spec-examples/APIs/types-pattern-properties.raml",
"tests/raml-1.0/spec-examples/APIs/union-type-multiple-inheritance.raml",
"tests/raml-1.0/spec-examples/APIs/union-type.raml",
"tests/raml-1.0/spec-examples/APIs/uri-parameters-1.raml",
"tests/raml-1.0/spec-examples/APIs/uri-parameters-ext.raml",
"tests/raml-1.0/spec-examples/APIs/uri-templates-allowed.raml",
"tests/raml-1.0/spec-examples/APIs/user-defined-facets.raml",
"tests/raml-1.0/spec-examples/APIs/using-discriminator.raml",
"tests/raml-1.0/spec-examples/APIs/using-discriminatorvalue.raml",
"tests/raml-1.0/spec-examples/APIs/xml-facet.raml",
"tests/raml-1.0/spec-examples/APIs/types/collection.raml",
"tests/raml-1.0/spec-examples/APIs/types/gist.raml",
"tests/raml-1.0/spec-examples/APIs/types/gists.raml",
"tests/raml-1.0/spec-examples/APIs/types/user.raml",
"tests/raml-1.0/spec-examples/APIs/types/users.raml",
"tests/raml-1.0/spec-examples/APIs/traits/paged.raml",
"tests/raml-1.0/spec-examples/APIs/traits/rate-limited.raml",
"tests/raml-1.0/spec-examples/APIs/traits/secured.raml",
"tests/raml-1.0/spec-examples/APIs/securitySchemes/oauth_1_0.raml",
"tests/raml-1.0/spec-examples/APIs/securitySchemes/oauth_2_0.raml",
"tests/raml-1.0/spec-examples/APIs/resourceTypes/collection.raml",
"tests/raml-1.0/spec-examples/APIs/resourceTypes/member.raml",
"tests/raml-1.0/spec-examples/APIs/patterns/resourceTypes.raml",
"tests/raml-1.0/spec-examples/APIs/patterns/traits.raml",
"tests/raml-1.0/spec-examples/APIs/libraries/file-type.raml",
"tests/raml-1.0/spec-examples/APIs/libraries/files.raml",
"tests/raml-1.0/EdgeCases/uriparam-examples-slash/invalid-uriparam-examples-slash.raml",
"tests/raml-1.0/EdgeCases/uriparam-examples-slash/valid.raml",
"tests/raml-1.0/EdgeCases/uriparam-example-slash/invalid-uriparam-example-slash.raml",
"tests/raml-1.0/EdgeCases/uriparam-example-slash/valid.raml",
"tests/raml-1.0/EdgeCases/uriparam-enum-slash/invalid-uriparam-enum-slash.raml",
"tests/raml-1.0/EdgeCases/uriparam-enum-slash/valid.raml",
"tests/raml-1.0/EdgeCases/uriparam-default-slash/invalid-uriparam-default-slash.raml",
"tests/raml-1.0/EdgeCases/uriparam-default-slash/valid.raml",
"tests/raml-1.0/EdgeCases/uri-templates/valid.raml",
"tests/raml-1.0/EdgeCases/unrecognized-security-scheme/invalid-scheme-type.raml",
"tests/raml-1.0/EdgeCases/unrecognized-security-scheme/valid.raml",
"tests/raml-1.0/EdgeCases/unrecognized-security-scheme/securitySchemes/hmac.raml",
"tests/raml-1.0/EdgeCases/unrecognized-security-scheme/securitySchemes/invalid-scheme.raml",
"tests/raml-1.0/EdgeCases/string-in-angle-brackets/invalid.raml",
"tests/raml-1.0/EdgeCases/string-in-angle-brackets/valid-string-in-angle-brackets.raml",
"tests/raml-1.0/EdgeCases/security-describedby/invalid.raml",
"tests/raml-1.0/EdgeCases/security-describedby/valid-security-describedby.raml",
"tests/raml-1.0/EdgeCases/schemas-types-exclusive/invalid.raml",
"tests/raml-1.0/EdgeCases/schemas-inner-definitions/invalid-references-invalid-json-schema.raml",
"tests/raml-1.0/EdgeCases/schemas-inner-definitions/test_resource_type.raml",
"tests/raml-1.0/EdgeCases/schemas-inner-definitions/valid.raml",
"tests/raml-1.0/EdgeCases/restrict-number-value/invalid-restrict-number-value.raml",
"tests/raml-1.0/EdgeCases/restrict-number-value/valid.raml",
"tests/raml-1.0/EdgeCases/resourcetype-application/invalid-resourcetype-application.raml",
"tests/raml-1.0/EdgeCases/resourcetype-application/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-time-only/invalid-redefine-time-only.raml",
"tests/raml-1.0/EdgeCases/redefine-time-only/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-string/invalid-redefine-string.raml",
"tests/raml-1.0/EdgeCases/redefine-string/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-object/invalid-redefine-object.raml",
"tests/raml-1.0/EdgeCases/redefine-object/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-number/invalid-redefine-number.raml",
"tests/raml-1.0/EdgeCases/redefine-number/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-nil/invalid-redefine-nil.raml",
"tests/raml-1.0/EdgeCases/redefine-nil/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-integer/invalid-redefine-integer.raml",
"tests/raml-1.0/EdgeCases/redefine-integer/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-file/invalid-redefine-file.raml",
"tests/raml-1.0/EdgeCases/redefine-file/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-datetime-only/invalid-redefine-datetime-only.raml",
"tests/raml-1.0/EdgeCases/redefine-datetime-only/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-datetime/invalid-redefine-datetime.raml",
"tests/raml-1.0/EdgeCases/redefine-datetime/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-date-only/invalid-redefine-date-only.raml",
"tests/raml-1.0/EdgeCases/redefine-date-only/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-boolean/invalid-redefine-boolean.raml",
"tests/raml-1.0/EdgeCases/redefine-boolean/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-array/invalid-redefine-array.raml",
"tests/raml-1.0/EdgeCases/redefine-array/valid.raml",
"tests/raml-1.0/EdgeCases/redefine-any/invalid-redefine-any.raml",
"tests/raml-1.0/EdgeCases/redefine-any/valid.raml",
"tests/raml-1.0/EdgeCases/property-type-conflict/invalid-property-type-conflict.raml",
"tests/raml-1.0/EdgeCases/property-type-conflict/valid.raml",
"tests/raml-1.0/EdgeCases/parsing-param-array-type/valid-parsing-param-array-type.raml",
"tests/raml-1.0/EdgeCases/parsing-facets/invalid-override-builtin-facet.raml",
"tests/raml-1.0/EdgeCases/parsing-facets/valid-parsing-facets.raml",
"tests/raml-1.0/EdgeCases/parametrized-annotation-lib/lib.raml",
"tests/raml-1.0/EdgeCases/parametrized-annotation-lib/valid.raml",
"tests/raml-1.0/EdgeCases/param-resp-definitions/invalid-node-is-scalar.raml",
"tests/raml-1.0/EdgeCases/param-resp-definitions/valid-param-resp-definitions.raml",
"tests/raml-1.0/EdgeCases/override-parent-facet/invalid-override-parent-facet.raml",
"tests/raml-1.0/EdgeCases/override-parent-facet/valid.raml",
"tests/raml-1.0/EdgeCases/overlay-overrides-resources/base.raml",
"tests/raml-1.0/EdgeCases/overlay-overrides-resources/invalid-adds-resources.raml",
"tests/raml-1.0/EdgeCases/overlay-overrides-resources/valid.raml",
"tests/raml-1.0/EdgeCases/oauth2-grants-url/invalid-not-absolute-uri.raml",
"tests/raml-1.0/EdgeCases/oauth2-grants-url/valid-oauth2-grants-url.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/invalid-integer-format.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/invalid-number-format.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-double.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-float.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-int.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-int16.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-int32.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-int64.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-int8.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-integer-long.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-double.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-float.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-int.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-int16.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-int32.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-int64.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-int8.raml",
"tests/raml-1.0/EdgeCases/numeric-formats/valid-number-long.raml",
"tests/raml-1.0/EdgeCases/number-zero-division/invalid-number-zero-division.raml",
"tests/raml-1.0/EdgeCases/number-zero-division/valid.raml",
"tests/raml-1.0/EdgeCases/non-required-facet/valid-non-required-facet.raml",
"tests/raml-1.0/EdgeCases/nested-lib-uses/data-type.raml",
"tests/raml-1.0/EdgeCases/nested-lib-uses/invalid-data-type.raml",
"tests/raml-1.0/EdgeCases/nested-lib-uses/invalid-refer-nested-inexisting-lib.raml",
"tests/raml-1.0/EdgeCases/nested-lib-uses/library.raml",
"tests/raml-1.0/EdgeCases/nested-lib-uses/valid.raml",
"tests/raml-1.0/EdgeCases/nested-json-schema/invalid-refer-inexisting-nested-schema.raml",