BigOven · Schema

BigOven.Model.API.Grocery.GroceryList

RecipesMeal PlanningGrocery ListsNutritionFoodCooking

Properties

Name Type Description
Items array
LastModified string
Recipes array
VersionGuid string
View JSON Schema on GitHub

JSON Schema

bigoven.model.api.grocery.grocerylist.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigOven.Model.API.Grocery.GroceryList",
  "properties": {
    "Items": {
      "items": {
        "$ref": "#/components/schemas/BigOven.Model.API.Grocery.Item"
      },
      "type": "array"
    },
    "LastModified": {
      "format": "date-time",
      "type": "string"
    },
    "Recipes": {
      "items": {
        "$ref": "#/components/schemas/BigOven.Model.API.RecipeInfo"
      },
      "type": "array"
    },
    "VersionGuid": {
      "type": "string"
    }
  },
  "type": "object"
}