gitlab-org--gitlab-foss/spec/fixtures/api/schemas/contributor.json

19 lines
361 B
JSON

{
"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
}