{
	"type": "Product",
	"label": "Product",
	"description": "A physical or digital product you sell.",
	"icon": "🛍",
	"template": {
		"@context": "https://schema.org",
		"@type": "Product",
		"name": "{{name}}",
		"description": "{{description}}",
		"image": "{{image_url}}",
		"brand": {
			"@type": "Brand",
			"name": "{{brand}}"
		},
		"offers": {
			"@type": "Offer",
			"price": "{{price}}",
			"priceCurrency": "{{currency}}",
			"availability": "https://schema.org/InStock"
		}
	},
	"placeholders": {
		"name": { "label": "Product name", "source": "post_title" },
		"description": { "label": "Description", "source": "post_excerpt" },
		"image_url": { "label": "Image URL", "source": "featured_image" },
		"brand": { "label": "Brand", "source": "site_name" },
		"price": { "label": "Price", "source": "" },
		"currency": { "label": "Currency (ISO 4217)", "source": "", "default": "USD" }
	}
}
