I need to define relations between classes in my ontology in OWL syntax. what should i do?
|
|
First, note that there are two XML syntaxes (in addition to several other non-XML syntaxes) that you can use to write OWL. Your snippet is in RDF/XML syntax. The other syntax is OWL/XML. The OWL Primer has examples of both syntaxes. Your snippet says:
The first two things make sense, but the last one doesn't really. I guess what you really want to say is:
Looking at the examples in the OWL Primer should give you a decent idea how to write these things down. But also note that writing the RDF/XML syntax by hand is tedious and error-prone. You probably want to use an OWL editor like TopBraid Composer, or a programming library like OWL-API, to create your OWL files. If you really want to write them by hand, I recommend using Turtle syntax (again, the Primer has examples), because it's much more readable, and gives you a head start towards learning SPARQL, the query language for OWL and RDF. |
|||
|
|
I agree with cygri that relating
You may still want to define properties that connect two classes directly. For instance:
To do this in OWL, you can define an
Or you can use "punning", that is, use a class as an instance, e.g.:
Note that in OWL DL, all instances must be explicitly typed. Here, |
|||
|
|