Fabrizio
Fabrizio

Reputation: 21

Schema markup for logo [application/ld+json]

I have implemented for a website the "Schema Logo" according to schema.org.

While testing it both from Goolge Search Console and the google data testing tool (https://search.google.com/test/rich-results?hl=it) the element contains no errors or warning but both tools call it "Element without name".

This is correct or we can define a name for the "snippet" ? I have search google without success.

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "url": "<?php echo $this->serverurl(); ?>",
    "logo": "<?php echo $this->serverurl(); ?>/img/logo-microdata.png"
}

Upvotes: 0

Views: 713

Answers (1)

BadHorsie
BadHorsie

Reputation: 14564

According to the Google Documentation it doesn't look like there's a way to provide a name for the logo snippet.

It will still work correctly, it just shows as Unnamed Item in Google Search Console.

Upvotes: 0

Related Questions