summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/commit_stats.json
blob: 779384c62e607443188131e8e0e95abb003fbf44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "type": "object",
  "required" : [
    "additions",
    "deletions",
    "total"
  ],
  "properties" : {
    "additions": { "type": "integer" },
    "deletions": { "type": "integer" },
    "total": { "type": "integer" }
  },
  "additionalProperties": false
}