How can I display prices with taxes in Google rich snippets?

Google rich snippets is showing our prices WITHOUT taxes. How can I change that?

In shopify we want to show our prices including taxes. Also google should show the prices WITH taxes

Hi! In Shopify taxes are calculated on the checkout page. But if your taxes are fixed, you can add it in schema like this: {assign price_with_tax = product.price| plus: 100} 100 - its your taxes. And then place new price in schema by {{ price_with_tax | money }}
Documentation:
https://shopify.dev/api/liquid/filters/money-filters
https://shopify.dev/api/liquid/filters/math-filters