{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"args": {
"description": "Arguments for the pub subcommand",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Pub subcommand to execute",
"enum": [
"get",
"upgrade",
"outdated",
"add",
"remove",
"publish",
"deps",
"downgrade",
"cache",
"run",
"global"
],
"type": "string"
},
"workingDir": {
"description": "Working directory for the command",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}