| 1 | = UseCaseCreatingOwnRelations = |
| 2 | |
| 3 | (back to UseCases) |
| 4 | |
| 5 | implemented in WikitologyGui |
| 6 | |
| 7 | = Prerequisite = |
| 8 | |
| 9 | Paul wants to create his own Relations to have a more precise semantic. |
| 10 | In his PIMO he has the two Things paul:peter and paul:InvestorMeetingRome |
| 11 | |
| 12 | = Result = |
| 13 | |
| 14 | A new relation called "attends" and a lot of triples in the system: |
| 15 | |
| 16 | * __paul:attends__ __rdf:type__ __rdf:Property__ |
| 17 | * __paul:attends__ __rdfs:subPropertyOf__ __pimo:related__ |
| 18 | * __paul:attends__ __rdfs:label__ __"attends"__ |
| 19 | * and some more for the inverse property |
| 20 | |
| 21 | With these new relations he can now express more precisely that "peter attends the meeting" and not only the "peter is related to the meeting" |
| 22 | |
| 23 | = Trigger = |
| 24 | |
| 25 | * Paul browses in his gnowsis to the Thing '''paul:OfficeRome''' |
| 26 | * he clicks the button "new relation" |
| 27 | |
| 28 | = Procedure = |
| 29 | * a popup window opens after clicking the button "new relation" |
| 30 | * in this window Paul has to say define a name for the new relation __and__ a name for the inverse relations |
| 31 | * And Paul has to decide if his new relations are subProperties of either pimo:related, pimo:PartOf or pimo:hasTopic |
| 32 | * After clicking create Button in this popup the system creates the triples mentioned above |
| 33 | |
| 34 | = Alternatives = |