Person
Defined in the None.schema.org extension.Canonical URL: http://schema.org/Person
No comment
Usage: Over 1,000,000 domains
Acknowledgement
This class contains derivatives of IPTC rNews properties. rNews is a data model of publishing metadata with serializations currently available for RDFa as well as HTML5 Microdata. More information about the IPTC and rNews can be found at rnews.org.
Examples
An example of a credit card bill (invoice). ACME Bank Bill for: January 2015 Visa invoice link: http://www.acmebank.com/invoice.pdf Customer: Jane Doe account ID: xxxx-xxxx-xxxx-1234 payment due: 2015-01-30 minimum payment: $15.00 total due: $200.00 billing period: 2014-12-21 to 2015-01-20 payment due
<div itemscope itemtype="http://schema.org/Invoice"> <h1 itemprop="description">January 2015 Visa</h1> <a itemprop="url" href="http://acmebank.com/invoice.pdf" />Invoice PDF</a> <div itemprop="broker" itemscope itemtype="http://schema.org/BankOrCreditUnion"> <b itemprop="name">ACME Bank</b> </div> <span itemprop="accountId">xxxx-xxxx-xxxx-1234</span> <div itemprop="customer" itemscope itemtype="http://schema.org/Person"> <b itemprop="name">Jane Doe</b> </div> <time itemprop="paymentDueDate">2015-01-30</time> <div itemprop="minimumPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification"> <span itemprop="price">15.00</span> <span itemprop="priceCurrency">USD</span> </div> <div itemprop="totalPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification"> <span itemprop="price">200.00</span> <span itemprop="priceCurrency">USD</span> </div> <meta itemprop="billingPeriod" content="2014-12-21/P30D" />starts:2014-12-21 30 days <link itemprop="paymentStatus" href="http://schema.org/PaymentDue" /> </div>
<div vocab="http://schema.org/" typeof="Invoice"> <h1 property="description">January 2015 Visa</h1> <a property="url" href="http://acmebank.com/invoice.pdf">Invoice PDF</a> <div property="broker" typeof="BankOrCreditUnion"> <b property="name">ACME Bank</b> </div> <span property="accountId">xxxx-xxxx-xxxx-1234</span> <div property="customer" typeof="Person"> <b property="name">Jane Doe</b> </div> <time property="paymentDueDate">2015-01-30</time> <div property="minimumPaymentDue" typeof="PriceSpecification"> <span property="price">15.00</span> <span property="priceCurrency">USD</span> </div> <div property="totalPaymentDue" typeof="PriceSpecification"> <span property="price">200.00</span> <span property="priceCurrency">USD</span> </div> <meta property="billingPeriod" content="2014-12-21/P30D" />starts:2014-12-21 30 days <link property="paymentStatus" href="PaymentDue" /> </div>
<script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Invoice", "description": "January 2015 Visa bill.", "url": "http://acmebank.com/invoice.pdf", "broker": { "@type": "BankOrCreditUnion", "name": "ACME Bank", }, "accountId": "xxxx-xxxx-xxxx-1234", "customer": { "@type": "Person", "name": "Jane Doe" }, "paymentDueDate": "2015-01-30", "minimumPaymentDue": { "@type": "PriceSpecification", "price": 15.00, "priceCurrency": "USD" }, "totalPaymentDue": { "@type": "PriceSpecification", "price": 200.00, "priceCurrency": "USD" }, "billingPeriod": "2014-12-21/P30D", "paymentStatus": "http://schema.org/PaymentDue" } </script>
An example of a invoice for a purchase and installation. ACME Home Heating Bill for: New furnace and installation Customer: Jane Doe payment due: 2015-01-30 minimum payment: $0.00 total due: $0.00 payment status: paid order: furnace model ABC123 order: installation labor
<div itemscope itemtype="http://schema.org/Invoice"> <h1 itemprop="description">New furnace and installation</h1> <div itemprop="broker" itemscope itemtype="http://schema.org/LocalBusiness"> <b itemprop="name">ACME Home Heating</b> </div> <div itemprop="customer" itemscope itemtype="http://schema.org/Person"> <b itemprop="name">Jane Doe</b> </div> <time itemprop="paymentDueDate">2015-01-30</time> <div itemprop="minimumPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification"> <span itemprop="price">0.00</span> <span itemprop="priceCurrency">USD</span> </div> <div itemprop="totalPaymentDue" itemscope itemtype="http://schema.org/PriceSpecification"> <span itemprop="price">0.00</span> <span itemprop="priceCurrency">USD</span> </div> <link itemprop="paymentStatus" href="http://schema.org/PaymentComplete" /> <div itemprop="referencesOrder" itemscope itemtype="http://schema.org/Order"> <span itemprop="description">furnace</span> <time itemprop="orderDate">2014-12-01</time> <span itemprop="orderNumber">123ABC</span> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/Product"> <span itemprop="name">ACME Furnace 3000</span> <meta itemprop="productId" content="ABC123" /> </div> </div> <div itemprop="referencesOrder" itemscope itemtype="http://schema.org/Order"> <span itemprop="description">furnace installation</span> <time itemprop="orderDate">2014-12-02</time> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/Service"> <span itemprop="description">furnace installation</span> </div> </div> </div>
<div vocab="http://schema.org/" typeof="Invoice"> <h1 property="description">New furnace and installation</h1> <div property="broker" typeof="/LocalBusiness"> <b property="name">ACME Home Heating</b> </div> <div property="customer" typeof="Person"> <b property="name">Jane Doe</b> </div> <time property="paymentDueDate">2015-01-30</time> <div property="minimumPaymentDue" typeof="PriceSpecification"> <span property="price">0.00</span> <span property="priceCurrency">USD</span> </div> <div property="totalPaymentDue" typeof="PriceSpecification"> <span property="price">0.00</span> <span property="priceCurrency">USD</span> </div> <meta itemprop="paymentStatus" content="PaymentComplete" /> <div property="referencesOrder" typeof="Order"> <span property="description">furnace</span> <time property="orderDate">2014-12-01</time> <span property="orderNumber">123ABC</span> <div property="orderedItem" typeof="Product"> <span property="name">ACME Furnace 3000</span> <meta property="productId" content="ABC123" /> </div> </div> <div property="referencesOrder" typeof="Order"> <span property="description">furnace installation</span> <time property="orderDate">2014-12-02</time> <div property="orderedItem" typeof="Service"> <span property="description">furnace installation</span> </div> </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Invoice", "broker": { "@type": "LocalBusiness", "name": "ACME Home Heating", }, "accountId": "xxxx-xxxx-xxxx-1234", "customer": { "@type": "Person", "name": "Jane Doe" }, "paymentDueDate": "2015-01-30", "minimumPaymentDue": { "@type": "PriceSpecification", "price": 0.00, "priceCurrency": "USD" }, "totalPaymentDue": { "@type": "PriceSpecification", "price": 0.00, "priceCurrency": "USD" }, "paymentStatus": "http://schema.org/PaymentComplete", "referencesOrder": [ { "@type": "Order", "description": "furnace", "orderDate": "2014-12-01", "orderNumber": "123ABC", "paymentMethod": "http://purl.org/goodrelations/v1#ByInvoice", "orderedItem": { "@type": "Product", "name": "ACME Furnace 3000", "productId": "ABC123" } }, { "@type": "Order", "description": "furnace installation", "orderDate": "2014-12-02", "paymentMethod": "http://purl.org/goodrelations/v1#ByInvoice", "orderedItem": { "@type": "Service", "description": "furnace installation" } }, ] } </script>
An example of an order for multiple items, shipped separately. ACME Supplies Customer: Jane Doe Order: Item abc123: 1 Widget: delivered 2015-03-10 Item def456: 3 Widget accessories: shipped 2015-03-12
<div itemscope itemtype="http://schema.org/Order"> <div itemprop="seller" itemscope itemtype="http://schema.org/Organization"> <b itemprop="name">ACME Supplies</b> </div> <div itemprop="customer" itemscope itemtype="http://schema.org/Person"> <b itemprop="name">Jane Doe</b> </div> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/OrderItem"> Item number: <span itemprop="orderItemNumber">abc123</span> <span itemprop="orderQuantity">1</span> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Widget</span> </div> <link itemprop="orderItemStatus" href="http://schema.org/OrderDelivered" />Delivered <div itemprop="orderDelivery" itemscope itemtype="http://schema.org/ParcelDelivery"> <time="expectedArrivalFrom">2015-03-10</time> </div> </div> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/OrderItem"> Item number: <span itemprop="orderItemNumber">def456</span> <span itemprop="orderQuantity">4</span> <div itemprop="orderedItem" itemscope itemtype="http://schema.org/Product"> <span itemprop="name">Widget accessories</span> </div> <link itemprop="orderItemStatus" href="http://schema.org/OrderInTransit" />Shipped <div itemprop="orderDelivery" itemscope itemtype="http://schema.org/ParcelDelivery"> <time itemprop="expectedArrivalFrom">2015-03-15</time> <time itemprop="expectedArrivalUntil">2015-03-18</time> </div> </div> </div>
<div vocab="http://schema.org/" typeof="Order"> <div property="seller" typeof="Organization"> <b property="name">ACME Supplies</b> </div> <div property="customer" typeof="Person"> <b property="name">Jane Doe</b> </div> <div property="orderedItem" typeof="OrderItem"> Item number: <span property="orderItemNumber">abc123</span> <span property="orderQuantity">1</span> <div property="orderedItem" typeof="Product"> <span property="name">Widget</span> </div> <link property="orderItemStatus" href="http://schema.org/OrderDelivered" />Delivered <div property="orderDelivery" typeof="ParcelDelivery"> <time property="expectedArrivalFrom">2015-03-10</time> </div> </div> <div property="orderedItem" typeof="OrderItem"> Item number: <span property="orderItemNumber">def456</span> <span property="orderQuantity">4</span> <div property="orderedItem" typeof="Product"> <span property="name">Widget accessories</span> </div> <link property="orderItemStatus" href="http://schema.org/OrderInTransit" />Shipped <div property="orderDelivery" typeof="ParcelDelivery"> <time property="expectedArrivalFrom">2015-03-15</time> <time property="expectedArrivalUntil">2015-03-18</time> </div> </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org/" "@type": "Order", "seller": { "@type": "Organization", "name": "ACME Supplies" }, "customer": { "@type": "Person", "name": "Jane Doe" }, "orderedItem": [ { "@type": "OrderItem" "orderItemNumber": "abc123", "orderQuantity": 1, "orderedItem": { "@type": "Product", "name": "Widget" }, "orderItemStatus": "http://schema.org/OrderDelivered", "orderDelivery": { "@type": "ParcelDelivery", "expectedArrivalFrom": "2015-03-10" } }, { "@type": "OrderItem" "orderItemNumber": "def456", "orderQuantity": 3, "orderedItem": { "@type": "Product", "name": "Widget accessories" }, "orderItemStatus": "http://schema.org/OrderInTransit", "orderDelivery": { "@type": "ParcelDelivery", "expectedArrivalFrom": "2015-03-15", "expectedArrivalUntil": "2015-03-18" } } ] } </script>
A MusicComposition Example. The following JSON-LD models the composition A Day in the Life by Lennon and McCartney, regardless of who performs or records the song.
Not available yet.
Not available yet.
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "MusicComposition", "@id": "http://musicbrainz.org/work/fd1aa4f2-ba26-3a05-b72d-4392c35a073c", "name": "A Day in the Life", "composer": [ { "@type": "Person", "name": "John Lennon", "@id": "http://musicbrainz.org/artist/4d5447d7-c61c-4120-ba1b-d7f471d385b9" }, { "@type": "Person", "name": "Paul McCartney", "@id": "http://musicbrainz.org/artist/ba550d0e-adac-4864-b88b-407cab5e76af" } ], "iswcCode": "T-010.140.236-1", "inLanguage": "EN", "publisher": { "@type": "Organization", "name": "Northern Songs, Ltd.", "@id": "http://musicbrainz.org/label/26df054d-78cf-4d83-9bb1-a41816125528" }, "datePublished": "1967", "lyrics": { "@type": "CreativeWork", "text": "I read the news today oh boy..." } } </script>
<p>Christopher Froome was sponsored by Sky in the Tour de France.</p>
<p itemscope itemprop="Person" itemtype="http://schema.org/Person"> <span itemprop="name">Christopher Froome</span> was sponsored by <span itemprop="sponsor" itemtype="http://schema.org/Organization"> <a itemprop="url" href="http://www.skysports.com/">Sky</a></span> in the Tour de France. </p>
<p vocab="http://schema.org/" typeof="Person"> <span property="name">Christopher Froome</span> was sponsored by <span property="sponsor" typeof="http://schema.org/Organization"> <a property="url" href="http://www.skysports.com/">Sky</a></span> in the Tour de France. </p>
<script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Person", "name": "Christopher Froome", "sponsor": { "@type": "Organization", "name": "Sky", "url": "http://www.skysports.com/" } } </script>
<p>Rose Tyler was sponsored by Sarah Jane Smith in the membership process.</p>
<p itemscope itemprop="Person" itemtype="http://schema.org/Person"> <span itemprop="name">Rose Tyler</span> was sponsored by <span itemscope itemprop="sponsor" itemtype="http://schema.org/Person"> <span itemprop="name">Sarah Jane Smith</span> </span> in the membership process. </p>
<p vocab="http://schema.org/" typeof="Person"> <span property="name">Rose Tyler</span> was sponsored by <span property="sponsor" typeof="http://schema.org/Person"> <span property="name">Sarah Jane Smith</span> </span> in the membership process. </p>
<script type="application/ld+json"> { "@context": "http://schema.org/", "@type": "Person", "name": "Rose Tyler", "sponsor": { "@type": "Person", "name": "Sarah Jane Smith" } } </script>
Fairly straightforward painting markup. <div> <h1 lang="fr">La trahison des images </h1> <p> A painting also known as The Treason of Images or The Treachery of Images. </p> <img src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" /> <div> <p> The painting shows a pipe. Below it, Magritte painted, <q lang="fr">Ceci n'est pas une pipe.</q>, French for "This is not a pipe." </p> <p> His statement is taken to mean that the painting itself is not a pipe. The painting is merely an image of a pipe. Hence, the description, "this is not a pipe." </p> <p> Similarly, the image shown above is neither a pipe nor even a painting, but rather a digital photograph. </p> <p> The painting is sometimes given as an example of meta message conveyed by paralanguage. Compare with Korzybski's <q>The word is not the thing</q> and <q>The map is not the territory</q>. </div> <ul> <li>Artist: <a href="https://www.freebase.com/m/06h88">René Magritte</a></li> <li>Dimensions: 940 mm × 635 mm</li> <li>Materials: oil on canvas</li> </ul> </div>
<div itemscope itemtype="http://schema.org/VisualArtwork"> <link itemprop="sameAs" href="http://rdf.freebase.com/rdf/m.0439_q" /> <h1 itemprop="name" lang="fr">La trahison des images </h1> <p> A <span itemprop="artform">painting</span> also known as <span>The Treason of Images</span> or <span itemprop="alternateName">The Treachery of Images</span>. </p> <img itemprop="image" src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" /> <div itemprop="description"> <p> The painting shows a pipe. Below it, Magritte painted, <q lang="fr">Ceci n'est pas une pipe.</q>, French for "This is not a pipe." </p> <p> His statement is taken to mean that the painting itself is not a pipe. The painting is merely an image of a pipe. Hence, the description, "this is not a pipe." </p> <p> Similarly, the image shown above is neither a pipe nor even a painting, but rather a digital photograph. </p> <p> The painting is sometimes given as an example of meta message conveyed by paralanguage. Compare with Korzybski's <q>The word is not the thing</q> and <q>The map is not the territory</q>. </div> <ul> <li>Artist: <span itemprop="creator" itemscope itemtype="http://schema.org/Person"> <a itemprop="sameAs" href="https://www.freebase.com/m/06h88"> <span itemprop="name">René Magritte</span> </a> </span> </li> <li>Dimensions: <span itemprop="width" itemscope itemtype="http://schema.org/Distance">940 mm</span> × <span itemprop="height" itemscope itemtype="http://schema.org/Distance">635 mm</span> </li> <li>Materials: <span itemprop="artMedium">oil</span> on <span itemprop="artworkSurface">canvas</span> </li> </ul> </div>
<div vocab="http://schema.org/" typeof="VisualArtwork"> <link property="sameAs" href="http://rdf.freebase.com/rdf/m.0439_q" /> <h1 property="name" lang="fr">La trahison des images </h1> <p> A <span property="artform">painting</span> also known as <span>The Treason of Images</span> or <span property="alternateName">The Treachery of Images</span>. </p> <img property="image" src="http://http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg" /> <div property="description"> <p> The painting shows a pipe. Below it, Magritte painted, <q lang="fr">Ceci n'est pas une pipe.</q>, French for "This is not a pipe." </p> <p> His statement is taken to mean that the painting itself is not a pipe. The painting is merely an image of a pipe. Hence, the description, "this is not a pipe." </p> <p> Similarly, the image shown above is neither a pipe nor even a painting, but rather a digital photograph. </p> <p> The painting is sometimes given as an example of meta message conveyed by paralanguage. Compare with Korzybski's <q>The word is not the thing</q> and <q>The map is not the territory</q>. </div> <ul> <li>Artist: <span property="creator" typeof="Person"> <a property="sameAs" href="https://www.freebase.com/m/06h88"> <span property="name">René Magritte</span> </a> </span> </li> <li>Dimensions: <span property="width" typeof="Distance">940 mm</span> × <span property="height" typeof="Distance">635 mm</span> </li> <li>Materials: <span property="artMedium">oil</span> on <span property="artworkSurface">canvas</span> </li> </ul> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "VisualArtwork", "name": "La trahison des images", "alternateName": "The Treachery of Images", "image": "http://upload.wikimedia.org/wikipedia/en/b/b9/MagrittePipe.jpg", "description": "The painting shows a pipe. Below it, Magritte...", "creator": [ { "@type": "Person", "name": "René Magritte", "sameAs": "https://www.freebase.com/m/06h88" } ], "width": [ { "@type": "Distance", "name": "940 mm" } ], "height": [ { "@type": "Distance", "name": "635 mm" } ], "artMedium": "oil", "artworkSurface": "canvas" } </script>
Jane Doe <img src="janedoe.jpg" alt="Photo of Jane Joe"/> Professor 20341 Whitworth Institute 405 Whitworth Seattle WA 98052 (425) 123-4567 <a href="mailto:jane-doe@xyz.edu">jane-doe@illinois.edu</a> Jane's home page: <a href="http://www.janedoe.com">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html">Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html">Bob Smith</a>
<div itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Jane Doe</span> <img src="janedoe.jpg" itemprop="image" alt="Photo of Jane Joe"/> <span itemprop="jobTitle">Professor</span> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress"> 20341 Whitworth Institute 405 N. Whitworth </span> <span itemprop="addressLocality">Seattle</span>, <span itemprop="addressRegion">WA</span> <span itemprop="postalCode">98052</span> </div> <span itemprop="telephone">(425) 123-4567</span> <a href="mailto:jane-doe@xyz.edu" itemprop="email"> jane-doe@xyz.edu</a> Jane's home page: <a href="http://www.janedoe.com" itemprop="url">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleague"> Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleague"> Bob Smith</a> </div>
<div vocab="http://schema.org/" typeof="Person"> <span property="name">Jane Doe</span> <img src="janedoe.jpg" property="image" alt="Photo of Jane Joe"/> <span property="jobTitle">Professor</span> <div property="address" typeof="PostalAddress"> <span property="streetAddress"> 20341 Whitworth Institute 405 N. Whitworth </span> <span property="addressLocality">Seattle</span>, <span property="addressRegion">WA</span> <span property="postalCode">98052</span> </div> <span property="telephone">(425) 123-4567</span> <a href="mailto:jane-doe@xyz.edu" property="email"> jane-doe@xyz.edu</a> Jane's home page: <a href="http://www.janedoe.com" property="url">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html" property="colleague"> Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html" property="colleague"> Bob Smith</a> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Person", "address": { "@type": "PostalAddress", "addressLocality": "Seattle", "addressRegion": "WA", "postalCode": "98052", "streetAddress": "20341 Whitworth Institute 405 N. Whitworth" }, "colleague": [ "http://www.xyz.edu/students/alicejones.html", "http://www.xyz.edu/students/bobsmith.html" ], "email": "mailto:jane-doe@xyz.edu", "image": "janedoe.jpg", "jobTitle": "Professor", "name": "Jane Doe", "telephone": "(425) 123-4567", "url": "http://www.janedoe.com" } </script>
<div> <h2>Shostakovich Leningrad</h2> <div> <div>May<span>23</span></div> <div>8:00 PM</div> <div> <strong>Britten, Shostakovich</strong> </div> </div> <div> <p>Jaap van Zweden conducts two World War II-era pieces showcasing the glorious sound of the CSO.</p> </div> <div> <h3>Program</h3> <ul> <li> <link href="http://en.wikipedia.org/wiki/Peter_Grimes" /> <span><strong>Britten</strong> Four Sea Interludes and Passacaglia from <em>Peter Grimes</em></span> </li> <li> <link href="http://en.wikipedia.org/wiki/Symphony_No._7_(Shostakovich)" /> <span><strong>Shostakovich</strong> Symphony No. 7 <em>(Leningrad)</em></span> </li> </ul> </div> <div> <h3>Performers</h3> <div> <img src="/examples/cso_c_logo_s.jpg" alt="Chicago Symphony Orchestra" /> <link href="http://cso.org/" /> <link href="http://en.wikipedia.org/wiki/Chicago_Symphony_Orchestra" /> <div> <a href="examples/Performer?id=4434">Chicago Symphony Orchestra</a> </div> </div> <div> <link href="http://www.jaapvanzweden.com/" /> <img src="/examples/jvanzweden_s.jpg" alt="Jaap van Zweden"/> <div> <a href="/examples/Performer.aspx?id=11324">Jaap van Zweden</a> </div> <div>conductor</div> </div> </div> </div>
<div itemscope="" itemtype="http://schema.org/MusicEvent"> <div itemprop="location" itemscope="" itemtype="http://schema.org/MusicVenue"> <meta itemprop="name" content="Chicago Symphony Center"/> <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Symphony_Center"/> <meta itemprop="address" content="220 S. Michigan Ave, Chicago, Illinois, USA"/> </div> <div itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <link itemprop="url" href="/examples/ticket/12341234" /> <meta itemprop="price" content="40"/> <meta itemprop="priceCurrency" content="USD" /> <link itemprop="availability" href="http://schema.org/InStock"/> </div> <h2 itemprop="name">Shostakovich Leningrad</h2> <div> <div itemprop="startDate" content="2014-05-23T20:00">May<span>23</span></div> <div>8:00 PM</div> <div> <strong>Britten, Shostakovich</strong> </div> </div> <div> <p>Jaap van Zweden conducts two World War II-era pieces showcasing the glorious sound of the CSO.</p> </div> <div> <h3>Program</h3> <ul> <li itemprop="workPerformed" itemscope="" itemtype="http://schema.org/CreativeWork"> <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Peter_Grimes" /> <span itemprop="name"><strong>Britten</strong> Four Sea Interludes and Passacaglia from <em itemprop="name">Peter Grimes</em></span> </li> <li itemprop="workPerformed" itemscope="" itemtype="http://schema.org/CreativeWork"> <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Symphony_No._7_(Shostakovich)" /> <span itemprop="name"><strong>Shostakovich</strong> Symphony No. 7 <em>(Leningrad)</em></span> </li> </ul> </div> <div> <h3>Performers</h3> <div itemprop="performer" itemscope="" itemtype="http://schema.org/MusicGroup"> <img src="/examples/cso_c_logo_s.jpg" alt="Chicago Symphony Orchestra" /> <link itemprop="sameAs" href="http://cso.org/" /> <link itemprop="sameAs" href="http://en.wikipedia.org/wiki/Chicago_Symphony_Orchestra" /> <div> <a href="examples/Performer?id=4434"><span itemprop="name">Chicago Symphony Orchestra</span></a> </div> </div> <div itemprop="performer" itemscope="" itemtype="http://schema.org/Person"> <link itemprop="sameAs" href="http://www.jaapvanzweden.com/" /> <img itemprop="image" src="/examples/jvanzweden_s.jpg" alt="Jaap van Zweden"/> <div> <a href="/examples/Performer.aspx?id=11324"><span itemprop="name">Jaap van Zweden</span></a> </div> <div>conductor</div> </div> </div> </div>
<div vocab="http://schema.org/" typeof="MusicEvent"> <div property="location" typeof="MusicVenue"> <meta property="name" content="Chicago Symphony Center"/> <link property="sameAs" href="http://en.wikipedia.org/wiki/Symphony_Center"/> <meta property="address" content="220 S. Michigan Ave, Chicago, Illinois, USA"/> </div> <div property="offers" typeof="Offer"> <link property="url" href="/examples/ticket/12341234"/> <meta property="priceCurrency" content="USD" />$ <meta property="price" content="40"/>40.00 <link property="availability" href="http://schema.org/InStock"/> </div> <h2 property="name">Shostakovich Leningrad</h2> <div> <div property="startDate" content="2014-05-23T20:00">May<span>23</span></div> <div>8:00 PM</div> <div> <strong>Britten, Shostakovich</strong> </div> </div> <div> <p>Jaap van Zweden conducts two World War II-era pieces showcasing the glorious sound of the CSO.</p> </div> <div> <h3>Program</h3> <ul> <li property="workPerformed" typeof="CreativeWork"> <link href="http://en.wikipedia.org/wiki/Peter_Grimes" property="sameAs"/> <span property="name"><strong>Britten</strong> Four Sea Interludes and Passacaglia from <em property="name">Peter Grimes</em></span> </li> <li property="workPerformed" typeof="CreativeWork"> <link href="http://en.wikipedia.org/wiki/Symphony_No._7_(Shostakovich)" property="sameAs"/> <span property="name"><strong>Shostakovich</strong> Symphony No. 7 <em>(Leningrad)</em></span> </li> </ul> </div> <div> <h3>Performers</h3> <div property="performer" typeof="MusicGroup"> <img src="/examples/cso_c_logo_s.jpg" alt="Chicago Symphony Orchestra"/> <link href="http://cso.org/" property="sameAs"/> <link href="http://en.wikipedia.org/wiki/Chicago_Symphony_Orchestra" property="sameAs"/> <a property="name" href="examples/Performer?id=4434">Chicago Symphony Orchestra</a> </div> <div property="performer" typeof="Person"> <link href="http://www.jaapvanzweden.com/" property="sameAs"/> <img src="/examples/jvanzweden_s.jpg" alt="Jaap van Zweden" property="image"/> <a property="name" href="/examples/Performer.aspx?id=11324">Jaap van Zweden</a> <div>conductor</div> </div> </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "MusicEvent", "location": { "@type": "MusicVenue", "name": "Chicago Symphony Center", "address": "220 S. Michigan Ave, Chicago, Illinois, USA" }, "name": "Shostakovich Leningrad", "offers": { "@type": "Offer", "url": "/examples/ticket/12341234", "price": "40", "priceCurrency": "USD", "availability": "http://schema.org/InStock" }, "performer": [ { "@type": "MusicGroup", "name": "Chicago Symphony Orchestra", "sameAs": [ "http://cso.org/", "http://en.wikipedia.org/wiki/Chicago_Symphony_Orchestra" ] }, { "@type": "Person", "image": "/examples/jvanzweden_s.jpg", "name": "Jaap van Zweden", "sameAs": "http://www.jaapvanzweden.com/" } ], "startDate": "2014-05-23T20:00", "workPerformed": [ { "@type": "CreativeWork", "name": "Britten Four Sea Interludes and Passacaglia from Peter Grimes", "sameAs": "http://en.wikipedia.org/wiki/Peter_Grimes" }, { "@type": "CreativeWork", "name": "Shostakovich Symphony No. 7 (Leningrad)", "sameAs": "http://en.wikipedia.org/wiki/Symphony_No._7_(Shostakovich)" } ] } </script>
A JSON example of an OrganizationRole, showing information about a 'member' of a 'SportsTeam', including time qualfiers (when he began and ended that role).
<div itemscope itemtype="http://schema.org/SportsTeam"> <span itemprop="name">San Francisco 49ers</span> <div itemprop="member" itemscope itemtype="http://schema.org/OrganizationRole"> <div itemprop="member" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Joe Montana</span> </div> <span itemprop="startDate">1979</span> <span itemprop="endDate">1992</span> <span itemprop="roleName">Quarterback</span> </div>
<div vocab="http://schema.org/" typeof="SportsTeam"> <span property="name">San Francisco 49ers</span> <div property="member" typeof="OrganizationRole"> <div property="member" typeof="http://schema.org/Person"> <span property="name">Joe Montana</span> </div> <span property="startDate">1979</span> <span property="endDate">1992</span> <span property="roleName">Quarterback</span> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "SportsTeam", "name": "San Francisco 49ers", "member": { "@type": "OrganizationRole", "member": { "@type": "Person", "name": "Joe Montana" }, "startDate": "1979", "endDate": "1992", "roleName": "Quarterback" } } </script>
George Bush, the 41st President of the United States is the father of George W. Bush, the 43rd President of the United States.
<div itemscope itemtype="http://schema.org/Person"> <span itemprop="name">George Bush</span>, the <span itemprop="disambiguatingDescription">41st President of the United States</span> is the father of <div itemprop="children" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">George W. Bush</span>, the <span itemprop="disambiguatingDescription">43rd President of the United States</span>. </div> </div>
<div vocab="http://schema.org/" typeof="Person"> <span property="name">George Bush</span>, the <span property="disambiguatingDescription">41st President of the United States</span> is the father of <div property="children" typeof="Person"> <span property="name">George W. Bush</span>, the <span property="disambiguatingDescription">43rd President of the United States</span>. </div> </div>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Person", "name": "George Bush", "disambiguatingDescription": "41st President of the United States", "children": { "@type": "Person", "name": "George W. Bush", "disambiguatingDescription": "43rd President of the United States" } } </script>
Schema Version 3.1