schemaorg-coda :: Example

eg-0427

From v29.4

JSON-LD

{
  "@context": "https://schema.org/",
  "@type": "Person",
  "name": "Christopher Froome",
  "sponsor":
  {
    "@type": "Organization",
    "name": "Sky",
    "url": "http://www.skysports.com/"
  }
}

RDFa

<p vocab="https://schema.org/" typeof="Person">
  <span property="name">Christopher Froome</span> was sponsored by
  <span property="sponsor" typeof="https://schema.org/Organization">
    <a property="url" href="http://www.skysports.com/">Sky</a></span> in the Tour de France.
</p>

Microdata

<p itemscope itemprop="Person" itemtype="https://schema.org/Person">
  <span itemprop="name">Christopher Froome</span> was sponsored by
  <span itemprop="sponsor" itemtype="https://schema.org/Organization">
    <a itemprop="url" href="http://www.skysports.com/">Sky</a></span> in the Tour de France.
</p>

Pre-Markup

<p>Christopher Froome was sponsored by Sky in the Tour de France.</p>