const mongoose = require('mongoose'); const Schema = mongoose.Schema; const contentCreator = new Schema({ name: String, type: "content_creator", annonations: Object }) module.exports = { contentCreator }