-
Notifications
You must be signed in to change notification settings - Fork 35
Namespace prefix handling
timrdf edited this page Feb 11, 2011
·
22 revisions
:term_Mapping_2
owl:annotatedTarget <http://knoesis.wright.edu/provenir/provenir.owl#process> ;
add:
@prefix provenir: <http://knoesis.wright.edu/provenir/provenir.owl#> .
result:
:term_Mapping_2
owl:annotatedTarget provenir:process ;
done, but fill out an example.
See Aggregating subsets of converted datasets for more queries against aggregated datasets.
PREFIX vann: <http://purl.org/vocab/vann/>
PREFIX conversion: <http://purl.org/twc/vocab/conversion/>
SELECT distinct ?namespace ?prefix
WHERE {
GRAPH <http://logd.tw.rpi.edu/vocab/Dataset> {
[] vann:preferredNamespacePrefix ?prefix;
vann:preferredNamespaceUri ?namespace
}
} order by ?namespace ?prefix