Fix JSON schema to issues in issue board lists

parent d6a14e99
...@@ -10,7 +10,9 @@ ...@@ -10,7 +10,9 @@
"title": { "type": "string" }, "title": { "type": "string" },
"confidential": { "type": "boolean" }, "confidential": { "type": "boolean" },
"labels": { "labels": {
"type": ["array"], "type": "array",
"items": {
"type": "object",
"required": [ "required": [
"id", "id",
"color", "color",
...@@ -25,8 +27,14 @@ ...@@ -25,8 +27,14 @@
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$" "pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
}, },
"description": { "type": ["string", "null"] }, "description": { "type": ["string", "null"] },
"text_color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
},
"title": { "type": "string" }, "title": { "type": "string" },
"priority": { "type": ["integer", "null"] } "priority": { "type": ["integer", "null"] }
},
"additionalProperties": false
} }
}, },
"assignee": { "assignee": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment