0

Can you please help me to figure it out how to set Google Rich Snippet for a childcare service?

My specific question is, should I register itemtype as LocalBusiness like

<div itemscope itemtype="http://schema.org/LocalBusiness">

or directly as ChildCare like

<div itemscope itemtype="http://schema.org/ChildCare">
unor
  • 92,415
  • 26
  • 211
  • 360
Behseini
  • 6,066
  • 23
  • 78
  • 125
  • I think your second question is not really based on or related to your first question. Would you agree to remove the 2nd question and create a separate question post for it? – unor Oct 15 '15 at 14:47

1 Answers1

0

As a general rule, you should always choose the most-specific type.

So if your business matches the description for ChildCare ("A Childcare center."), you should use this type instead of the more general LocalBusiness (or even the most general Thing).

Every complying consumer should be able to understand that ChildCare is some kind of LocalBusiness. Only if the type is very new (or if they no longer update/maintain their product), consumers may need some time until they recognize it.

If you want to make sure that those consumers also understand it, you could provide both types:

<div itemscope itemtype="http://schema.org/ChildCare http://schema.org/LocalBusiness">
</div>

But that’s typically not needed.

unor
  • 92,415
  • 26
  • 211
  • 360