Fix JSON schema to issues in issue board lists

parent d6a14e99
...@@ -10,23 +10,31 @@ ...@@ -10,23 +10,31 @@
"title": { "type": "string" }, "title": { "type": "string" },
"confidential": { "type": "boolean" }, "confidential": { "type": "boolean" },
"labels": { "labels": {
"type": ["array"], "type": "array",
"required": [ "items": {
"id", "type": "object",
"color", "required": [
"description", "id",
"title", "color",
"priority" "description",
], "title",
"properties": { "priority"
"id": { "type": "integer" }, ],
"color": { "properties": {
"type": "string", "id": { "type": "integer" },
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$" "color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
},
"description": { "type": ["string", "null"] },
"text_color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{3}{1,2}+$"
},
"title": { "type": "string" },
"priority": { "type": ["integer", "null"] }
}, },
"description": { "type": ["string", "null"] }, "additionalProperties": false
"title": { "type": "string" },
"priority": { "type": ["integer", "null"] }
} }
}, },
"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