File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ const Ajv = require("ajv");
88const ajv = new Ajv ( {
99 errorDataPath : "configuration" ,
1010 allErrors : true ,
11- verbose : true ,
12- extendRefs : true
11+ verbose : true
1312} ) ;
1413require ( "ajv-keywords" ) ( ajv , [ "instanceof" ] ) ;
1514require ( "../schemas/ajv.absolutePath" ) ( ajv ) ;
Original file line number Diff line number Diff line change 568568 ]
569569 },
570570 "exclude" : {
571- "$ref" : " #/definitions/ruleSet-condition" ,
572- "absolutePath" : true
571+ "allOf" : [
572+ {"$ref" : " #/definitions/ruleSet-condition" },
573+ {"absolutePath" : true }
574+ ]
573575 },
574576 "include" : {
575- "$ref" : " #/definitions/ruleSet-condition" ,
576- "absolutePath" : true
577+ "allOf" : [
578+ {"$ref" : " #/definitions/ruleSet-condition" },
579+ {"absolutePath" : true }
580+ ]
577581 },
578582 "issuer" : {
579- "$ref" : " #/definitions/ruleSet-condition" ,
580- "absolutePath" : true
583+ "allOf" : [
584+ {"$ref" : " #/definitions/ruleSet-condition" },
585+ {"absolutePath" : true }
586+ ]
581587 },
582588 "loader" : {
583589 "anyOf" : [
606612 "$ref" : " #/definitions/ruleSet-query"
607613 },
608614 "resource" : {
609- "$ref" : " #/definitions/ruleSet-condition" ,
610- "absolutePath" : true
615+ "allOf" : [
616+ {"$ref" : " #/definitions/ruleSet-condition" },
617+ {"absolutePath" : true }
618+ ]
611619 },
612620 "resourceQuery" : {
613621 "$ref" : " #/definitions/ruleSet-condition"
616624 "$ref" : " #/definitions/ruleSet-rules"
617625 },
618626 "test" : {
619- "$ref" : " #/definitions/ruleSet-condition" ,
620- "absolutePath" : true
627+ "allOf" : [
628+ {"$ref" : " #/definitions/ruleSet-condition" },
629+ {"absolutePath" : true }
630+ ]
621631 },
622632 "use" : {
623633 "$ref" : " #/definitions/ruleSet-use"
You can’t perform that action at this time.
0 commit comments