diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2022-09-27 13:39:56 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2022-09-27 14:01:01 +0200 |
commit | d1cb178202ddd5c521fb04a640d09343ab6de283 (patch) | |
tree | d83f12811df80abae85f339b6b9b9a6657f5038c /src/ontologies/nepomuk/90-tracker.ontology | |
parent | 8b6548af734c2f4d040ff3d6aef5bbf75d134d4c (diff) | |
download | tracker-d1cb178202ddd5c521fb04a640d09343ab6de283.tar.gz |
ontologies: Move fts: prefix definition to base ontology
This prefix is used in some of our base SPARQL API (e.g. fts:match
and the misc functions to deal with results), but the prefix is
currently defined in the Nepomuk ontology side.
This makes applications that want to use FTS with custom ontologies
either need to declare the prefix themselves, or help queries with
`PREFIX` syntax to add the missing stock prefix.
Move this prefix definition to the base ontology, so all databases
inherit the builtin fts: prefix and it can be used right away in
FTS queries.
Diffstat (limited to 'src/ontologies/nepomuk/90-tracker.ontology')
-rw-r--r-- | src/ontologies/nepomuk/90-tracker.ontology | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ontologies/nepomuk/90-tracker.ontology b/src/ontologies/nepomuk/90-tracker.ontology index b2ef73883..a9c63c8f5 100644 --- a/src/ontologies/nepomuk/90-tracker.ontology +++ b/src/ontologies/nepomuk/90-tracker.ontology @@ -1,4 +1,3 @@ -@prefix fts: <http://tracker.api.gnome.org/ontology/v3/fts#> . @prefix nao: <http://tracker.api.gnome.org/ontology/v3/nao#> . @prefix nie: <http://tracker.api.gnome.org/ontology/v3/nie#> . @prefix nfo: <http://tracker.api.gnome.org/ontology/v3/nfo#> . @@ -10,7 +9,7 @@ tracker: a nrl:Ontology ; nrl:prefix "tracker" ; - nrl:lastModified "2019-07-15T09:41:00Z" . + nrl:lastModified "2022-09-26T09:41:00Z" . tracker:isDefaultTag a rdf:Property ; rdfs:domain nao:Tag ; @@ -46,9 +45,6 @@ tracker:available a rdf:Property ; rdfs:domain tracker:IndexedFolder ; rdfs:range xsd:boolean . -fts: a nrl:Namespace ; - nrl:prefix "fts" . - tracker:extractor-data-source a nie:DataSource ; rdfs:label "Tracker extractor data source" . |