Painting

From getSchema
Jump to: navigation, search

This Page Semantic Annotations

Description

A painting.

Examples

Gemäldegalerie Alte Meister in Dresden is a famous old art collection in the world. One of the famous paintings is The Tribute Money, by Titian c. 1516.

87 out of 100 based on 24 user ratings.

Lets try a Schema.org markup:

RDFa 1.1 Lite

<div vocab="http://schema.org/" typeOf="Painting">
  <img src="wikipedia/commons/d/d4/Tizian_014.jpg" property="image" alt="Tribute Money by Titian"/>
  The <span property="name">Tribute Money</span> is a 
  <span property="contentRating">famous</span> 
  <span property="genre">oil on panel</span> painting by the Italian master 
  <span property="author">
    <span typeOf="Person">
      <span property="name">Tiziano Vecellio</span> 
     (<span property="birthDate">c.1488</span>-<span property="deathDate">1576</span>)
    </span>
  </span>. It was painted in <span property="datePublished">c.1516</span> by request 
  of Alfonso I d'Este of Ferrara.  It is 79x70,5 cm and you can see it at 
  <span property="contentLocation">
    <span typeOf="Museum">
        <a href="http://www.skd.museum/" property="url">
        <span property="name">Gemaeldegalerie Alte Meister</span>
        </a>, 
      <span property="address">
        <span typeOf="PostalAddress">
          <span property="addressLocality">Dresden</span>, 
          <span property="addressCountry">Germany</span>
        </span>
      </span>
    </span>
  </span>.
  <div property="aggregateRating">
    <span typeOf="AggregateRating">
      <span property="ratingValue">87</span>
      out of <span property="bestRating">100</span>
      based on <span property="ratingCount">24</span> user ratings
    </span>
  </div>
</div>

Microdata

<div itemscope itemtype="http://schema.org/Painting">
  <img src="wikipedia/commons/d/d4/Tizian_014.jpg" itemprop="image" alt="Tribute Money by Titian"/>
  The <span itemprop="name">Tribute Money</span> is a 
  <span itemprop="contentRating">famous</span> 
  <span itemprop="genre">oil on panel</span> painting by the Italian master 
  <span itemprop="author" itemscope itemtype="http://schema.org/Person">
    <span itemprop="name">Tiziano Vecellio</span> 
   (<span itemprop="birthDate">c.1488</span>-<span itemprop="deathDate">1576</span>)
  </span>. It was painted in <span itemprop="datePublished">c.1516</span> by request 
  of Alfonso I d'Este of Ferrara.  It is 79x70,5 cm and you can see it at 
    <span itemprop="contentLocation" itemscope itemtype="http://schema.org/Museum">
      <a href="http://www.skd.museum/" itemprop="url">
        <span itemprop="name">Gemaeldegalerie Alte Meister</span>
      </a>, 
        <span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
          <span itemprop="addressLocality">Dresden</span>, 
          <span itemprop="addressCountry">Germany</span>
        </span>
    </span>.
    <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
      <span itemprop="ratingValue">87</span>
      out of <span itemprop="bestRating">100</span>
      based on <span itemprop="ratingCount">24</span> user ratings
    </div>
</div>

Microformats