Place
This page describes the Place type.
This type is derived from https://schema.org/Place, which means that any of this type's properties within schema.org may also be used. Note however the properties on this page must be used in preference if a relevant property is available.
Properties
Required properties
@type
Must always be present and set to "@type": "Place"
name
The name of the Place
Example
"name": "Raynes Park High School"
Required options
While these properties are marked as recommended in the specification, a data publisher must provide as much detail in both address
and geo
for an event as possible.
address
A structured PostalAddress object for the Place.
Example
"address": {
"@type": "PostalAddress",
"streetAddress": "Raynes Park High School, 46A West Barnes Lane",
"addressLocality": "New Malden",
"addressRegion": "London",
"postalCode": "NW5 3DU",
"addressCountry": "GB"
}
geo
The geo coordinates of the Place.
Example
"geo": {
"latitude": 51.4034423828125,
"longitude": -0.2369088977575302,
"@type": "GeoCoordinates"
}
Recommended properties
@id
A unique URI-based identifier for the record.
The primary purpose of the URI format in this context is to provide natural namespacing for the identifier. Hence, the URI itself may not resolve to a valid endpoint, but must use a domain name controlled by the resource owner (the organisation responsible for the OpenActive open data feed).
Example
"@id": "https://id.bookingsystem.example.com/places/12345"
amenityFeature
An array listing the Amenities of the Place.
Example
"amenityFeature": [
{
"name": "Changing Facilities",
"value": true,
"@type": "ChangingFacilities"
},
{
"name": "Showers",
"value": false,
"@type": "Showers"
},
{
"name": "Lockers",
"value": true,
"@type": "Lockers"
},
{
"name": "Towels",
"value": false,
"@type": "Towels"
},
{
"name": "Creche",
"value": false,
"@type": "Creche"
},
{
"name": "Parking",
"value": true,
"@type": "Parking"
}
]
description
A plain text description of the Place, which must not include HTML or other markup.
Example
"description": "Raynes Park High School in London"
image
An image or photo that depicts the place, e.g. a photo taken at a previous event.
Example
"image": [
{
"thumbnail": "http://example.com/static/image/speedball_thumbnail.jpg",
"@type": "ImageObject",
"url": "http://example.com/static/image/speedball_large.jpg"
}
]
openingHoursSpecification
The times the Place is open
telephone
The telephone number for the Place
Example
"telephone": "01253 473934"
url
The website for the Place
Example
"url": "http://www.rphs.org.uk/"
Optional properties
containedInPlace
The place within which this Place exists
Example
"containedInPlace": {
"@type": "Place",
"url": "https://www.everyoneactive.com/centres/Middlesbrough-Sports-Village",
"name": "Middlesbrough Sports Village"
}
containsPlace
A specific identifiable facility (SportsActivityLocation
) or place (Place
) that exist within this place
Example
"containsPlace": [
{
"@type": "SportsActivityLocation",
"@id": "https://api.example.com/places/1402CBP20150217/sports-activity-locations/3",
"url": "https://www.better.org.uk/leisure-centre/manchester/belle-vue-sports-village/facilities",
"name": "Studio",
"description": "We have a great range of Fitness Classes at Belle Vue Leisure Centre including Group Cycle, Zumba, Pilates and much much more.",
"image": [
{
"@type": "ImageObject",
"url": "https://res-1.cloudinary.com/gll/image/upload/c_fit,f_auto,h_169,w_384/v1592158966/production/0065/7/66/PHOTO-2020-06-09-14-25-53_3.jpg"
}
],
"specialOpeningHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"opens": "00:00",
"closes": "00:00",
"validFrom": "2022-01-01",
"validThrough": "2022-12-31"
}
]
}
]
General enquiries e-mail address for the Place.
Example
"email": "info@example.com"
identifier
A local non-URI identifier for the resource
Example
"identifier": "SB1234"
specialOpeningHoursSpecification
Explicitly override general opening hours brought in scope by schema:openingHoursSpecification
.
Beta Extension properties
These properties are defined in the OpenActive Beta Extension. The OpenActive Beta Extension is defined as a convenience to help document properties that are in active testing and review by the community. Publishers should not assume that properties in the beta namespace will either be added to the core specification or be included in the namespace over the long term.
beta:formattedDescription
Sometimes a description is stored with formatting (e.g. href, bold, italics, embedded YouTube videos). This formatting can be useful for data consumers. This property must contain HTML.
beta:placeType
beta:serviceOperator
The organization responsible for the operation of the Place
.
beta:video
A related video object.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution License (CC-BY V4.0), and code samples are licensed under the MIT License, for anyone to access, use and share; using attribution "OpenActive".
Last updated