Oczywiście, że to możliwe... - sugerowanie użycia express jako szkielet serwera:
import mongoose from 'mongoose';
import { Router } from 'express';
const router = Router();
router.post('/newModel/', createNewModel);
function createNewModel(req, res, next) {
const Schema = mongoose.Schema;
// while req.body.model contains your model definition
mongoose.model(req.body.modelName, new Schema(req.body.model));
res.send('Created new model.');
}
...ale bądź ostrożny! Otwieranie użytkownikom możliwości tak łatwej modyfikacji bazy danych zwykle nie jest dobrym pomysłem.
Aktualizacja: Format jest dokładnie taki sam, jak ten, który chcesz mieć w nawiasie:
{
"title": { "type": "String", "required": "true" },
"content": { "type": "String", "required": "true" },
"slug": { "type": "String", "required": "true" }
}