const Template = require('../__template') const coll = new Template('media') coll.customId = true coll.schema = { type: 'object', properties: { name: { type: 'string' }, originalName: { type: 'string' }, mimetype: { type: 'string' }, extension: { type: 'string' }, path: { type: 'string' }, fileKey: { type: 'object' }, size: { type: 'number' } } } module.exports = function (pCtx) { return coll }