{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/git/worktree-list.json",
  "title": "git/worktree-list",
  "description": "git worktree list, the working trees of a repository",
  "x-jsonize": {
    "definition": "git/worktree-list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string"
      },
      "commit": {
        "type": "string"
      },
      "branch": {
        "type": "string"
      },
      "state": {
        "type": "string"
      }
    },
    "required": [
      "path"
    ]
  }
}
