From 93a1679c6fdf06c2cea6be702a80d6766660bb6e Mon Sep 17 00:00:00 2001 From: Adrian Gschwend Date: Thu, 29 Feb 2024 13:12:47 +0700 Subject: [PATCH] More explicit IRI example in the airport mapping. I oversaw the documentation for IRI in there, I think it would be useful to have that in the base-example. --- documentation/mapping-language.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/mapping-language.md b/documentation/mapping-language.md index fda4e75..6584efc 100644 --- a/documentation/mapping-language.md +++ b/documentation/mapping-language.md @@ -143,6 +143,7 @@ logical-source airport { stop latitude longitude + wikidataIri } ``` @@ -346,6 +347,7 @@ map AirportMapping from airport { transit.route from stop with datatype xsd.integer; wgs84_pos.lat from latitude; wgs84_pos.long from longitude; + schema.sameAs from wikidataIri as IRI; } ```