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

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

29 lines
440 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
"path": {
"type": "string"
},
"changeType": {
"type": "string"
},
"linesAdded": {
"type": "integer"
},
"linesRemoved": {
"type": "integer"
},
"url": {
"type": "string",
"format": "uri"
}
2020-11-24 15:15:51 +05:30
},
"required": [
2023-03-04 22:38:38 +05:30
"path",
"changeType",
"linesAdded",
"linesRemoved",
"url"
2020-11-24 15:15:51 +05:30
],
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}