(IEMSR Documentation)


Home Background Dissemination Contacts
Phase 1 Phase 2 Phase 3 Phase 4
Tanenbaum Quote

Introduction to the IEMSR API

A brief introduction to the workings of the IEMSR SPARQL endpoint (API) is available at the introductory pages.

Several example SPARQL queries and transformations are collected here.

Please be aware that the SPARQL API has changed somewhat between the early days of the IEMSR project and the version presently in use today. As a result, some of these examples may require updating to operate on the newer installations of the IEMSR

Creating an RSS feed of new data from the IEMSR

One important use of a registry is to keep repository managers up to date with the newest developments of the metadata standards that they use.
This can be achieved using a SPARQL query to retrieve XML data, and an XSL stylesheet to transform it to RSS.

Supporting internationalisation via a metadata schema registry

The ability to support multiple languages is an increasingly important one as services move into practical use nationally and internationally. Here, a simple 'live' demo shows how existing data can be reused to provide basic form labels and documentation.

Live demo of internationalisation

The sample query used to support this demo is as follows:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX iemsr: <http://www.ukoln.ac.uk/projects/iemsr/terms/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT $n $title $titleen $description $i
WHERE {
	$n rdfs:label $titleen .
	$n rdfs:label $title .
	$n rdfs:comment $description .
	$n iemsr:isMemberOf <http://purl.org/dc/elements/1.1/> . 
	FILTER langMatches( lang($title), "Fr" ) . 
	FILTER langMatches( lang($titleen), "EN" ) . 
	FILTER langMatches( lang($description), "EN" ) . 

	OPTIONAL { $n rdfs:comment $i. 
		         FILTER langMatches( lang($i), "Fr" ) . }
		 }

Prototyping structures in DC

As many will be aware, the entity-relationship model (specifically, at present, the FRBR structure) has caused a lot of spirited discussion. The IEMSR has a prototype means of handling this - the treatment of structural information as a 'special property type'. A brief demo that pulls structural and property information from the IEMSR has been created to demonstrate this, and can be found at the beta website.