Note: you are viewing the development version of schema.org. See How we work for more details.

publicAccess

Thing > Property > publicAccess

A flag to signal that the Place is open to public visitors. If this property is omitted there is no assumed default boolean value
Values expected to be one of these types
Boolean
Used on these types
Place
Examples

Example 1
<h1>Leaning Tower of Pisa</h1>
<div>It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</div>
<div>Public access: yes</div>
<div itemscope itemtype="http://schema.org/TouristAttraction">
	<h1><span itemprop="name">Leaning Tower of Pisa</span></h1>
	<div>
		<span itemprop="description">It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</span>
	</div>
	<div>
		<meta itemprop="publicAccess" content="true"/>Public access: yes
	</div>
</div>
<div vocab="http://schema.org/" typeof="TouristAttraction">
	<h1><span property="name">Leaning Tower of Pisa</span></h1>
	<div>
		<span property="description">It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano.</span>
	</div>
	<div>
		<meta property="publicAccess" content="true"/>Public access: yes
	</div>
</div>
<script type="application/ld+json">
{
	"@context": "http://schema.org",
	"@type": "TouristAttraction",
	"name": "Leaning Tower of Pisa",
	"publicAccess": true,
	"description": "It is a twelfth-thirteenth century Romanesque tower started building by Bonanno Pisano."
}
</script>