Logo structured data in json for an organization
Mark E.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Inc.",
"url": "https://www.example.com",
"logo": "https://www.example.com/images/logo.png",
"width": "600",
"height": "60"
}
</script>
In this example, we have specified the following properties:
@context
: Specifies the context of the structured data as "http://schema.org".@type
: Specifies that the structured data is for an organization.name
: Specifies the name of the organization as "Example Company".logo
: Specifies the logo of the organization as an ImageObject. Theurl
property specifies the URL of the logo image, while thewidth
andheight
properties specify the dimensions of the logo in pixels.
Note that the Logo structured data can be included on any page that represents the organization, such as the homepage or the About Us page.