You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
864 B
JSON
36 lines
864 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"title": "Notebook Shell",
|
|
"description": "Notebook Shell layout settings.",
|
|
"properties": {
|
|
"layout": {
|
|
"$ref": "#/definitions/layout",
|
|
"type": "object",
|
|
"title": "Customize shell widget positioning",
|
|
"description": "Overrides default widget position in the application layout",
|
|
"default": {
|
|
"Markdown Preview": { "area": "right" },
|
|
"Plugins": { "area": "left" }
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"definitions": {
|
|
"layout": {
|
|
"type": "object",
|
|
"properties": {
|
|
"[\\w-]+": {
|
|
"type": "object",
|
|
"properties": {
|
|
"area": {
|
|
"enum": ["left", "right"]
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|