{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/git/status-porcelain.json",
  "title": "git/status-porcelain",
  "description": "git status --porcelain (short format, version 1)",
  "x-jsonize": {
    "definition": "git/status-porcelain",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "index": {
        "type": [
          "string",
          "null"
        ]
      },
      "worktree": {
        "type": [
          "string",
          "null"
        ]
      },
      "path": {
        "type": "string"
      },
      "renamed_to": {
        "type": "string"
      }
    },
    "required": [
      "index",
      "worktree",
      "path"
    ]
  }
}
