{
  "$schema": "http://json-schema.org/schema",
  "$id": "Preset",
  "title": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use?"
    },
    "baseUrl": {
      "type": "string",
      "description": "The base url of the application to be tested.",
      "default": "http://localhost:4200",
      "x-prompt": "What is the base URL to test?"
    },
    "linter": {
      "description": "The tool to use for running lint checks.",
      "type": "string",
      "enum": ["eslint", "none"],
      "default": "eslint"
    }
  },
  "required": ["name", "baseUrl"]
}
