Welcome to mirror list, hosted at ThFree Co, Russian Federation.

contributor.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e88470a2363caa6c7e1cc399ec676174d504b182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "type": "object",
  "required" : [
    "name",
    "email",
    "commits",
    "additions",
    "deletions"
  ],
  "properties" : {
    "name": { "type": "string" },
    "email": { "type": "string" },
    "commits": { "type": "integer" },
    "additions": { "type": "integer" },
    "deletions": { "type": "integer" }
  },
  "additionalProperties": false
}