{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsPullRequestTemplate",
  "title": "PR Template Options Schema",
  "type": "object",
  "properties": {
    "directory": {
      "type": "string",
      "description": "quickstart destination directory",
      "default": ".",
      "x-prompt": "Where do you want to create the project?"
    },
    "gitProvider": {
      "type": "string",
      "description": "git provider where the repo is hosted",
      "x-prompt": {
        "message": "Where is the Git repository hosted",
        "type": "list",
        "items": [
          {
            "value": "github",
            "label": "GitHub"
          },
          {
            "value": "azuredevops",
            "label": "Azure DevOps"
          }
        ]
      }
    }
  },
  "required": ["directory","gitProvider"]
}
