debian-mirror-gitlab/spec/fixtures/api/schemas/jira_connect/repository.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
959 B
JSON
Raw Normal View History

2020-11-24 15:15:51 +05:30
{
"type": "object",
"properties": {
2023-03-04 22:38:38 +05:30
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"url": {
"type": "string",
"format": "uri"
},
"avatar": {
"type": [
"string",
"null"
],
"format": "uri"
},
2020-11-24 15:15:51 +05:30
"commits": {
"type": "array",
"items": {
"$ref": "./commit.json"
}
},
"branches": {
"type": "array",
"items": {
"$ref": "./branch.json"
}
},
"pullRequests": {
"type": "array",
"items": {
"$ref": "./pull_request.json"
}
},
2023-03-04 22:38:38 +05:30
"updateSequenceId": {
"type": "integer"
}
2020-11-24 15:15:51 +05:30
},
"required": [
2023-03-04 22:38:38 +05:30
"id",
"name",
"description",
"url",
"avatar",
"commits",
"branches",
"pullRequests",
"updateSequenceId"
2020-11-24 15:15:51 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}