BigOven · Schema

BigOven.Model.API.IngredientInfo

RecipesMeal PlanningGrocery ListsNutritionFoodCooking

Properties

Name Type Description
Department string
MasterIngredientID integer
Name string
UsuallyOnHand boolean
View JSON Schema on GitHub

JSON Schema

bigoven.model.api.ingredientinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigOven.Model.API.IngredientInfo",
  "properties": {
    "Department": {
      "type": "string"
    },
    "MasterIngredientID": {
      "format": "int32",
      "type": "integer"
    },
    "Name": {
      "type": "string"
    },
    "UsuallyOnHand": {
      "type": "boolean"
    }
  },
  "type": "object"
}