{
	"type": "Recipe",
	"label": "Recipe",
	"description": "A cooking or baking recipe with ingredients and steps.",
	"icon": "🍳",
	"template": {
		"@context": "https://schema.org",
		"@type": "Recipe",
		"name": "{{name}}",
		"description": "{{description}}",
		"image": "{{image_url}}",
		"author": { "@type": "Person", "name": "{{author_name}}" },
		"prepTime": "{{prep_time}}",
		"cookTime": "{{cook_time}}",
		"recipeYield": "{{yield}}",
		"recipeIngredient": [ "{{ingredient_1}}", "{{ingredient_2}}", "{{ingredient_3}}" ]
	},
	"placeholders": {
		"name": { "label": "Recipe name", "source": "post_title" },
		"description": { "label": "Description", "source": "post_excerpt" },
		"image_url": { "label": "Image URL", "source": "featured_image" },
		"author_name": { "label": "Author", "source": "post_author" },
		"prep_time": { "label": "Prep time (e.g. PT15M)", "source": "", "default": "PT15M" },
		"cook_time": { "label": "Cook time (e.g. PT30M)", "source": "", "default": "PT30M" },
		"yield": { "label": "Yields (e.g. 4 servings)", "source": "", "default": "4 servings" },
		"ingredient_1": { "label": "Ingredient 1", "source": "" },
		"ingredient_2": { "label": "Ingredient 2", "source": "" },
		"ingredient_3": { "label": "Ingredient 3", "source": "" }
	}
}
