Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.53 KB | None | 0 0
  1. PREFIX dbo: <http://dbpedia.org/ontology/>
  2. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  3. PREFIX owl: <http://www.w3.org/2002/07/owl#>
  4. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  5. PREFIX schema: <http://schema.org/>
  6.  
  7. SELECT ?subject ?label ?sameAs WHERE { 
  8.     SERVICE <http://dbpedia.org/sparql> {
  9.           ?subject rdf:type dbo:Museum .
  10.           ?subject owl:sameAs ?sameAs .
  11.           ?sameAs schema:description ?label .
  12.           FILTER (REGEX(STR(?sameAs), "wikidata.org", "i") && LANGMATCHES(LANG(?label), "EN"))
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement