{
  "$schema": "http://json-schema.org/schema",
  "id": "@ng-blockly/custom",
  "title": "@ng-blockly/custom ng-add schematic",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "Name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "skipPackageJson": {
      "type": "boolean",
      "default": false,
      "description": "Do not add @ng-blockly/custom dependencies to package.json (e.g., --skipPackageJson)"
    },
    "dynamicAssets": {
      "type": "boolean",
      "default": true,
      "description": "Whether blockly assets should be add."
    },
    "template": {
      "type": "string",
      "default": "custom",
      "description": "Create an custom Blockly project with using preset template.",
      "x-prompt": {
        "message": "Choose template to create project:",
        "type": "list",
        "items": [
          "custom"
        ]
      }
    }
  },
  "required": []
}
