I'm currently learning how to use linked data and specifically how to deal with ontologies and with semantic data. To do this I'm diving into OWL and I'm trying to model a simple work environment. For the problem I have the following to parts are of interest
- the Employee class
- the Projects class
- the :worksOn relation between an Employee and a Project
If I now have
Employee1 :worksOn Project1
Employee2 :worksOn Project1
is there any way to model a property :worksWith, such that in this example case Employee1 :worksWith Employee2
could be derived without explicitly stating it? So basically I want to know if it is possible to define a relation via another relation?