{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsABPModuleTemplateCreator",
  "title": "ABP Module Template Generator API Schema",
  "type": "object",
  "properties": {
    "packageName": {
      "description": "The name of the package will create",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "Please enter the package name will create"
    },
    "isSecondaryEntrypoint": {
      "description": "Is secondary entrypoint",
      "type": "boolean",
      "$default": {
        "$source": "argv",
        "index": 1
      },
      "x-prompt": "Is secondary entrypoint?"
    },
    "isModuleTemplate": {
      "description": "Is module template",
      "type": "boolean",
      "$default": {
        "$source": "argv",
        "index": 2
      },
      "x-prompt": "Is module template?"
    },
    "override": {
      "description": "Override existing files",
      "type": "boolean",
      "$default": {
        "$source": "argv",
        "index": 3
      },
      "x-prompt": "Override existing files?"
    }
  },
  "required": []
}
