I'm attempting to add a schema for an Accommodation
, but I can't seem to find a way to reference the 'offer' or 'price' to this schema. Im using JSON-LD to format this schema.
I have also tried room/hotelRoom as an alternative. I also tried using the additionalType
value to allow me to use product based options such as offers
, but this didn't work.
JSON-LD:
{
"@context": "http://schema.org",
"@type": "Accommodation",
"additionalType": "Product",
"name": "example",
"offers": {
"@type": "Offer",
"name": "1 Night",
"priceSpecification": {
"@type": "PriceSpecification",
"price": 1,
"minPrice": 1,
"maxPrice": 2,
"priceCurrency": "GBP"
}
}
}
Google Structured Data Testing Tool:
The property
offers
is not recognized by Google for an object of typeAccommodation
.
How am I meant to add a price to a specific accommodation/room in my schema?
Schema.org intends¹ that authors use MTEs² in this case. That, however, does of course not necessarily mean that all consumers fully support this (yet).
So instead of:
you would use:
(
additionalType": "Product",
is not needed anymore, so could be removed)While Google’s Structured Data Testing Tool only displays one type (seems to be always the first value in the array), it reports no errors when using this.
¹ The accommodation documentation does not yet reflect this (the changes are currently part of the draft for the next version), and the topic gets discussed here:
² MTE: Multi-Typed Entity.