gitlab-org--gitlab-foss/spec/fixtures/api/schemas/jira_connect/repository.json

35 lines
762 B
JSON

{
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"description": { "type": ["string", "null"] },
"url": { "type": "uri" },
"avatar": { "type": "uri" },
"commits": {
"type": "array",
"items": {
"$ref": "./commit.json"
}
},
"branches": {
"type": "array",
"items": {
"$ref": "./branch.json"
}
},
"pullRequests": {
"type": "array",
"items": {
"$ref": "./pull_request.json"
}
},
"updateSequenceId": { "type": "integer" }
},
"required": [
"id", "name", "description", "url", "avatar",
"commits", "branches", "pullRequests", "updateSequenceId"
],
"additionalProperties": false
}