XooCode(){

LandmarksOrHistoricalBuildings

LandmarksOrHistoricalBuildings is a direct Place subtype for historic landmarks, heritage-listed buildings, battlefields, monuments, and culturally significant structures. It adds no properties of its own.

Most historic landmarks are also tourist destinations; dual-type with TouristAttraction to unlock tourism-specific properties (touristType, availableLanguage). Use sameAs to link to Wikidata, UNESCO, or national heritage registers.

Full example of schema.org/LandmarksOrHistoricalBuildings json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/LandmarksOrHistoricalBuildings
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": ["LandmarksOrHistoricalBuildings", "TouristAttraction"],
  "name": "Dunmore Anthracite Heritage Mine",
  "description": "National Register-listed former anthracite mine preserved as a walk-through heritage site documenting the 1870-1950 coal industry of the Lackawanna Valley.",
  "address": { "@type": "PostalAddress", "streetAddress": "3500 Heritage Way", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-2201",
  "geo": { "@type": "GeoCoordinates", "latitude": 41.4355, "longitude": -75.5922 },
  "openingHours": "We-Su 10:00-16:00",
  "isAccessibleForFree": false,
  "sameAs": "https://www.wikidata.org/wiki/Q107772000",
  "url": "https://xoocode.com/tourism/anthracite-heritage-mine"
}
</script>

Minimal valid version

The smallest markup that still produces a valid LandmarksOrHistoricalBuildings entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.

schema.org/LandmarksOrHistoricalBuildings (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "LandmarksOrHistoricalBuildings",
  "name": "Dunmore Anthracite Heritage Mine",
  "geo": { "@type": "GeoCoordinates", "latitude": 41.4355, "longitude": -75.5922 }
}
</script>

Google rich results this unlocks

LandmarksOrHistoricalBuildings is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). LandmarksOrHistoricalBuildings becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common LandmarksOrHistoricalBuildings mistakes

Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.

  1. 01

    Using Museum for historic buildings

    Wrong
    Museum on a heritage building that is not an active museum
    Right
    LandmarksOrHistoricalBuildings for heritage sites; Museum for active collecting institutions

    A heritage-listed structure open for visits is not the same as a curating museum. The distinction matters for cultural indexers.

About the example data

"The Dunmore Anthracite Heritage Mine", a fictional historic mine preserved as a museum and heritage site.

Comments

Loading comments...

Leave a comment