Advertisement
Guest User

Untitled

a guest
Oct 26th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.52 KB | None | 0 0
  1. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  2. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  3. PREFIX dcterms: <http://purl.org/dc/terms/>
  4. PREFIX sh: <http://www.w3.org/ns/shacl#>
  5. PREFIX nav: <http://cpgu.kbpm.ru/ns/rm/navigation#>
  6. PREFIX rm: <http://cpgu.kbpm.ru/ns/rm/rdf#>
  7. SELECT DISTINCT ?schema ?p ?p2 ?o2 WHERE {
  8.   ?schema rdfs:subClassOf rm:ArtifactType.
  9.   ?schema ?p ?o.
  10.   ?classShape rdf:type sh:NodeShape.
  11.   ?classShape sh:targetClass ?schema.
  12.   ?classShape sh:property ?URI.
  13.   ?URI ?p2 ?o2.
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement