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

description

A Schema.org Property
  • Canonical URL: https://schema.org/description
  • Equivalent Property: dcterms:description
  • Check for open issues.
A description of the item.

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. <b>12oclock_girona.mp3</b>
  2. Total Time: 0m:15s - Recorded on a terrace of Girona a sunday morning
  3. composed by Roger

  4.  <script type="text/javascript">
  5. var fo = new FlashObject("http://google.com/flash/preview-player.swf", "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url", "http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
  6. </script>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/AudioObject">
  2.   <span itemprop="name"><b>12oclock_girona.mp3</b></span>

  3. <script type="text/javascript">
  4.   var fo = new FlashObject("http://google.com/flash/preview-player.swf",
  5.   "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url","http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
  6. </script>

  7. <meta itemprop="encodingFormat" content="audio/mpeg" />
  8.  <meta itemprop="contentUrl" content="http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3" />

  9. <span class="description">
  10.       <meta itemprop="duration" content="T0M15S" />
  11.       <span itemprop="description">Recorded on a terrace of Girona a sunday morning</span>
  12. </span>
  13. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="AudioObject">
  2.   <span property="name"><b>12oclock_girona.mp3</b></span>

  3. <script type="text/javascript">
  4.   var fo = new FlashObject("http://google.com/flash/preview-player.swf",
  5.   "flashPlayer_719", "358", "16", "6", "#FFFFFF");fo.addVariable("url","http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3");fo.addVariable("autostart", "0");fo.write("flashcontent_719");
  6. </script>

  7. <meta property="encodingFormat" content="audio/mpeg" />
  8.  <meta property="contentUrl" content="http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3" />

  9. <span class="description">
  10.       <meta property="duration" content="T0M15S" />
  11.       <span property="description">Recorded on a terrace of Girona a sunday morning</span>
  12. </span>
  13. </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": "AudioObject",
  5.   "contentUrl": "http://media.freesound.org/data/0/previews/719__elmomo__12oclock_girona_preview.mp3",
  6.   "description": "Recorded on a terrace of Girona a sunday morning",
  7.   "duration": "T0M15S",
  8.   "encodingFormat": "audio/mpeg",
  9.   "name": "12oclock_girona.mp3"
  10. }
  11. </script>
Structured representation of the JSON-LD example.