{
  "version": 2,
  "outputCapture": "pipe",
  "$schema": "http://json-schema.org/schema",
  "title": "Run Task executor",
  "description": "",
  "type": "object",
  "properties": {
    "task": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": { "type": "string" }
        }
      ],
      "description": "Task to be executed"
    },
    "projectPath": {
      "type": "string"
    }
  },
  "required": ["task"]
}
