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
10
10
11
11
.. vendor-insert-here
12
12
13
+ - Update vendored schemas (2024-08-25)
14
+
13
15
0.29.2
14
16
------
15
17
Original file line number Diff line number Diff line change 968
968
"automatic" : {
969
969
"anyOf" : [
970
970
{
971
- "type" : " boolean"
971
+ "type" : [" boolean" , " string" ],
972
+ "pattern" : " ^(true|false)$"
972
973
},
973
974
{
974
975
"$ref" : " #/definitions/commonOptions/automaticRetry"
992
993
"description" : " Whether to allow a job to be retried manually" ,
993
994
"anyOf" : [
994
995
{
995
- "type" : " boolean"
996
+ "type" : [" boolean" , " string" ],
997
+ "pattern" : " ^(true|false)$"
996
998
},
997
999
{
998
1000
"type" : " object" ,
999
1001
"properties" : {
1000
1002
"allowed" : {
1001
- "type" : " boolean" ,
1003
+ "type" : [" boolean" , " string" ],
1004
+ "pattern" : " ^(true|false)$" ,
1002
1005
"description" : " Whether or not this job can be retried manually" ,
1003
1006
"default" : true
1004
1007
},
1005
1008
"permit_on_passed" : {
1006
- "type" : " boolean" ,
1009
+ "type" : [" boolean" , " string" ],
1010
+ "pattern" : " ^(true|false)$" ,
1007
1011
"description" : " Whether or not this job can be retried after it has passed" ,
1008
1012
"default" : true
1009
1013
},
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