debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/tag.json
2019-12-04 20:38:33 +05:30

24 lines
484 B
JSON

{
"type": "object",
"required" : [
"name",
"message",
"commit",
"release"
],
"properties" : {
"name": { "type": "string" },
"message": { "type": ["string", "null"] },
"commit": { "$ref": "commit/basic.json" },
"target": { "type": "string" },
"release": {
"oneOf": [
{ "type": "null" },
{ "$ref": "release/tag_release.json" }
]
},
"protected": { "type": "boolean" }
},
"additionalProperties": false
}