BigOven · Schema
BigOven.Model.API2.RecipeNote
RecipesMeal PlanningGrocery ListsNutritionFoodCooking
Properties
| Name | Type | Description |
|---|---|---|
| CreationDate | string | |
| Date | string | |
| DateDT | string | |
| GUID | string | |
| ID | integer | |
| Notes | string | |
| People | string | |
| RecipeID | integer | |
| UserID | integer | |
| Variations | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BigOven.Model.API2.RecipeNote",
"properties": {
"CreationDate": {
"format": "date-time",
"type": "string"
},
"Date": {
"type": "string"
},
"DateDT": {
"format": "date-time",
"type": "string"
},
"GUID": {
"type": "string"
},
"ID": {
"format": "int32",
"type": "integer"
},
"Notes": {
"type": "string"
},
"People": {
"type": "string"
},
"RecipeID": {
"format": "int32",
"type": "integer"
},
"UserID": {
"format": "int32",
"type": "integer"
},
"Variations": {
"type": "string"
}
},
"type": "object"
}