Is there any difference if I insert absolute or relative links in the url while marking up schema. In the following code can i directly reference the image source as logo.png instead of http : // example.com/ logo. png.
Code:
<div itemscope itemtype="http : // schema.org / Organization ">
<a itemprop="url" href="http : // example. com ">Home</a>
<img itemprop="logo" src=" http : // example. com/ logo.png" />
</div>