Skip to content

Instantly share code, notes, and snippets.

@portableant
Created March 26, 2014 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save portableant/9788242 to your computer and use it in GitHub Desktop.
Save portableant/9788242 to your computer and use it in GitHub Desktop.
Nomisma sparql
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX nm: <http://nomisma.org/id/>
SELECT *
WHERE {
?type a nm:type_series_item .
?type dcterms:isPartOf <http://nomisma.org/id/rrc>.
?type skos:prefLabel ?label .
?type nm:start_date ?start .
?type nm:end_date ?end .
?type nm:issuer ?issuer .
?type nm:denomination ?denomination .
?type skos:definition ?definition .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment