File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
src/check_jsonschema/builtin_schemas/vendor Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Unreleased
1010
1111.. vendor-insert-here
1212
13+ - Update vendored schemas (2024-08-25)
14+
13150.29.2
1416------
1517
Original file line number Diff line number Diff line change 968968 "automatic" : {
969969 "anyOf" : [
970970 {
971- "type" : " boolean"
971+ "type" : [" boolean" , " string" ],
972+ "pattern" : " ^(true|false)$"
972973 },
973974 {
974975 "$ref" : " #/definitions/commonOptions/automaticRetry"
992993 "description" : " Whether to allow a job to be retried manually" ,
993994 "anyOf" : [
994995 {
995- "type" : " boolean"
996+ "type" : [" boolean" , " string" ],
997+ "pattern" : " ^(true|false)$"
996998 },
997999 {
9981000 "type" : " object" ,
9991001 "properties" : {
10001002 "allowed" : {
1001- "type" : " boolean" ,
1003+ "type" : [" boolean" , " string" ],
1004+ "pattern" : " ^(true|false)$" ,
10021005 "description" : " Whether or not this job can be retried manually" ,
10031006 "default" : true
10041007 },
10051008 "permit_on_passed" : {
1006- "type" : " boolean" ,
1009+ "type" : [" boolean" , " string" ],
1010+ "pattern" : " ^(true|false)$" ,
10071011 "description" : " Whether or not this job can be retried after it has passed" ,
10081012 "default" : true
10091013 },
Original file line number Diff line number Diff line change 1- fc4099c34baf2b186d08170f54b97264b7c492fc5aab0f263234af3db9cf60d3
1+ 7b91fb4c29df17714b03eb0eb803a801f1d347b18fb12bc46be7038d46f220c5
You can’t perform that action at this time.
0 commit comments