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

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

27 lines
394 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
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"username": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"avatar": {
"type": "string",
"format": "uri"
}
2020-11-24 15:15:51 +05:30
},
2023-03-04 22:38:38 +05:30
"required": [
"name",
"email"
],
2020-11-24 15:15:51 +05:30
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}