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

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

61 lines
967 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"
},
"issueKeys": {
"type": "array"
},
"hash": {
"type": "string"
},
"displayId": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "array"
},
2020-11-24 15:15:51 +05:30
"author": {
"$ref": "./author.json"
},
2023-03-04 22:38:38 +05:30
"fileCount": {
"type": "integer"
},
2020-11-24 15:15:51 +05:30
"files": {
"type": "array",
"items": {
"$ref": "./file.json"
}
},
2023-03-04 22:38:38 +05:30
"authorTimestamp": {
"type": "string",
"format": "date-time"
},
"url": {
"type": "string",
"format": "uri"
},
"updateSequenceId": {
"type": "integer"
}
2020-11-24 15:15:51 +05:30
},
"required": [
2023-03-04 22:38:38 +05:30
"id",
"issueKeys",
"hash",
"displayId",
"message",
"flags",
"author",
"fileCount",
"files",
"authorTimestamp",
"url",
"updateSequenceId"
2020-11-24 15:15:51 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}