26 lines
551 B
JSON
26 lines
551 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"id",
|
||
|
"color",
|
||
|
"description",
|
||
|
"title",
|
||
|
"priority"
|
||
|
],
|
||
|
"properties": {
|
||
|
"id": { "type": "integer" },
|
||
|
"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}$"
|
||
|
},
|
||
|
"type": { "type": "string" },
|
||
|
"title": { "type": "string" },
|
||
|
"priority": { "type": ["integer", "null"] }
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|