Has anyone successfully setup Google Local Inventory?
c
Hi All, we have been trying to set this up for a client and believe we have followed all the Google documentation to the letter, however our local inventory feed does not seem to be matching to the client’s products that are already within Google Market place ( via product LD+JSON schema data ) I was hoping someone in the Umbraco community that has this correctly setup for a client site might be able to spend a few minutes on a zoom call or via a chat to compare our feed data to see you can help us spot the issue. Keeping my fingers crossed 🙂 Chris
m
Following @Chris Houston thread, here is a snippet of our current LD+JSON for an example product:
Copy code
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Product",
    "name": "Example Product",      
    "description": "Example description",          
    "image": "https://example.com/example-product.jpg",
    "productID": "example0291",
    "sku": "example0291",
    "offers":{
        "@type": "Offer",
        "priceCurrency": "GBP",
        "price": 4495.00,
        "priceValidUntil": "2024-10-30T11:06:06.4517058+00:00",                        
        "potentialAction": [{ "@type": "BuyAction" }],            
        "url": "https://example.com/example-product/",
        "sku": "example0291",
        "availability": "https://schema.org/InStock",
        "itemCondition": "https://schema.org/NewCondition",
        "hasMerchantReturnPolicy": {},
        "shippingDetails": {}
    },        
    "brand": {
        "@type": "Brand",
        "name": "Example Brand"
    },               
    "category": "Example category 1 / Example category 2",
    "model": "Example model",
    "color": "Blue",
    "material": "Platinum",
    "size": "",
    "gender": "female",
    "ageGroup": "adult",       
    "identifier": "example0291"
}
</script>
And the local inventory snippet for the product above:
Copy code
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
    <channel>
        <title></title>
        <link></link>
        <description></description>
        <item>
            <g:id>example0291</g:id>
            <g:store_code>12345</g:store_code>
            <g:title>Example Product</g:title>
            <g:description>Example description</g:description>
            <g:link>https://example.com/example-product/</g:link>
            <g:image_link>https://example.com/example-products.jpg</g:image_link>
            <g:availability>in_stock</g:availability>
            <g:brand>Example Brand</g:brand>
            <g:google_product_category>Example category 1 / Example category 2</g:google_product_category>
            <g:price>4495.00 GBP</g:price>
            <g:condition>New</g:condition>
            <g:color>Blue</g:color>
            <g:material>Platinum</g:material>
            <g:gender>female</g:gender>
            <g:age_group>adult</g:age_group>
            <g:shipping>
                <g:country>GB</g:country>
                <g:service>Standard</g:service>
                <g:price>0 GBP</g:price>
                <g:min_handling_time>0</g:min_handling_time>
                <g:max_handling_time>0</g:max_handling_time>
                <g:min_transit_time>1</g:min_transit_time>
                <g:max_transit_time>3</g:max_transit_time>
            </g:shipping>
        </item>
    </channel>
</rss>