Y
Y
Yuriy2017-06-01 12:15:33
Google
Yuriy, 2017-06-01 12:15:33

Scheme.org micro-markup how to specify company branches?

There is basic information about the company

{
  "@context": "http://schema.org",
  "@type": "Corporation",
  "image": "https://www.example.com/logo.jpg",
  "name": "Intel Corporation",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "1600 Saratoga Ave",
    "addressLocality": "Moscow",
    "addressRegion": "RU",
    "postalCode": "123456",
    "addressCountry": "RU"
  },
  "url": "https://www.example.com/",
  "telephone": "+1234567890"
}

1. The company has a bunch of branches in different cities and countries, how to add them to the microdata, phone numbers, addresses of these branches?
2. How else can I add hours of operation? "Corporation", "Organization" types do not have openingHours, openingHoursSpecification properties
,
  "openingHours": "Mo,Tu,We,Th,Fr,Sa,Su 09:00-22:00",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday",
        "Saturday",
        "Sunday"
      ],
      "opens": "09:00",
      "closes": "22:00"
    }
  ]

2367f61455924ace875ced1fdd950255.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry, 2017-06-01
@yous

1. schema.org/subOrganization
2. schema.org/OpeningHoursSpecification

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question