{
  "$schema": "http://json-schema.org/schema",
  "id": "Nx Cypress Project Schematics Schema",
  "title": "Create Cypress Configuration for the workspace",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the frontend project to test.",
      "$default": {
        "$source": "projectName"
      }
    },
    "name": {
      "type": "string",
      "description": "Name of the E2E Project",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the e2e project?"
    },
    "directory": {
      "type": "string",
      "description": "A directory where the app is placed",
      "x-prompt": "In which directory should the library be generated?"
    }
  },
  "required": ["name"]
}
