The following introduction into RDF/SPARQL was inspired by an example taken from the book:
We slightly modified some notations to be conform with the notations of KnowWE.
The used markups for the definition of the ontology can be only seen in the EDIT mode of this wiki page. Thus, when you want to understand how the definitions work, please move to the EDIT mode or choose "More/View Page Source".
Photo of James Dean: License CreativeCommons by-sa-2.0 / find the original file here.
We first need to define the namespace, where all elements of the James Dean knowledge base should be located, i.e., jamesDeanMovies.
Then, we define the knowledge base itself, giving it the namespace/package it should use.To connect some RDF instances properly in KnowWE, we first need to define some classes and their properties. The classes can be also defined separately and on different wiki articles.
Classes of the James Dean demo:
Some properties to represent who played in which movie and who directed the movies:We first define some ontology instances in RDF.
Mr. Dean himself:
The directors of the Dean movies: And some actresses of Dean movies:We now connect the instances defined above by using the turtle markup. When the subject and the predicate of two triples is equal, the you can simply separate the differing objects by commas. See, the playedIn relation for instance.
We now try to retrieve some information, that we before represented as triples. Lets see the actresses that played together with James Dean in a movie. We use the NOT IN filter to omitt the appearance of James Dean himself in the result set. When the result set consists of more than one element, the result is displayed as a table.
By now we only have seen the names of the actual instances. In RDF it is also possible to define (language dependent) labels for instances by the property rdfs:label. Please note, that we use general labels for actors and directors, but language dependent labels for the names of movies.