@@ -53,7 +53,7 @@ definitions:
53
53
Valid values of the current positional argument
54
54
https://bashly.dannyb.co/configuration/argument/#allowed
55
55
type : array
56
- minLength : 1
56
+ minItems : 1
57
57
uniqueItems : true
58
58
items :
59
59
description : A valid value of the current positional argument
@@ -172,7 +172,7 @@ definitions:
172
172
Valid values of the current flag
173
173
https://bashly.dannyb.co/configuration/flag/#allowed
174
174
type : array
175
- minLength : 1
175
+ minItems : 1
176
176
uniqueItems : true
177
177
items :
178
178
description : A valid value of the current positional argument
@@ -186,7 +186,7 @@ definitions:
186
186
Mutually exclusive flags of the current flag
187
187
https://bashly.dannyb.co/configuration/flag/#conflicts
188
188
type : array
189
- minLength : 1
189
+ minItems : 1
190
190
uniqueItems : true
191
191
items :
192
192
description : The long form of the required flag
@@ -200,7 +200,7 @@ definitions:
200
200
Additional flags required by the current flag
201
201
https://bashly.dannyb.co/configuration/flag/#needs
202
202
type : array
203
- minLength : 1
203
+ minItems : 1
204
204
uniqueItems : true
205
205
items :
206
206
description : The long form of the required flag
@@ -214,7 +214,7 @@ definitions:
214
214
Completions of the current flag
215
215
https://bashly.dannyb.co/configuration/flag/#completions
216
216
type : array
217
- minLength : 1
217
+ minItems : 1
218
218
uniqueItems : true
219
219
items :
220
220
description : A completion of the current flag
@@ -317,7 +317,7 @@ definitions:
317
317
Valid values of the current environment variable
318
318
https://bashly.dannyb.co/configuration/environment-variable/#allowed
319
319
type : array
320
- minLength : 1
320
+ minItems : 1
321
321
uniqueItems : true
322
322
items :
323
323
description : A valid value of the current environment variable
@@ -407,8 +407,8 @@ definitions:
407
407
Arguments of the current script or sub-command
408
408
https://bashly.dannyb.co/configuration/command/#args
409
409
type : array
410
- uniqueItems : true
411
410
minItems : 1
411
+ uniqueItems : true
412
412
items :
413
413
$ref : ' #/definitions/argument'
414
414
flags-property :
@@ -417,8 +417,8 @@ definitions:
417
417
Flags of the current script or sub-command
418
418
https://bashly.dannyb.co/configuration/command/#flags
419
419
type : array
420
- uniqueItems : true
421
420
minItems : 1
421
+ uniqueItems : true
422
422
items :
423
423
$ref : ' #/definitions/flag'
424
424
commands-property :
@@ -427,6 +427,7 @@ definitions:
427
427
Subcommands of the current script or sub-command
428
428
https://bashly.dannyb.co/configuration/command/#commands
429
429
type : array
430
+ minItems : 1
430
431
uniqueItems : true
431
432
items :
432
433
$ref : ' #/definitions/command-property'
@@ -457,6 +458,7 @@ definitions:
457
458
Environment variables of the current application
458
459
https://bashly.dannyb.co/configuration/environment-variable/#environment-variable
459
460
type : array
461
+ minItems : 1
460
462
uniqueItems : true
461
463
items :
462
464
$ref : ' #/definitions/environment-variable'
@@ -466,6 +468,7 @@ definitions:
466
468
Bash variables for the current application
467
469
https://bashly.dannyb.co/configuration/command/#variables
468
470
type : array
471
+ minItems : 1
469
472
uniqueItems : true
470
473
items :
471
474
$ref : ' #/definitions/variable'
@@ -554,7 +557,7 @@ definitions:
554
557
Completions of the current script or sub-command
555
558
https://bashly.dannyb.co/configuration/command/#completions
556
559
type : array
557
- minLength : 1
560
+ minItems : 1
558
561
uniqueItems : true
559
562
items :
560
563
description : A completion of the current script or sub-command
@@ -617,7 +620,7 @@ definitions:
617
620
Dependencies of the current script or sub-command
618
621
https://bashly.dannyb.co/configuration/dependency/#dependency
619
622
type: array
620
- minLength : 1
623
+ minItems : 1
621
624
uniqueItems: true
622
625
items:
623
626
description: |-
0 commit comments