Forgejo · Schema

CommitStats

CommitStats is statistics for a RepoCommit

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
additions integer
deletions integer
total integer
View JSON Schema on GitHub

JSON Schema

commitstats.json Raw ↑
{
  "$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"
}