feat: nested collections (#680)

This commit is contained in:
Daniel Lautzenheiser
2023-04-04 15:12:32 -04:00
committed by GitHub
parent 22a1b8d9c0
commit d0ecae310c
54 changed files with 2671 additions and 295 deletions

View File

@ -292,6 +292,14 @@ function getConfigSchema() {
properties: {
depth: { type: 'number', minimum: 1, maximum: 1000 },
summary: { type: 'string' },
path: {
type: 'object',
properties: {
label: { type: 'string' },
index_file: { type: 'string' },
},
required: ['index_file'],
},
},
required: ['depth'],
},