gen-json-schemas
Version:
A Javascript package to generate JSON schemas dynamically
19 lines • 393 B
text/typescript
const Recipe = {
"@context": "https://schema.org/",
"@type": "Recipe",
"name": "",
"image": "",
"description": "",
"keywords": "",
"author": {
"@type": "Person",
"name": ""
},
"prepTime": "",
"cookTime": "",
"totalTime": "",
"nutrition": {
"@type": "NutritionInformation",
"calories": ""
}
}