debian-mirror-gitlab/spec/fixtures/api/schemas/release.json

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

64 lines
1 KiB
JSON
Raw Normal View History

2019-02-15 15:39:39 +05:30
{
"type": "object",
2023-03-04 22:38:38 +05:30
"required": [
"tag_name",
"description"
],
2019-02-15 15:39:39 +05:30
"properties": {
2023-03-04 22:38:38 +05:30
"name": {
"type": "string"
},
"tag_name": {
"type": "string"
},
"ref": {
"type": "string"
},
"description": {
"type": "string"
},
"description_html": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
2019-02-15 15:39:39 +05:30
"commit": {
2023-03-04 22:38:38 +05:30
"oneOf": [
{
"type": "null"
},
{
"$ref": "public_api/v4/commit/basic.json"
}
]
2019-02-15 15:39:39 +05:30
},
"author": {
2023-03-04 22:38:38 +05:30
"oneOf": [
{
"type": "null"
},
{
"$ref": "public_api/v4/user/basic.json"
}
]
2019-02-15 15:39:39 +05:30
},
"assets": {
2023-03-04 22:38:38 +05:30
"count": {
"type": "integer"
},
"links": {
"$ref": "release/links.json"
},
2019-02-15 15:39:39 +05:30
"sources": {
"type": "array",
"items": {
"format": "zip",
"url": "string"
}
}
}
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}