Share feedback
Answers are generated based on the documentation.

Experimental

Schema

StartupArgv

Type: object

StartupArgv preserves literal arguments, including empty positional arguments. startup argv requires a nonempty executable
argv · required

Type: array

argv is executed without shell expansion. It carries at least one element, and that first element is the executable and must not be empty.
Array item

Type: string

All schema constraints and annotations
{
  "type": "string"
}
All schema constraints and annotations
{
  "description": "argv is executed without shell expansion. It carries at least one element,\nand that first element is the executable and must not be empty.",
  "items": {
    "type": "string"
  },
  "minItems": 1,
  "type": "array"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "StartupArgv preserves literal arguments, including empty positional arguments.\nstartup argv requires a nonempty executable",
  "properties": {
    "argv": {
      "description": "argv is executed without shell expansion. It carries at least one element,\nand that first element is the executable and must not be empty.",
      "items": {
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "argv"
  ],
  "title": "StartupArgv",
  "type": "object"
}