{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/GitDiffCommandResult",
  "definitions": {
    "GitDiffCommandResult": {
      "type": "object",
      "properties": {
        "manifest": {
          "type": "object",
          "properties": {
            "path": {
              "type": "string"
            },
            "name": {
              "type": "string"
            }
          },
          "required": ["path", "name"],
          "additionalProperties": false
        },
        "destructiveChanges": {
          "type": "object",
          "properties": {
            "path": {
              "type": "string"
            },
            "name": {
              "type": "string"
            }
          },
          "required": ["path", "name"],
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    }
  }
}
