{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsAngularAppShell",
  "title": "Angular AppShell Options Schema",
  "type": "object",
  "properties": {
    "clientProject": {
      "type": "string",
      "description": "Name of related client app."
    },
    "universalProject": {
      "type": "string",
      "description": "Name of related universal app."
    },
    "route": {
      "type": "string",
      "description": "Route path used to produce the app shell.",
      "default": "shell"
    },
    "name": {
      "type": "string",
      "format": "html-selector",
      "description": "Name of the universal app"
    },
    "appId": {
      "type": "string",
      "format": "html-selector",
      "description": "The appId to use withServerTransition.",
      "default": "serverApp"
    },
    "outDir": {
      "type": "string",
      "format": "path",
      "description": "The output directory for build results.",
      "default": "dist-server"
    },
    "root": {
      "type": "string",
      "format": "path",
      "description": "The root directory of the app.",
      "default": "src"
    },
    "index": {
      "type": "string",
      "format": "path",
      "description": "Name of the index file",
      "default": "index.html"
    },
    "main": {
      "type": "string",
      "format": "path",
      "description": "The name of the main entry-point file.",
      "default": "main.server.ts"
    },
    "test": {
      "type": "string",
      "format": "path",
      "description": "The name of the test entry-point file."
    },
    "tsconfigFileName": {
      "type": "string",
      "format": "path",
      "default": "tsconfig.server",
      "description": "The name of the TypeScript configuration file."
    },
    "testTsconfigFileName": {
      "type": "string",
      "format": "path",
      "description": "The name of the TypeScript configuration file for tests.",
      "default": "tsconfig.spec"
    },
    "appDir": {
      "type": "string",
      "format": "path",
      "description": "The name of the application directory.",
      "default": "app"
    },
    "rootModuleFileName": {
      "type": "string",
      "format": "path",
      "description": "The name of the root module file",
      "default": "app.server.module.ts"
    },
    "rootModuleClassName": {
      "type": "string",
      "format": "html-selector",
      "description": "The name of the root module class.",
      "default": "AppServerModule"
    },
    "sourceDir": {
      "type": "string",
      "format": "path",
      "description": "The path of the source directory.",
      "default": "src",
      "alias": "D"
    }
  },
  "required": [
    "clientProject",
    "universalProject"
  ]
}
