Place
This page describes the Place type.
Last updated
This page describes the Place type.
Last updated
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.
Property | Expected Type | Description |
---|---|---|
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.
Property | Expected Type | Description |
---|---|---|
Property | Expected Type | Description |
---|---|---|
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.
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".
Property | Expected Type | Description |
---|---|---|
Property | Expected Type | Description |
---|---|---|
@type
Must always be present and set to "@type": "Place"
name
The name of the Place
Example
"name": "Raynes Park High School"
address
PostalAddress
- or -
Text
A structured PostalAddress object for the Place.
Ideally the address should be provided using the PostalAddress structured format. Google Reserve requires https://schema.org/PostalAddress and will not accept plain text addresses.
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"
}
@id
A unique URI-based identifier for the record.
@id
properties are used as identifiers for compatibility with JSON-LD. The value of such a property must always be an absolute URI that provides a stable globally unique identifier for the resource, as described in RFC3986.
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
Array of LocationFeatureSpecification
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
Array of ImageObject
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
Array of 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/"
containedInPlace
Place
- or -
@id
reference
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
Array of Place
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
Text
- or -
PropertyValue
- or -
Array of PropertyValue
- or -
Integer
A local non-URI identifier for the resource
Example
"identifier": "SB1234"
specialOpeningHoursSpecification
Array of OpeningHoursSpecification
Explicitly override general opening hours brought in scope by schema:openingHoursSpecification
.
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
Array of Concept
The type of Place. See https://openactive.io/place-types/.
beta:serviceOperator
The organization responsible for the operation of the Place
.
beta:video
Array of VideoObject
A related video object.