Note: You are viewing the development version of Schema.org. See how we work for more details.

image

A Schema.org Property
An image of the item. This can be a URL or a fully described ImageObject.

Values expected to be one of these types

Used on these types


Sub-properties

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <img src="dell-30in-lcd.jpg" alt="A Dell UltraSharp monitor" />
  2. Dell UltraSharp 30" LCD Monitor

  3. 87 out of 100 based on 24 user ratings

  4. $1250 to $1495 from 8 sellers

  5. Sellers:
  6. <a href="save-a-lot-monitors.com/dell-30.html">
  7.   Save A Lot Monitors - $1250</a>
  8. <a href="jondoe-gadgets.com/dell-30.html">
  9.   Jon Doe's Gadgets - $1350</a>
  10. ...
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Product">
  2.   <img itemprop="image" src="dell-30in-lcd.jpg" alt="A Dell UltraSharp monitor"/>
  3.   <span itemprop="name">Dell UltraSharp 30" LCD Monitor</span>

  4.   <div itemprop="aggregateRating"
  5.     itemscope itemtype="https://schema.org/AggregateRating">
  6.     <span itemprop="ratingValue">87</span>
  7.     out of <span itemprop="bestRating">100</span>
  8.     based on <span itemprop="ratingCount">24</span> user ratings
  9.   </div>

  10.   <div itemprop="offers" itemscope itemtype="https://schema.org/AggregateOffer">
  11.     <meta itemprop="priceCurrency" content="USD" />
  12.     <span itemprop="lowPrice" content="1250">$1250</span>
  13.     to <span itemprop="highPrice" content="1495">$1495</span>
  14.     from <span itemprop="offerCount">8</span> sellers

  15.     Sellers:
  16.     <div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
  17.         <a itemprop="url" href="save-a-lot-monitors.com/dell-30.html">
  18.         Save A Lot Monitors - $1250</a>
  19.     </div>
  20.     <div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
  21.         <a itemprop="url" href="jondoe-gadgets.com/dell-30.html">
  22.         Jon Doe's Gadgets - $1350</a>
  23.     </div>
  24.   </div>
  25.   ...
  26. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Product">
  2.     <img property="image" src="dell-30in-lcd.jpg" alt="A Dell UltraSharp monitor"> <span property="name">Dell UltraSharp 30" LCD Monitor</span>
  3.     <div property="aggregateRating" typeof="AggregateRating">
  4.         <span property="ratingValue">87</span> out of
  5.         <span property="bestRating">100</span> based on
  6.         <span property="ratingCount">24</span> user ratings
  7.     </div>
  8.     <div property="offers" typeof="AggregateOffer">
  9.         <meta property="priceCurrency" content="USD" />
  10.         <span property="lowPrice" content="1250">$1250</span> to
  11.         <span property="highPrice" content="1495">$1495</span> from
  12.         <span property="offerCount">8</span> sellers Sellers:
  13.         <div property="offers" typeof="Offer">
  14.             <a property="url" href="save-a-lot-monitors.com/dell-30.html">Save A Lot Monitors - $1250</a>
  15.         </div>
  16.         <div property="offers" typeof="Offer">
  17.             <a property="url" href="jondoe-gadgets.com/dell-30.html">Jon Doe's Gadgets - $1350</a>
  18.         </div>
  19.         ...
  20.     </div>
  21. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "Product",
  5.   "aggregateRating": {
  6.     "@type": "AggregateRating",
  7.     "bestRating": "100",
  8.     "ratingCount": "24",
  9.     "ratingValue": "87"
  10.   },
  11.   "image": "dell-30in-lcd.jpg",
  12.   "name": "Dell UltraSharp 30\" LCD Monitor",
  13.   "offers": {
  14.     "@type": "AggregateOffer",
  15.     "priceCurrency": "USD",
  16.     "highPrice": "1495",
  17.     "lowPrice": "1250",
  18.     "offerCount": "8",
  19.     "offers": [
  20.       {
  21.         "@type": "Offer",
  22.         "url": "save-a-lot-monitors.com/dell-30.html"
  23.       },
  24.       {
  25.         "@type": "Offer",
  26.         "url": "jondoe-gadgets.com/dell-30.html"
  27.       }
  28.     ]
  29.   }
  30. }
  31. </script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
  1. Mom's World Famous Banana Bread
  2. By John Smith, May 8, 2009
  3. <img src="bananabread.jpg" alt="Banana bread on a plate" />

  4. This classic banana bread recipe comes from my mom -- the walnuts add a nice
  5.  texture and flavor to the banana bread.

  6. Prep Time: 15 minutes
  7. Cook time: 1 hour
  8. Yield: 1 loaf
  9. Tags: Low fat

  10. Nutrition facts:
  11. 240 calories, 9 grams fat

  12. Ingredients:
  13. - 3 or 4 ripe bananas, smashed
  14. - 1 egg
  15. - 3/4 cup of sugar
  16. ...

  17. Instructions:
  18.  Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add the
  19.  flour last. Pour the mixture into a loaf pan and bake for one hour.

  20. 140 comments:
  21. From Janel, May 5 -- thank you, great recipe!
  22. ...
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Recipe">
  2.   <span itemprop="name">Mom's World Famous Banana Bread</span>
  3.   By <span itemprop="author">John Smith</span>,
  4.   <meta itemprop="datePublished" content="2009-05-08">May 8, 2009
  5.   <img itemprop="image" src="bananabread.jpg"
  6.        alt="Banana bread on a plate" />

  7.   <span itemprop="description">This classic banana bread recipe comes
  8.   from my mom -- the walnuts add a nice texture and flavor to the banana
  9.   bread.</span>

  10.   Prep Time: <meta itemprop="prepTime" content="PT15M">15 minutes
  11.   Cook time: <meta itemprop="cookTime" content="PT1H">1 hour
  12.   Yield: <span itemprop="recipeYield">1 loaf</span>
  13.   Tags: <link itemprop="suitableForDiet" href="https://schema.org/LowFatDiet" />Low fat

  14.   <div itemprop="nutrition"
  15.     itemscope itemtype="https://schema.org/NutritionInformation">
  16.     Nutrition facts:
  17.     <span itemprop="calories">240 calories</span>,
  18.     <span itemprop="fatContent">9 grams fat</span>
  19.   </div>

  20.   Ingredients:
  21.   - <span itemprop="recipeIngredient">3 or 4 ripe bananas, smashed</span>
  22.   - <span itemprop="recipeIngredient">1 egg</span>
  23.   - <span itemprop="recipeIngredient">3/4 cup of sugar</span>
  24.   ...

  25.   Instructions:
  26.   <span itemprop="recipeInstructions">
  27.   Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
  28.   the flour last. Pour the mixture into a loaf pan and bake for one hour.
  29.   </span>

  30.   140 comments:
  31.   <div itemprop="interactionStatistic" itemscope itemtype="https://schema.org/InteractionCounter">
  32.     <meta itemprop="interactionType" content="https://schema.org/CommentAction" />
  33.     <meta itemprop="userInteractionCount" content="140" />
  34.   </div>
  35.   From Janel, May 5 -- thank you, great recipe!
  36.   ...
  37. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Recipe">
  2.   <span property="name">Mom's World Famous Banana Bread</span>
  3.   By <span property="author">John Smith</span>,
  4.   <meta property="datePublished" content="2009-05-08">May 8, 2009
  5.   <img property="image" src="bananabread.jpg"
  6.     alt="Banana bread on a plate" />

  7.   <span property="description">This classic banana bread recipe comes
  8.   from my mom -- the walnuts add a nice texture and flavor to the banana
  9.   bread.</span>

  10.   Prep Time: <meta property="prepTime" content="PT15M">15 minutes
  11.   Cook time: <meta property="cookTime" content="PT1H">1 hour
  12.   Yield: <span property="recipeYield">1 loaf</span>
  13.   Tags: <link property="suitableForDiet" href="https://schema.org/LowFatDiet" />Low Fat

  14.   <div property="nutrition" typeof="NutritionInformation">
  15.     Nutrition facts:
  16.     <span property="calories">240 calories</span>,
  17.     <span property="fatContent">9 grams fat</span>
  18.   </div>

  19.   Ingredients:
  20.   - <span property="recipeIngredient">3 or 4 ripe bananas, smashed</span>
  21.   - <span property="recipeIngredient">1 egg</span>
  22.   - <span property="recipeIngredient">3/4 cup of sugar</span>
  23.   ...

  24.   Instructions:
  25.   <span property="recipeInstructions">
  26.   Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add
  27.   the flour last. Pour the mixture into a loaf pan and bake for one hour.
  28.   </span>

  29.   140 comments:
  30.   <div property="interactionStatistic" typeof="InteractionCounter">
  31.     <meta property="interactionType" content="https://schema.org/CommentAction" />
  32.     <meta property="userInteractionCount" content="140" />
  33.   </div>
  34.   From Janel, May 5 -- thank you, great recipe!
  35.   ...
  36. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "Recipe",
  5.   "author": "John Smith",
  6.   "cookTime": "PT1H",
  7.   "datePublished": "2009-05-08",
  8.   "description": "This classic banana bread recipe comes from my mom -- the walnuts add a nice texture and flavor to the banana bread.",
  9.   "image": "bananabread.jpg",
  10.   "recipeIngredient": [
  11.     "3 or 4 ripe bananas, smashed",
  12.     "1 egg",
  13.     "3/4 cup of sugar"
  14.   ],
  15.   "interactionStatistic": {
  16.     "@type": "InteractionCounter",
  17.     "interactionType": "https://schema.org/Comment",
  18.     "userInteractionCount": "140"
  19.   },
  20.   "name": "Mom's World Famous Banana Bread",
  21.   "nutrition": {
  22.     "@type": "NutritionInformation",
  23.     "calories": "240 calories",
  24.     "fatContent": "9 grams fat"
  25.   },
  26.   "prepTime": "PT15M",
  27.   "recipeInstructions": "Preheat the oven to 350 degrees. Mix in the ingredients in a bowl. Add the flour last. Pour the mixture into a loaf pan and bake for one hour.",
  28.   "recipeYield": "1 loaf",
  29.   "suitableForDiet": "https://schema.org/LowFatDiet"
  30. }
  31. </script>
Structured representation of the JSON-LD example.
Example 3
Copied
Example notes or example HTML without markup.
  1. <h1>ACME Hotel Innsbruck</h1>
  2.   <img src="../media/logo.png" alt="hotel logo" />
  3.   <span>A beautifully located business hotel right in the
  4. heart of the alps. Watch the sun rise over the scenic Inn valley while
  5. enjoying your morning coffee.</span>
  6.   <img src="../media/hotel_front.png" alt="Front view of the hotel" />
  7. </div>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Hotel">
  2.   <h1><span itemprop="name">ACME Hotel Innsbruck</span></h1>
  3.   <img itemprop="logo" src="../media/logo.png" alt="hotel logo" />
  4.   <span itemprop="description">A beautifully located business hotel right in the
  5. heart of the alps. Watch the sun rise over the scenic Inn valley while
  6. enjoying your morning coffee.</span>
  7.   <img itemprop="photo" src="../media/hotel_front.png" alt="Front view of the hotel" />
  8. </div>