{
	"type": "WooCommerce-Product",
	"label": "WooCommerce Product",
	"description": "A product in your WooCommerce store. Fills in basic name, SKU, price, and image. For full dynamic extraction (variations, reviews, multiple images), use Quick Generate with a Pro license.",
	"icon": "🛒",
	"template": {
		"@context": "https://schema.org",
		"@type": "Product",
		"name": "{{name}}",
		"description": "{{description}}",
		"image": "{{image_url}}",
		"sku": "{{sku}}",
		"brand": { "@type": "Brand", "name": "{{brand}}" },
		"offers": {
			"@type": "Offer",
			"price": "{{price}}",
			"priceCurrency": "{{currency}}",
			"availability": "https://schema.org/InStock",
			"url": "{{url}}"
		}
	},
	"placeholders": {
		"name": { "label": "Product name", "source": "post_title" },
		"description": { "label": "Short description", "source": "post_excerpt" },
		"image_url": { "label": "Image URL", "source": "featured_image" },
		"sku": { "label": "SKU", "source": "wc_sku" },
		"brand": { "label": "Brand", "source": "site_name" },
		"price": { "label": "Price", "source": "wc_price" },
		"currency": { "label": "Currency (ISO 4217)", "source": "wc_currency", "default": "USD" },
		"url": { "label": "Product URL", "source": "post_url" }
	}
}
