Help:Adding External Ontologies

From Biowikifarm Metawiki
Revision as of 19:44, 24 April 2010 by LiaVeja (Talk | contribs) (Use cases)

Jump to: navigation, search
Help sections
Contents · Semantic MediaWiki · Semantic Forms
Add Ontology · Semantic links and import/export features · Import external vocabulary
Other SemanticMW extensions · Other extensions



Reusing Ontology in Semantic Media Wiki

The way in which Semantic MediaWiki represents knowledge was partially inspired by Web Ontology Language(OWL DL) and one can naturally relate the elements of the wiki, i.e. the individual content pages, to the basic vocabulary of OWL. Complex features of OWL are not used in Semantic MediaWiki and it make use of some characteristic OWL features such as equality reasoning and transitive roles. Dividing OWL DL ontological elements into instances that represent individual elements of the described domain, classes that represent sets of individuals, and roles which represent binary relations between individuals. Semantic MediaWiki can naturally relate the elements of the wiki to the basic vocabulary of OWL, i.e.:

  • OWL individuals are represented by normal article pages which usually belongs to Main namespace. But several additional namespaces, such as Image or User, also could be interpreted as individuals.
  • OWL classes in turn have counterparts in the wiki in form of MediaWiki categories in the Category namespace. These can be organized in a hierarchical, so one category could contain other categories.
  • OWL properties, (roles in description logic), do not have a natural counterpart in MediaWiki, and were introduced by the Semantic MediaWiki extension. The object-properties (describing relationships between two individuals from OWL DL) from data-properties (associating individuals with values of a given datatype). Both are represented by pages in Property namespace in Semantic MediaWiki (properties and attributes are unified now in SMW).

The export function that generates OWL/RDF documents associates URIs with all wiki pages. This very simple schema information allows also the main functionality of wiki, that is mainly used to provide concrete descriptions of individuals and their relationship (ABox in description logics). Employing an OWL external ontology in combination with OWL wiki content depends on the type of entity that one considers, this is achieved with owl:sameAs, owl:equivalentClass, and owl:equivalentProperty. Usually the only problem in doing so is the mapping between elements of the two ontologies. OWL provides us with expressive means to describe that two different URIs represent the same entity (with respect to its extensional inter- pretation).

article pages            owl:sameAs URI             [[equivalent URI:=URI]] 
on category pages        owl:equivalentClass URI    [[equivalent URI:=URI]]
on property pages        owl:equivalentProperty URI [[equivalent URI:=URI]] 

Use cases

  • Inserting in any article page of [[Equivalent URI::http://biowikifarm.net/meta/]] will be translated in RDF export as:
....
<owl:sameAs rdf:resource="http://biowikifarm.net/meta/"/>
....
  • For property page, Test Equivalent property contains:
This is a property of type [[Has type::URI]].
Having
[[Equivalent URI::http://biowikifarm.net/meta/]]

The RDF export represents this equivalence as:

<owl:ObjectProperty rdf:about="http://biowikifarm.net/test/Special:URIResolver/Property-3ATest_Equivalent">
 <rdfs:label>Test Equivalent</rdfs:label>
 <swivt:page rdf:resource="http://biowikifarm.net/test/Property:Test_Equivalent"/>
 <rdfs:isDefinedBy rdf:resource="http://biowikifarm.net/test/Special:ExportRDF/Property:Test_Equivalent"/>
 <owl:equivalentProperty rdf:resource="http://biowikifarm.net/meta/"/>
</owl:ObjectProperty>
  • For classes, for example, we defined Category:TestCategory as sub-category of Category:Metadata Sources.

The page for Category:TestCategory looks like:

This category uses the form [[Has default form::TestForm]].
Define equivalence with Foaf vocabulary here:
  http://xmlns.com/foaf/spec/#term_Person
[[Category:Metadata Sources]]

In RDF export, Category:TestCategory page will be represented as:

<owl:Class rdf:about="http://biowikifarm.net/test/Special:URIResolver/Category-3ATestCategory">
  <rdfs:label>TestCategory</rdfs:label>
  <swivt:page rdf:resource="http://biowikifarm.net/test/Category:TestCategory"/>
  <rdfs:isDefinedBy rdf:resource="http://biowikifarm.net/test/Special:ExportRDF/Category:TestCategory"/>
  <owl:equivalentClass rdf:resource="http://xmlns.com/foaf/spec/#term_Person"/>
  <rdfs:subClassOf rdf:resource="http://biowikifarm.net/test/Special:URIResolver/Category-3AMetadata_Sources"/>
</owl:Class>

Note: Take care to the equivalent URI property use because one of them could lead to a meaningless specification. For example, one could assign the same URI to both a class and an individual, or one could even assign the URIs of language constructs such as rdf:type to wiki elements.