File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 593
593
"valid" : false
594
594
}
595
595
]
596
+ },
597
+ {
598
+ "description" : " unevaluatedItems on non-applicable type" ,
599
+ "schema" : {
600
+ "unevaluatedItems" : false
601
+ },
602
+ "tests" : [
603
+ {
604
+ "description" : " null is not applicable" ,
605
+ "data" : null ,
606
+ "valid" : true
607
+ },
608
+ {
609
+ "description" : " number is not applicable" ,
610
+ "data" : 42 ,
611
+ "valid" : true
612
+ },
613
+ {
614
+ "description" : " string is not applicable" ,
615
+ "data" : " foo" ,
616
+ "valid" : true
617
+ },
618
+ {
619
+ "description" : " object is not applicable" ,
620
+ "data" : {},
621
+ "valid" : true
622
+ }
623
+ ]
596
624
}
597
625
]
Original file line number Diff line number Diff line change 1307
1307
"valid" : false
1308
1308
}
1309
1309
]
1310
+ },
1311
+ {
1312
+ "description" : " unevaluatedProperties on non-applicable type" ,
1313
+ "schema" : {
1314
+ "unevaluatedProperties" : false
1315
+ },
1316
+ "tests" : [
1317
+ {
1318
+ "description" : " null is not applicable" ,
1319
+ "data" : null ,
1320
+ "valid" : true
1321
+ },
1322
+ {
1323
+ "description" : " number is not applicable" ,
1324
+ "data" : 42 ,
1325
+ "valid" : true
1326
+ },
1327
+ {
1328
+ "description" : " string is not applicable" ,
1329
+ "data" : " foo" ,
1330
+ "valid" : true
1331
+ },
1332
+ {
1333
+ "description" : " array is not applicable" ,
1334
+ "data" : [],
1335
+ "valid" : true
1336
+ }
1337
+ ]
1310
1338
}
1311
1339
]
You can’t perform that action at this time.
0 commit comments