{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CommitStats", "description": "CommitStats is statistics for a RepoCommit", "type": "object", "properties": { "additions": { "type": "integer", "format": "int64", "x-go-name": "Additions" }, "deletions": { "type": "integer", "format": "int64", "x-go-name": "Deletions" }, "total": { "type": "integer", "format": "int64", "x-go-name": "Total" } }, "x-go-package": "forgejo.org/modules/structs" }