BigOven · Schema

BigOven.Model.RecipeCategory

RecipesMeal PlanningGrocery ListsNutritionFoodCooking

Properties

Name Type Description
Category string
DefaultActiveMinutes integer
DefaultTotalMinutes integer
ID integer
ParentID integer
PrimaryImage string
ShortDescription string
View JSON Schema on GitHub

JSON Schema

bigoven.model.recipecategory.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigOven.Model.RecipeCategory",
  "properties": {
    "Category": {
      "type": "string"
    },
    "DefaultActiveMinutes": {
      "format": "int32",
      "type": "integer"
    },
    "DefaultTotalMinutes": {
      "format": "int32",
      "type": "integer"
    },
    "ID": {
      "format": "int32",
      "type": "integer"
    },
    "ParentID": {
      "format": "int32",
      "type": "integer"
    },
    "PrimaryImage": {
      "type": "string"
    },
    "ShortDescription": {
      "type": "string"
    }
  },
  "type": "object"
}