You must specify itemref in the itemscope to which you want to add properties (i.e. the html element in your case). And the element with the corresponding id should receive itemprop .
However, in your case, you do not need the meta element, and you do not need to use itemref :
<!DOCTYPE html> <html itemscope itemtype="http://schema.org/WebSite"> <head> <title>β¦</title> </head> <body> <div itemprop="creator" itemscope itemtype="http://schema.org/LocalBusiness"> </div> </body> </html>
But let's say you use a different itemscope (e.g. for a WebPage element) on the body , in which case you need to use itemref :
<!DOCTYPE html> <html itemscope itemtype="http://schema.org/WebSite" itemref="mdFoo"> <head> <title>β¦</title> </head> <body itemscope itemtype="http://schema.org/WebPage"> <div itemprop="creator" itemscope itemtype="http://schema.org/LocalBusiness" id="mdFoo"> </div> </body> </html>
Now the creator property will be applied to both elements ( WebSite thanks to itemref and WebPage , because its a child).
unor Mar 18 '16 at 14:48 2016-03-18 14:48
source share