Is there a way to automatically timestamp the resources in an ontology? E.g. have a property with range xsd:date for all the classes, instances and properties, and have the value of that property automatically updated to today's date for those newly created or updated resources when you do a Save? (We don't need to get down to time, just date.)
Naicong
If you really need that functionality soon then, doing a TopBraid
plug-in in Java would be necessary.
Holger
Please be aware that the required presence of a base URI is TopBraid
specific and not part of the OWL/RDF specification. In this case
TopBraid just enforces a good practice, namely that the base URI and
ontology URI of an ontology should be the same.
-Rinke
Hi,
I have a small test ontology containing 3 classes:
Person, with instances Person_1, Person_2
Role, with subclasses Role_1, Role_2
Workflow, with instances Workflow_1, Workflow_2
Also 2 properties:
hasRole, domain = Person, range = Role
hasParticipant, domain = Workflow, range = Person
I want to say something like this:
Workflow1 has participant Person_1, who plays the role Role_1
Note that I don’t want to define the roles on Person_1, because Person_1 may play different roles in different Workflows.
I don't see a way of entering what I wanted inside the Composer, so I edited the source code outside of the Composer for Workflow_1:
<Workflow rdf:ID="Workflow_1">
<hasParticipant>
<Person_1>
<hasRole rdf:resource="#Role_1"/>
</Person_1>
</hasParticipant>
</Workflow>
When I come back in the composer, I see this for Workflow_1:

And when I expand the (internally generated) instance ID for hasParticipant I see this:

It is as if the Composer created an instance of the instance Person_1, and associated Role_1 with it. I suppose this is a way of recording a pair consisting a participant and a role (which is what I wanted)? Is this how the Composer expected to behave? If not, how should I do what I need to do in the Composer, without having to edit the source code externally?
Thanks in advance for your help.
Naicong
From time-to-time, some of the questions on this list are not TBC
specific but are more of a general OWL/RDF modeling nature. I know I've
posted several and would like to post several more :)
That said, what forums are available for modeling discussions? Most
forums that I am aware of are tool specific.
Any TBC users know of good forums to discuss modeling issues?
Thanks,
Tim