Created
September 30, 2011 10:00
-
-
Save beauvais/1253325 to your computer and use it in GitHub Desktop.
SPARQL for Flemish Art
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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