You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is rendered as the CURIE OTKG:(wikidata), i.e. the field (wikidata) is interpreted as a URL relative to @base.
This makes sense for templated URLs like <researchProject/(acronym)> because the start it not a URL scheme like http:.
But for a URL that consists of a field alone, it's reasonable to assume that will be an absolute URL.
It's the RDF parser that decides that (wikidata) is a relative URL. How to fool it into not using @base?
I could fake it as https://(wikidata) but that's ugly as hell: how could I know that's the right URL scheme?
If I fake it as /(wikidata), that would use the host from @base, and <https://ontotext.com/(wikidata)> is even worse.
I think it's the safest to EXCLUDE the @prefix that is equal to @base.
(The reason I used it is because GraphDB remembers prefixes as namespaces, but does not remember base.
So OTKG: is used to shorten URLs when displaying resources.)
TODO: document in rdfpuml page
The text was updated successfully, but these errors were encountered:
This is rendered as the CURIE
OTKG:(wikidata)
, i.e. the field(wikidata)
is interpreted as a URL relative to@base
.This makes sense for templated URLs like
<researchProject/(acronym)>
because the start it not a URL scheme likehttp:
.But for a URL that consists of a field alone, it's reasonable to assume that will be an absolute URL.
It's the RDF parser that decides that
(wikidata)
is a relative URL. How to fool it into not using@base
?https://(wikidata)
but that's ugly as hell: how could I know that's the right URL scheme?/(wikidata)
, that would use the host from@base
, and<https://ontotext.com/(wikidata)>
is even worse.I think it's the safest to EXCLUDE the
@prefix
that is equal to@base
.(The reason I used it is because GraphDB remembers prefixes as namespaces, but does not remember base.
So
OTKG:
is used to shorten URLs when displaying resources.)TODO: document in rdfpuml page
The text was updated successfully, but these errors were encountered: