debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/tag.json

24 lines
484 B
JSON
Raw Normal View History

2017-09-10 17:25:29 +05:30
{
"type": "object",
"required" : [
"name",
"message",
"commit",
"release"
],
"properties" : {
"name": { "type": "string" },
"message": { "type": ["string", "null"] },
"commit": { "$ref": "commit/basic.json" },
2018-10-15 14:42:47 +05:30
"target": { "type": "string" },
2017-09-10 17:25:29 +05:30
"release": {
"oneOf": [
{ "type": "null" },
2019-07-31 22:56:46 +05:30
{ "$ref": "release/tag_release.json" }
2017-09-10 17:25:29 +05:30
]
2019-12-04 20:38:33 +05:30
},
"protected": { "type": "boolean" }
2017-09-10 17:25:29 +05:30
},
"additionalProperties": false
}