Skip to content

Instantly share code, notes, and snippets.

@beauvais
Created September 30, 2011 10:00
Show Gist options
  • Save beauvais/1253325 to your computer and use it in GitHub Desktop.
Save beauvais/1253325 to your computer and use it in GitHub Desktop.
SPARQL for Flemish Art
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX gac: <http://data.kasabi.com/dataset/government-art-collection/schema/>
SELECT ?work ?name ?image ?page WHERE {
?subject skos:prefLabel "Flemish School".
?work dct:subject ?subject;
dct:title ?name;
foaf:depiction ?image;
foaf:page ?page.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment