debian-mirror-gitlab/spec/fixtures/api/schemas/jira_connect/commit.json
2023-03-05 14:24:40 +05:30

61 lines
No EOL
967 B
JSON

{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"issueKeys": {
"type": "array"
},
"hash": {
"type": "string"
},
"displayId": {
"type": "string"
},
"message": {
"type": "string"
},
"flags": {
"type": "array"
},
"author": {
"$ref": "./author.json"
},
"fileCount": {
"type": "integer"
},
"files": {
"type": "array",
"items": {
"$ref": "./file.json"
}
},
"authorTimestamp": {
"type": "string",
"format": "date-time"
},
"url": {
"type": "string",
"format": "uri"
},
"updateSequenceId": {
"type": "integer"
}
},
"required": [
"id",
"issueKeys",
"hash",
"displayId",
"message",
"flags",
"author",
"fileCount",
"files",
"authorTimestamp",
"url",
"updateSequenceId"
],
"additionalProperties": false
}