BigOven · Schema

BigOven.Model.RecipeInfoTiny

RecipesMeal PlanningGrocery ListsNutritionFoodCooking

Properties

Name Type Description
ImageURL string
QualityScore integer
RecipeID integer
Servings number
Title string
View JSON Schema on GitHub

JSON Schema

bigoven.model.recipeinfotiny.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigOven.Model.RecipeInfoTiny",
  "properties": {
    "ImageURL": {
      "type": "string"
    },
    "QualityScore": {
      "format": "int32",
      "type": "integer"
    },
    "RecipeID": {
      "format": "int32",
      "type": "integer"
    },
    "Servings": {
      "format": "double",
      "type": "number"
    },
    "Title": {
      "type": "string"
    }
  },
  "type": "object"
}