23 lines
434 B
JSON
23 lines
434 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"description": "Pinned navigation items per panel",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"group": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"uniqueItems": true
|
||
|
},
|
||
|
"project": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"uniqueItems": true
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|