debian-mirror-gitlab/spec/fixtures/api/schemas/public_api/v4/label_basic.json
2020-03-13 15:44:24 +05:30

27 lines
549 B
JSON

{
"type": "object",
"required": [
"id",
"name",
"color",
"description",
"description_html",
"text_color"
],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}$"
},
"description": { "type": ["string", "null"] },
"description_html": { "type": ["string", "null"] },
"text_color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}$"
}
},
"additionalProperties": false
}