@@ -53,7 +53,7 @@ definitions:
5353 Valid values of the current positional argument
5454 https://bashly.dannyb.co/configuration/argument/#allowed
5555 type : array
56- minLength : 1
56+ minItems : 1
5757 uniqueItems : true
5858 items :
5959 description : A valid value of the current positional argument
@@ -172,7 +172,7 @@ definitions:
172172 Valid values of the current flag
173173 https://bashly.dannyb.co/configuration/flag/#allowed
174174 type : array
175- minLength : 1
175+ minItems : 1
176176 uniqueItems : true
177177 items :
178178 description : A valid value of the current positional argument
@@ -186,7 +186,7 @@ definitions:
186186 Mutually exclusive flags of the current flag
187187 https://bashly.dannyb.co/configuration/flag/#conflicts
188188 type : array
189- minLength : 1
189+ minItems : 1
190190 uniqueItems : true
191191 items :
192192 description : The long form of the required flag
@@ -200,7 +200,7 @@ definitions:
200200 Additional flags required by the current flag
201201 https://bashly.dannyb.co/configuration/flag/#needs
202202 type : array
203- minLength : 1
203+ minItems : 1
204204 uniqueItems : true
205205 items :
206206 description : The long form of the required flag
@@ -214,7 +214,7 @@ definitions:
214214 Completions of the current flag
215215 https://bashly.dannyb.co/configuration/flag/#completions
216216 type : array
217- minLength : 1
217+ minItems : 1
218218 uniqueItems : true
219219 items :
220220 description : A completion of the current flag
@@ -317,7 +317,7 @@ definitions:
317317 Valid values of the current environment variable
318318 https://bashly.dannyb.co/configuration/environment-variable/#allowed
319319 type : array
320- minLength : 1
320+ minItems : 1
321321 uniqueItems : true
322322 items :
323323 description : A valid value of the current environment variable
@@ -407,8 +407,8 @@ definitions:
407407 Arguments of the current script or sub-command
408408 https://bashly.dannyb.co/configuration/command/#args
409409 type : array
410- uniqueItems : true
411410 minItems : 1
411+ uniqueItems : true
412412 items :
413413 $ref : ' #/definitions/argument'
414414 flags-property :
@@ -417,8 +417,8 @@ definitions:
417417 Flags of the current script or sub-command
418418 https://bashly.dannyb.co/configuration/command/#flags
419419 type : array
420- uniqueItems : true
421420 minItems : 1
421+ uniqueItems : true
422422 items :
423423 $ref : ' #/definitions/flag'
424424 commands-property :
@@ -427,6 +427,7 @@ definitions:
427427 Subcommands of the current script or sub-command
428428 https://bashly.dannyb.co/configuration/command/#commands
429429 type : array
430+ minItems : 1
430431 uniqueItems : true
431432 items :
432433 $ref : ' #/definitions/command-property'
@@ -457,6 +458,7 @@ definitions:
457458 Environment variables of the current application
458459 https://bashly.dannyb.co/configuration/environment-variable/#environment-variable
459460 type : array
461+ minItems : 1
460462 uniqueItems : true
461463 items :
462464 $ref : ' #/definitions/environment-variable'
@@ -466,6 +468,7 @@ definitions:
466468 Bash variables for the current application
467469 https://bashly.dannyb.co/configuration/command/#variables
468470 type : array
471+ minItems : 1
469472 uniqueItems : true
470473 items :
471474 $ref : ' #/definitions/variable'
@@ -554,7 +557,7 @@ definitions:
554557 Completions of the current script or sub-command
555558 https://bashly.dannyb.co/configuration/command/#completions
556559 type : array
557- minLength : 1
560+ minItems : 1
558561 uniqueItems : true
559562 items :
560563 description : A completion of the current script or sub-command
@@ -617,7 +620,7 @@ definitions:
617620 Dependencies of the current script or sub-command
618621 https://bashly.dannyb.co/configuration/dependency/#dependency
619622 type: array
620- minLength : 1
623+ minItems : 1
621624 uniqueItems: true
622625 items:
623626 description: |-
0 commit comments