yajsv
Version:
yet another json schema validator
24 lines (20 loc) • 461 B
JavaScript
;
module.exports = {
metaSchema: {
description: 'OtherDef definition schema',
type: 'definition',
jsonSchema: 'v4',
name: 'otherDef',
version: 1
},
schema: {
type: 'object',
required: ['someOtherProp'],
properties: {
someOtherProp: {
type: 'string'
}
},
additionalProperties: false
}
};