{
  "$schema": "http://json-schema.org/schema",
  "$id": "InitPublishable",
  "title": "",
  "type": "object",
  "properties": {
    "project": {
      "type": "string"
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "skipFormat": {
      "type": "boolean",
      "default": false
    },
    "overwrite": {
      "type": "boolean",
      "default": false,
      "description": "Whether to overwrite existing files"
    },
    "skipProjects": {
      "type": "boolean",
      "default": false,
      "description": "Whether to skip executing project specific initialization"
    },
    "targets": {
      "type": "object",
      "properties": {
        "fixDependencies": {
          "type": "boolean",
          "default": true,
          "description": "If set to false the target fix-dependencies will not be added to the project"
        }
      }
    },
    "withInitGenerator": {
      "type": "boolean",
      "description": "Generate a init generator for the library",
      "default": false
    }
  },
  "required": []
}
