-
Notifications
You must be signed in to change notification settings - Fork 35
Conversion vocabulary
timrdf edited this page Feb 27, 2011
·
14 revisions
namespace: http://purl.org/twc/vocab/conversion/
Debugging query: Which predicates have been used but not defined? (results):
PREFIX conversion: <http://purl.org/twc/vocab/conversion/>
PREFIX ov: <http://open.vocab.org/terms/>
SELECT DISTINCT ?predicate
WHERE {
GRAPH <http://purl.org/twc/vocab/conversion/ConversionProcess> {
[] ov:csvCol [] ; ?predicate [] .
FILTER REGEX(?predicate, "^http://purl.org/twc/vocab/conversion/")
}
OPTIONAL {
GRAPH <http://purl.org/twc/vocab/conversion/> {
?predicate ?p ?o
}
}
FILTER(!BOUND(?o))
}