File tree Expand file tree Collapse file tree 3 files changed +35
-2
lines changed
src/check_jsonschema/builtin_schemas/vendor Expand file tree Collapse file tree 3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Unreleased
10
10
11
11
.. vendor-insert-here
12
12
13
- - Update vendored schemas (2022-11-22 )
13
+ - Update vendored schemas (2022-11-23 )
14
14
15
15
0.19.2
16
16
------
Original file line number Diff line number Diff line change 585
585
]
586
586
}
587
587
},
588
+ "id_tokens" : {
589
+ "type" : " object" ,
590
+ "markdownDescription" : " Defines JWTs to be injected as environment variables." ,
591
+ "patternProperties" : {
592
+ ".*" : {
593
+ "type" : " object" ,
594
+ "properties" : {
595
+ "aud" : {
596
+ "oneOf" : [
597
+ {
598
+ "type" : " string"
599
+ },
600
+ {
601
+ "type" : " array" ,
602
+ "items" : {
603
+ "type" : " string"
604
+ },
605
+ "minItems" : 1 ,
606
+ "uniqueItems" : true
607
+ }
608
+ ]
609
+ }
610
+ },
611
+ "required" : [
612
+ " aud"
613
+ ],
614
+ "additionalProperties" : false
615
+ }
616
+ }
617
+ },
588
618
"secrets" : {
589
619
"type" : " object" ,
590
620
"markdownDescription" : " Defines secrets to be injected as environment variables. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#secrets)." ,
1209
1239
"cache" : {
1210
1240
"$ref" : " #/definitions/cache"
1211
1241
},
1242
+ "id_tokens" : {
1243
+ "$ref" : " #/definitions/id_tokens"
1244
+ },
1212
1245
"secrets" : {
1213
1246
"$ref" : " #/definitions/secrets"
1214
1247
},
Original file line number Diff line number Diff line change 1
- e17d8566eda86e4c816d5458190d1e174b002ee723f0712902879cf40610ef4e
1
+ cbbcd56d1643a48926299a46a0eefd74d70396bfc9da1dcd36e0611c72687ef8
You can’t perform that action at this time.
0 commit comments