17 lines
305 B
JSON
17 lines
305 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"tasks": {
|
||
|
|
"type": "array",
|
||
|
|
"items": {
|
||
|
|
"type": "string",
|
||
|
|
"minLength": 1
|
||
|
|
},
|
||
|
|
"uniqueItems": true
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["tasks"],
|
||
|
|
"additionalProperties": false
|
||
|
|
}
|