15 lines
341 B
JavaScript
15 lines
341 B
JavaScript
|
module.exports = exports = {
|
||
|
subtree: {
|
||
|
fields: {
|
||
|
PageId: {
|
||
|
required: true,
|
||
|
coerce: String,
|
||
|
},
|
||
|
format: {
|
||
|
required: true,
|
||
|
coerce: String,
|
||
|
in_set: ['html', 'pdf', 'markdown', 'json'],
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|