I tried to create a schema for geojson but have had some problems with syntax for coordinates.
Here\'s my current code:
var DataSchema = new Schema({
try this:
var DataSchema = new Schema({ properties: { title: { type: String, required: true }, description: { type: String, required: true }, date: { type:Date, default:Date.now } }, geometry: { coordinates: {type: Array, required: true} } });