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

genre

A Schema.org Property
Genre of the creative work, broadcast channel or group.

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. <h1>The Madonna with the Long Neck</h1>
  2. Late Renaissance painting by Parmigianino
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Painting">
  2.   <h1><span itemprop="name">The Madonna with the Long Neck</span></h1>
  3.   <meta itemprop="genre" content="http://vocab.getty.edu/aat/300021143"/>Late Renaissance painting by
  4.   <span itemprop="creator">Parmigianino</span>.
  5. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Painting">
  2.   <h1><span property="name">The Madonna with the Long Neck</span></h1>
  3.   <span property="genre" content="http://vocab.getty.edu/aat/300021143">Late Renaissance</span> painting by
  4.   <span property="creator">Parmigianino</span>.
  5. </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": "Painting",
  5.   "name": "The Madonna with the Long Neck",
  6.   "genre": "http://vocab.getty.edu/aat/300021143"
  7. }
  8. </script>
Structured representation of the JSON-LD example.