30 lines
595 B
JavaScript
30 lines
595 B
JavaScript
export default {
|
|
properties: {
|
|
type: 'object',
|
|
additionalProperties: false,
|
|
patternProperties: {
|
|
'^[a-zA-Z-_]+$': {
|
|
type: 'object',
|
|
properties: {
|
|
title: {
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
required: true,
|
|
},
|
|
guides: {
|
|
type: 'array',
|
|
items: { type: 'string' },
|
|
required: true,
|
|
},
|
|
featured_track: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|