Beginner problem with Json organization url

Hello,

I try getting familiar with json-ld. Looking up code snippets worked well, but google testing tool keeps telling me that something wrong with my url

https://www.bettdecke.de (Alle für http://www.example.com/ angegebenen Werte müssen dieselbe Domain haben.)
Translated means something like all given data must contain same domain.

Where do specify another domain? I don’t get it. I replaced schema.org with bettdecke.de, put url into contactpoint and in different lines, to look wheater I missed some , ; “” [{ or anything else… and read here url - Schema.org Property what it could be, but the example there shows the same code I copied…

May someone help me, please. Which important detail do I miss?

<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "Organization",
        "contactPoint": [{
            "@type": "ContactPoint",
                "telephone": "+49 6262 920532",
                "email": "mailto:info@bettdecke.de",
                "contactType": "customer support",
                "areaServed": ["DE"],
                "availableLanguage": ["German"]  
            }],
		"url": "https://www.bettdecke.de",
        "name":  "Bettdecke.de",   
        "image":  "https://www.bettdecke.de/skin/frontend/default/wollendekbed/images/service.png",   
        "description":  "Bettdecke.de ist seit 2007 für Sie da. Wir sind der Onlinefachhändler für qualitativ hochwertige Daunendecken. Nutzen Sie unser Expertenwissen bei der Auswahl der perfekten Bettdecke. Wir bieten persönliche Beratung und ein umfangreiches qualitativ hochwertiges Angebot."
}
</script>

Hi @Thorsten, awesome you are using json-ld for your SEO… Webflow is great for using json ld on your site :slight_smile:

Take a peek at this super helpful article: The JSON-LD Markup Guide To Local Business Schema - Whitespark

I would also try changing “name”: “Bettdecke.de” to “name”: “www.bettdecke.de” and then set the www domain to be the default in Webflow: http://help.webflow.com/faq/how-to-set-your-sites-default-domain

After setting the default domain, republish the site.

I hope this helps, let me know if any issues, I am happy to take a further look :slight_smile:

Cyberdave thanks for your reply. Sorry to say, but it didn’t fix the problem. On Whitespark the code for the url-implementation is the same, therefore I could get mad.
@schema.org I read that type Organization has no url-attribute, but “Thing” has. I tried to add "@type:":"Thing"
But that brought up a new error message.