Człowieku, miałem podobny problem z utworzeniem takiego schematu:
QuestionnaireSchema = mongoose.Schema({
formId: Number,
name: String,
questions: [
{
type: String,
title: String,
alternatives:[{
label: String,
value: "Mixed"
}]
}
]
});
Moim błędem było to, że używam "typu" jako nazwy pola i jest to zastrzeżone słowo w manguście.
Po prostu zmieniam:
type: String,
do
formType: String,
i to działa.
zobacz:https://github.com/Automattic/mongoose/issues/1760