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

17 lines
230 B
JSON
Raw Normal View History

2017-08-17 22:00:37 +05:30
{
"type": "object",
2023-03-04 22:38:38 +05:30
"required": [
2017-08-17 22:00:37 +05:30
"name",
"url"
],
2023-03-04 22:38:38 +05:30
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
2017-08-17 22:00:37 +05:30
},
"additionalProperties": false
2023-03-04 22:38:38 +05:30
}