🗃️ Adds pages to schema

This commit is contained in:
Alicia Sykes 2022-04-30 23:25:49 +01:00
parent a9496391cd
commit a7a7032b1d
1 changed files with 23 additions and 0 deletions

View File

@ -5,6 +5,29 @@
],
"additionalProperties": false,
"properties": {
"pages": {
"title": "Page List",
"type": "array",
"description": "List of additional config files to load as extra pages",
"items": {
"title": "Pages",
"type": "object",
"required": ["name", "path"],
"additionalProperties": false,
"properties": {
"name": {
"title": "Name",
"type": "string",
"description": "Unique page identifier"
},
"path": {
"title": "Path",
"type": "string",
"description": "The file name, or path. If in public directory, use just `file-name.yml`"
}
}
}
},
"pageInfo": {
"type": "object",
"properties": {