{
  "$schema": "http://json-schema.org/schema",
  "$id": "InitWithMigrations",
  "title": "",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the library project to initialize with migrations support.",
      "examples": ["my-lib"]
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The list of library projects to initialize with migrations support.",
      "examples": [["my-lib", "another-lib"]]
    },
    "skipFormat": {
      "type": "boolean",
      "default": false,
      "description": "Whether to skip formatting files with Prettier after initialization."
    },
    "overwrite": {
      "type": "boolean",
      "default": false,
      "description": "Whether to overwrite existing files during initialization."
    },
    "skipProjects": {
      "type": "boolean",
      "default": false,
      "description": "Whether to skip executing project-specific initialization logic."
    }
  },
  "required": []
}
