You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/openapi.yaml
+18-7Lines changed: 18 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -206,10 +206,6 @@ components:
206
206
is_required:
207
207
type: boolean
208
208
default: false
209
-
is_repeated:
210
-
type: boolean
211
-
description: Whether the input can be repeated multiple times in the command line.
212
-
default: false
213
209
format:
214
210
type: string
215
211
description: Input format. Includes a variety of standardized formats, including `filepath`, which should be interpreted as a file on the user's filesystem.
@@ -239,11 +235,20 @@ components:
239
235
- type: object
240
236
required:
241
237
- type
238
+
- name
242
239
properties:
243
240
type:
244
241
type: string
245
242
enum: [positional]
246
243
example: "positional"
244
+
name:
245
+
type: string
246
+
description: Name of the positional argument. This is not part of the command line, but can be used for reference by client configuration.
247
+
example: file_path
248
+
is_repeated:
249
+
type: boolean
250
+
description: Whether the input can be repeated multiple times in the command line.
251
+
default: false
247
252
248
253
NamedInput:
249
254
description: A command-line `--flag={value}`, named environment variable or header.
@@ -261,6 +266,10 @@ components:
261
266
name:
262
267
type: string
263
268
example: "--port"
269
+
is_repeated:
270
+
type: boolean
271
+
description: Whether the argument or header can be repeated multiple times. Has no effect for environment variables.
272
+
default: false
264
273
265
274
TemplateInput:
266
275
- type: object
@@ -281,14 +290,16 @@ components:
281
290
type: string
282
291
is_required:
283
292
type: boolean
293
+
default: false
284
294
is_repeated:
285
295
type: boolean
286
-
description: Whether the input can be repeated multiple times in the command line.
296
+
description: Whether the argument or header can be repeated multiple times. Has no effect for environment variables.
297
+
default: false
287
298
template:
288
299
type: string
289
-
description: The template string that will be used to generate the value. Values wrapped in `{curly_braces}` will be replaced with the corresponding properties. Input which is not `is_required` is replaced with its `default` value, or otherwise an empty string.
300
+
description: The template string that will be used to generate the value. Values wrapped in `{curly_braces}` will be replaced with the corresponding variables. Input which is not `is_required` is replaced with its `default` value, or otherwise an empty string.
0 commit comments