{
  "$schema": "http://json-schema.org/schema",
  "version": 2,
  "title": "RunGenerator executor",
  "description": "",
  "type": "object",
  "properties": {
    "generator": {
      "type": "string",
      "description": "Name of the generate to execute"
    },
    "options": {
      "type": "object",
      "description": "Options to pass to the generator"
    },
    "withoutProjectArgument": {
      "type": "boolean",
      "description": "If true, the project argument will not be passed to the generator"
    },
    "dryRun": {
      "alias": "dry-run",
      "type": "boolean",
      "description": "If true, the generator will be executed in dry run mode"
    },
    "verbose": {
      "type": "boolean",
      "description": "If true, the generator will be executed in verbose mode"
    }
  },
  "required": []
}
