This page (revision-24) was last changed on 10-Feb-2017 10:50 by Albrecht Striffler

This page was created on 25-Oct-2013 10:38 by Jochen Reutelshöfer

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
24 10-Feb-2017 10:50 2 KB Albrecht Striffler to previous
23 10-Feb-2017 10:49 2 KB Albrecht Striffler to previous | to last
22 21-May-2014 16:03 2 KB Joba Baumeister to previous | to last
21 21-May-2014 16:00 2 KB Joba Baumeister to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 changed one line
!!! Creating an Ontology
[{TableOfContents }]
At line 3 removed one line
An ontology is created in a similar way as a d3web knowledge base using the ''knowledgebase'' markup.
At line 5 changed 2 lines
{{{
%%knowledgebase
!!! Definition
At line 6 added 5 lines
An ontology is created in a similar way as a d3web knowledge base using the ''ontology'' markup.
{{{
%%Ontology
@uses: myPackageName
At line 11 changed one line
A more detailed description of this markup can be found on the page [Doc KnowledgeFormalization].
For the name {{myPackageName}} please use the name of the [package|Doc Package] that you used for the ontology definitions.
At line 16 added one line
At line 21 removed one line
! Example
At line 26 added 4 lines
!!! Example
The following example defines the package name {{myPackageName}} and creates a new ontology using this package.
At line 24 changed one line
%%class Person
%%Ontology
@uses: myPackageName
%
At line 26 changed one line
%%Individual Ms. Moneypenny
%%Package myPackageName
At line 28 changed one line
%%relation "Ms. Moneypenny" rdf:type Person
%%Turtle
:System rdf:type owl:Class .
:KnowWE rdf:type :System ;
rdfs:label "KnowWE Wiki" .
%
At line 31 changed one line
For the third markup line (relation markup), three ontology entities are used. The first (''Ms. Moneypenny'') and third (''Person'') are from the local namespace and therefor the namespace prefix is omitted. The second part is from the predefined rdf vocabulary, therefor the rdf-namespace is used as a prefix by a colon.
On the same page, the [Turtle|Doc Turtle] markup is used to define an owl:Class {{System}} (in the local namespace) and an instance of {{System}} with the name {{KnowWE}}. Additionally, the label "KnowWE Wiki" is defined.
At line 47 added 17 lines
!!!Importing existing ontologies into a KnowWE ontology
By attaching an ontology-file to this page (containing the ontology in any standard ontology format) an ontology can be imported into the KnowWE ontology repository as follows:
{{{
%%Ontology
@import: movie-ontology.owl
%
}}}
__Note:__ For this example a file named ''movie-ontology.owl'' needs to be attached to ''this'' page!
!!! See Also
At line 66 added one line
* [Turtle| Doc Turtle]
At line 39 removed one line
* [Turtle| Doc Turtle]
At line 41 removed one line
At line 44 removed one line