UNPKG

usda-food-data-api-schema

Version:
13 lines 417 B
import mongoose from "mongoose"; const { Schema } = mongoose; export const FoodNutrientDeviationSchema = new Schema({ id: Number, code: String, description: String, foodNutrientSource: { type: Schema.Types.ObjectId, ref: "FoodNutrientSource" } }); mongoose.model("FoodNutrientDerivation", FoodNutrientDeviationSchema); //# sourceMappingURL=FoodNutrientDerivation.js.map