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 593593 "valid" : false
594594 }
595595 ]
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+ ]
596624 }
597625]
Original file line number Diff line number Diff line change 13071307 "valid" : false
13081308 }
13091309 ]
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+ ]
13101338 }
13111339]
You can’t perform that action at this time.
0 commit comments