Copyright © 2024 MetaSolutions AB
An example of class Lodging:
{
"@context": {
"schema": "http://schema.org/",
"dcterms": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"visit": "http://data.visitsweden.com/terms/"
},
"schema:geo": {
"@type": "schema:GeoCoordinates",
"schema:latitude": 62.2315,
"schema:longitude": 16.1932
},
"@type": "schema:LodgingBusiness",
"@id": "https://www.example.com/hotel/example-hotel-12345",
"schema:url": {
"@id": "https://www.example.com/hotel/example-hotel-12345"
},
"schema:name": "Example Hotel",
"schema:image": {
"@id": "https://www.example.com/image.jpg",
"@type": "schema:ImageObject",
"schema:name": "Example Hotel"
},
"dcterms:spatial": {
"@id": "http://data.visitsweden.com/region/vasternorrland"
},
"schema:address": {
"@type": "schema:PostalAddress",
"schema:streetAddress": "Example Street 2",
"schema:addressCountry": "Sweden",
"schema:addressLocality": "Example city"
},
"schema:telephone": "+4612345678",
"schema:checkInTime": {
"@type": "xsd:time",
"@value": "15:00"
},
"schema:description": [
{
"@language": "en",
"@value": "Example of descriptive text."
},
{
"@language": "sv",
"@value": "Exempel på beskrivande text."
}
],
"schema:checkOutTime": {
"@type": "xsd:time",
"@value": "11:00"
},
"schema:alternateName": "Example hotell",
"schema:additionalType": {
"@id": "http://schema.org/Hotel"
},
"schema:starRating": {
"@type": "schema:Rating",
"schema:ratingValue": 4
}
}