{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/diffstat", "title": "Diff Stat", "type": "object", "description": "A diffstat object that includes a summary of changes made to a file between two commits.", "properties": { "type": { "type": "string", "example": "example_value" }, "status": { "type": "string", "enum": [ "added", "removed", "modified", "renamed" ], "example": "added" }, "lines_added": { "type": "integer", "example": 10 }, "lines_removed": { "type": "integer", "example": 10 }, "old": { "$ref": "#/components/schemas/commit_file" }, "new": { "$ref": "#/components/schemas/commit_file" } }, "required": [ "type" ], "additionalProperties": true }