I know this can be done - but I just can't find an example.
I have an Schema.org Organization div in the header of my page.
The page is an article so I have to add a publisher. I don't want to duplicate data and I know that you can refer to other items on the page by ID but I'm just not sure of the overall syntax.
This is where I'm at. I'm still getting 2 errors, stating that the logo and name fields are required - but isn't that what I'm referencing?
<div id="organization" itemscope itemtype="http://schema.org/Organization">
<asp:HyperLink ID="lnkHome" runat="server" itemprop="url">
<asp:Image ID="imgLogo" runat="server" itemprop="logo" />
</asp:HyperLink>
<meta itemprop="name" content="My Co" />
</div>
<article itemscope itemtype="http://schema.org/Article">
<span itemprop="publisher" itemscope itemtype="http://schema.org/Organization" itemref="organization"></span>
</article>