Kalyanakannan padivasu
Kalyanakannan padivasu

Reputation: 703

how to set Headquarters in schema.org json ld

this is my json ld

<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "legalName" : "example",
  "url" : "https://www.example.com/",
  "description" : "Company",
  "logo" : "logo.jpg",
  "sameAs" : [ " https://www.facebook.com/example"]
}
</script>

for Headquarters what attribute need to be used? enter image description here

Upvotes: 0

Views: 640

Answers (1)

Evgeniy
Evgeniy

Reputation: 2605

There is no such property like Headquarters. But there are some possibilities to display relations between different offices and organization levels. Look further to following properties:

Related to your screenshot:

Informations from your screenshot are actually coming from Wiki / DBpedia entry for the firm. If you look at this page http://dbpedia.org/page/Google you will see, the Headquarters information from your screenshot is actually a kind of location property, like on my screenshot:

enter image description here

Upvotes: 1

Related Questions