alnoda-workspaces/workspaces/notebook-old-workspace/nbviewer/nbviewer/frontpage.schema.json
2022-05-30 07:24:06 +00:00

34 lines
758 B
JSON

{"type": "object",
"properties": {
"title": {"type": "string"},
"subtitle": {"type": "string"},
"text": {"type": "string"},
"show_input": {"type": "boolean"},
"sections" : {
"type": "array",
"items": {
"type": "object",
"properties": {
"header": {"type": "string"},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {"type": "string"},
"target": {"type": "string"},
"img": {"type": "string"}
},
"required": ["text", "target", "img"]
}
}
},
"required": [
"header",
"links"
]
}
}
}
}