Turism som länkade data - version 1.1

Metadataprofiler för bo, äta, göra, resa och handla baserad på schema.org, 13 mars 2024

Senaste versionen - svenska:
https://lankadedata.se/spec/tourism/sv/
Senaste versionen - engelska:
https://lankadedata.se/spec/tourism/en/
Denna version:
https://lankadedata.se/spec/tourism/1.1/sv/
Tidigare stabil version:
https://lankadedata.se/spec/tourism/1.0/sv/
Redaktörer:
Alex Akkila Forsberg - MetaSolutions AB
Matthias Palmér - MetaSolutions AB
På uppdrag av:
VisitSweden
Licens:
CC-BY 4.0

Ett exempel ur klassen Boende:


    {
        "@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"
        },
        "schema: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": "Exempel hotell",
        "schema:additionalType": {
          "@id": "http://schema.org/Hotel"
        },
        "schema:starRating": {
          "@type": "schema:Rating",
          "schema:ratingValue": 4
        }
    }