import mongoose from 'mongoose'; const RecipeSchema = new mongoose.Schema( { short_name: {type: String, required: true}, name : {type: String, required: true,}, category : {type: String, required: true,}, icon: {type: String, required: true}, dateCreated: {type: Date, default: Date.now}, dateModified: {type: Date, default: Date.now}, images: [ { mediapath: {type: String, required: true}, alt: String, caption: String, }], description: {type: String, required: true}, tags : [String], season : [Number], baking: { temperature: String, length: String, mode: String, }, preparation : String, fermentation: {bulk: String, final: String, }, portions : String, total_time : String, ingredients : [ { name: {type: String, default: ""}, list: [{name: {type: String, default: ""}, unit: String, amount: String, }] }], instructions : [{name: {type: String, default: ""}, steps: [String]}], addendum : String, }, ); export const Recipe = mongoose.model("Recipe", RecipeSchema);