var PostSchema = new Schema({
title: String,
image: {
type: Schema.Types.ObjectId,
ref: 'Image'
},
content: String
});
var ImageSchema = new Schema({
url: String
});
{
"post":{
_id: // id,
title: //заголовок,
image: null,
content://контент
}
}