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

contentLocation

A Schema.org Property
The location depicted or described in the content. For example, the location in a photograph or painting.

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. <div>
  2. The Church at Auvers by Vincent van Gogh depicts a church in Auvers-sur-Oise, but was created in Saint-Rémy-de-Provence.
  3. </div>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Painting">
  2. <img itemprop="image" src="https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg" />
  3. <meta itemprop="sameAs" content="https://en.wikipedia.org/wiki/The_Church_at_Auvers" />
  4. <span itemprop="name">The Church at Auvers</span>
  5. by <div itemprop="creator" itemscope itemtype="https://schema.org/Person">
  6. <span itemprop="name">Vincent van Gogh</span>
  7. </div>,
  8. depicts a church in <div itemprop="contentLocation" itemscope itemtype="https://schema.org/AdministrativeArea">
  9. <span itemprop="name">Auvers-sur-Oise</span>,
  10. </div>
  11. but was created in <div itemprop="locationCreated" itemscope itemtype="https://schema.org/AdministrativeArea">
  12. <span itemprop="name">Saint-Rémy-de-Provence</span>.
  13. </div>
  14. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Painting">
  2. <img property="image" src="https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg" />
  3. <meta property="sameAs" content="https://en.wikipedia.org/wiki/The_Church_at_Auvers" />
  4. <span property="name">The Church at Auvers</span>
  5. by <div property="creator" typeof="Person">
  6. <span property="name">Vincent van Gogh</span>
  7. </div>,
  8. depicts a church in <div property="contentLocation" typeof="AdministrativeArea">
  9. <span property="name">Auvers-sur-Oise</span>,
  10. </div>
  11. but was created in <div property="locationCreated" typeof="AdministrativeArea">
  12. <span property="name">Saint-Rémy-de-Provence</span>.
  13. </div>
  14. </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 Church at Auvers",
  6.   "image": "https://upload.wikimedia.org/wikipedia/commons/a/ad/Vincent_van_Gogh_-_The_Church_in_Auvers-sur-Oise%2C_View_from_the_Chevet_-_Google_Art_Project.jpg",
  7.   "sameAs": "https://en.wikipedia.org/wiki/The_Church_at_Auvers",
  8.   "creator": {
  9.     "@type": "Person",
  10.     "name": "Vincent van Gogh"
  11.   },
  12.   "contentLocation": {
  13.     "@type": "AdministrativeArea",
  14.     "name": "Auvers-sur-Oise"
  15.   },
  16.   "locationCreated": {
  17.     "@type": "AdministrativeArea",
  18.     "name": "Saint-Rémy-de-Provence"
  19.   }
  20. }
  21. </script>
Structured representation of the JSON-LD example.