11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
const Ingredient = {
|
|
"id": "/IngredientValidation",
|
|
"type": Object,
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"description": { "type": "string" }
|
|
},
|
|
"required": ["name", "description"]
|
|
}
|
|
|
|
module.exports = Ingredient |