26 lines
548 B
JSON
26 lines
548 B
JSON
{
|
|
"@context": "https://schema.org",
|
|
"@schema": "Recipe",
|
|
"@type": "Recipe",
|
|
"name": "Simple Salad",
|
|
"image": "https://example.com/salad.jpg",
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": "Alex Chef"
|
|
},
|
|
"prepTime": "PT10M",
|
|
"cookTime": "PT0M",
|
|
"recipeYield": "2 servings",
|
|
"recipeIngredient": [
|
|
"100 g lettuce",
|
|
"5 cherry tomatoes",
|
|
"1 tbsp olive oil",
|
|
"Pinch of salt"
|
|
],
|
|
"recipeInstructions": [
|
|
"Wash and dry the lettuce.",
|
|
"Halve the cherry tomatoes.",
|
|
"Toss with olive oil and salt."
|
|
]
|
|
}
|