| 1 | ##############################################################################################################
|
|---|
| 2 | # THIS IS CLAUDIA's PIMO-USER
|
|---|
| 3 | # The master copy is https://svn.nepomuk.semanticdesktop.org/repos/trunk/testdata/claudia_stern/rdf/claudia.n3
|
|---|
| 4 | # Any changes must be done there
|
|---|
| 5 | #
|
|---|
| 6 | # THIS FILE IS PREPARED TO THE STATE "BEFORE THE DEMO"
|
|---|
| 7 | # for the 2008 nepomuk demo. the rest is in claudia_full.n3
|
|---|
| 8 | # things commented out for the demo are identified by #!
|
|---|
| 9 | #
|
|---|
| 10 | ##############################################################################################################
|
|---|
| 11 | #
|
|---|
| 12 | # Claudias things as described in the scenarios on the NEPOMUK wiki
|
|---|
| 13 | # http://nepomuk.semanticdesktop.org/xwiki/bin/view/Main/Claudia
|
|---|
| 14 |
|
|---|
| 15 | # defining claudias namespace
|
|---|
| 16 | @prefix claudia: <http://www.sap.com/people/claudia#>.
|
|---|
| 17 | # standard namespaces
|
|---|
| 18 | @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
|---|
| 19 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
|
|---|
| 20 | @prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#>.
|
|---|
| 21 | @prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#>.
|
|---|
| 22 | @prefix pimo: <http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#>.
|
|---|
| 23 | @prefix ncal: <http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#>.
|
|---|
| 24 | @prefix nco: <http://www.semanticdesktop.org/ontologies/2007/03/22/nco#>.
|
|---|
| 25 | @prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#>.
|
|---|
| 26 | @prefix nie: <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#>.
|
|---|
| 27 | @prefix nmo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#>.
|
|---|
| 28 | @prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>.
|
|---|
| 29 | @prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
|
|---|
| 30 |
|
|---|
| 31 | claudia:Claudia a pimo:Person;
|
|---|
| 32 | pimo:createdPimo claudia:PIMO;
|
|---|
| 33 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 34 | pimo:isRelated claudia:CID;
|
|---|
| 35 | #! pimo:partOf claudia:InitialMeetinginBelfast;
|
|---|
| 36 | nao:personalIdentifier "Claudia";
|
|---|
| 37 | nco:hasEmailAddress <mailto:claudi-1@csc.kth.se>;
|
|---|
| 38 | rdfs:label "Claudia";
|
|---|
| 39 | nao:modified "2008-01-17T13:48:02"^^xsd:dateTime ;
|
|---|
| 40 | nao:lastModified "2008-01-17T13:48:02"^^xsd:dateTime ;
|
|---|
| 41 | nao:created "2008-01-17T13:48:02"^^xsd:dateTime.
|
|---|
| 42 |
|
|---|
| 43 | claudia:PIMO a pimo:PersonalInformationModel;
|
|---|
| 44 | pimo:creator claudia:Claudia;
|
|---|
| 45 | nao:creator claudia:Claudia;
|
|---|
| 46 | nao:hasDefaultNamespace "http://www.sap.com/people/claudia#";
|
|---|
| 47 | nao:hasDefaultNamespaceAbbreviation "claudia";
|
|---|
| 48 | rdfs:label "PIMO" .
|
|---|
| 49 |
|
|---|
| 50 | claudia:BusTimetable a rdfs:Class;
|
|---|
| 51 | rdfs:comment "Bus schedules I need when travelling.";
|
|---|
| 52 | rdfs:label "BusTimetable";
|
|---|
| 53 | rdfs:subClassOf pimo:Document .
|
|---|
| 54 |
|
|---|
| 55 | <file://home/claudia/doc/tripplan.pdf> a nfo:TextDocument;
|
|---|
| 56 | nie:language "en";
|
|---|
| 57 | nie:title "Belfast Bus Timetable";
|
|---|
| 58 | nie:identifier "ISBN:12123-123123";
|
|---|
| 59 | rdfs:comment "An example document having a fictional title and identifier".
|
|---|
| 60 |
|
|---|
| 61 | #! claudia:Belfast a pimo:City;
|
|---|
| 62 | #! pimo:isDefinedBy claudia:PIMO;
|
|---|
| 63 | #! rdfs:label "Belfast";
|
|---|
| 64 | #! nao:personalIdentifier "Belfast";
|
|---|
| 65 | #! pimo:hasOtherRepresentation <http://dbpedia.org/resource/Belfast>;
|
|---|
| 66 | #! pimo:isLocationOf claudia:InitialMeetinginBelfast;
|
|---|
| 67 | #! pimo:isTopicOf <file://home/claudia/documents/projects/CID/ProjectDescription6.doc>;
|
|---|
| 68 | #! pimo:isRelated claudia:BelfastBusTimetable;
|
|---|
| 69 | #! geo:lat "54.5833333";
|
|---|
| 70 | #! geo:long "-5.9333333".
|
|---|
| 71 |
|
|---|
| 72 | claudia:Frankfurt a pimo:City;
|
|---|
| 73 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 74 | rdfs:label "Frankfurt";
|
|---|
| 75 | nao:personalIdentifier "Frankfurt";
|
|---|
| 76 | geo:lat "50.11035";
|
|---|
| 77 | geo:long "8.67185".
|
|---|
| 78 |
|
|---|
| 79 | claudia:Germany a pimo:Country;
|
|---|
| 80 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 81 | nao:personalIdentifier "Germany";
|
|---|
| 82 | rdfs:label "Germany".
|
|---|
| 83 |
|
|---|
| 84 | claudia:UnitedKingdom a pimo:Country;
|
|---|
| 85 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 86 | nao:personalIdentifier "UK";
|
|---|
| 87 | rdfs:label "United Kingdom".
|
|---|
| 88 |
|
|---|
| 89 | claudia:CID a pimo:Project;
|
|---|
| 90 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 91 | nao:personalIdentifier "CID";
|
|---|
| 92 | rdfs:label "CID";
|
|---|
| 93 | pimo:hasOrganizationMember claudia:Claudia;
|
|---|
| 94 | #! pimo:isTopicOf pimo:InitialMeetinginBelfast;
|
|---|
| 95 | pimo:isTopicOf <file://home/claudia/documents/projects/CID/CID%20Task%20Handling.ppt>;
|
|---|
| 96 | pimo:isTopicOf <file://home/claudia/documents/projects/CID/Job%20Offer%20CID%20Training.doc>;
|
|---|
| 97 | pimo:isTopicOf <file://home/claudia/documents/projects/CID/ProjectDescriptionDemo2.doc>;
|
|---|
| 98 | pimo:isTopicOf <file://home/claudia/documents/projects/CID/ProjectDescription6.doc>;
|
|---|
| 99 | pimo:hasContainer <file://home/claudia/documents/projects/CID/>.
|
|---|
| 100 |
|
|---|
| 101 | #!claudia:InitialMeetinginBelfast a pimo:Meeting;
|
|---|
| 102 | #! pimo:isDefinedBy claudia:PIMO;
|
|---|
| 103 | #! rdfs:label "Initial Meeting in Belfast";
|
|---|
| 104 | #! pimo:attendingPerson claudia:Claudia;
|
|---|
| 105 | #! pimo:attendingPerson claudia:KlausPfeifer;
|
|---|
| 106 | #! pimo:attendingPerson claudia:DirkHageman;
|
|---|
| 107 | #! pimo:hasPart claudia:LHL4573-Frankfurt-Belfast;
|
|---|
| 108 | #! pimo:hasPart claudia:LHL4573-Frankfurt-Belfast;
|
|---|
| 109 | #! pimo:hasLocation claudia:Belfast;
|
|---|
| 110 | #! pimo:hasTopic claudia:CID.
|
|---|
| 111 |
|
|---|
| 112 | #!claudia:AttendsInitialMeetinginBelfast a pimo:Attendee;
|
|---|
| 113 | #! pimo:attendingMeeting claudia:InitialMeetinginBelfast;
|
|---|
| 114 | #! pimo:roleHolder claudia:Claudia.
|
|---|
| 115 |
|
|---|
| 116 | #!claudia:BelfastMeetingPackage a pimo:Collection, nao:Tag;
|
|---|
| 117 | #! pimo:isDefinedBy claudia:PIMO;
|
|---|
| 118 | #! rdfs:label "BelfastMeetingPackage";
|
|---|
| 119 | #! nao:prefLabel "BelfastMeetingPackage".
|
|---|
| 120 |
|
|---|
| 121 | claudia:Flight a rdfs:Class;
|
|---|
| 122 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 123 | rdfs:subClassOf pimo:Event;
|
|---|
| 124 | rdfs:label "Flight";
|
|---|
| 125 | nao:created "2008-02-27T11:22:02"^^xsd:dateTime
|
|---|
| 126 | .
|
|---|
| 127 |
|
|---|
| 128 | claudia:LHL4573-Frankfurt-Belfast a claudia:Flight;
|
|---|
| 129 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 130 | #! pimo:partOf claudia:InitialMeetinginBelfast;
|
|---|
| 131 | rdfs:label "LHL 4573 - Frankfurt - Belfast";
|
|---|
| 132 | nao:created "2008-02-27T11:22:02"^^xsd:dateTime
|
|---|
| 133 | .
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 | claudia:LHL7452-Belfast-Frankfurt a claudia:Flight;
|
|---|
| 137 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 138 | #! pimo:partOf claudia:InitialMeetinginBelfast;
|
|---|
| 139 | rdfs:label "LHL 7452 - Belfast - Frankfurt";
|
|---|
| 140 | nao:created "2008-02-27T11:22:02"^^xsd:dateTime
|
|---|
| 141 | .
|
|---|
| 142 |
|
|---|
| 143 |
|
|---|
| 144 | claudia:E-Learning a pimo:Topic;
|
|---|
| 145 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 146 | rdfs:label "E-Learning";
|
|---|
| 147 | nao:personalIdentifier "eLearning";
|
|---|
| 148 | pimo:hasContainer <file://home/claudia/documents/research/E-Learning/>;
|
|---|
| 149 | nao:created "2007-08-10T11:22:02"^^xsd:dateTime
|
|---|
| 150 | .
|
|---|
| 151 |
|
|---|
| 152 | claudia:KnowledgeManagement a pimo:Topic;
|
|---|
| 153 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 154 | rdfs:label "Knowledge Management";
|
|---|
| 155 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/empolis_TopicMaps_Whitepaper20030206.pdf>;
|
|---|
| 156 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/rk_ifla03_for_publ300803.pdf>;
|
|---|
| 157 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/FGWM03_08_Ernst_Biesalski.pdf>;
|
|---|
| 158 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/marwick.pdf>;
|
|---|
| 159 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/CAiSE02Inv.pdf>;
|
|---|
| 160 | pimo:occurrence <file://home/claudia/documents/research/Knowledge%20Management/digital%20media%20knowledge%20management.pdf>;
|
|---|
| 161 | pimo:hasContainer <file://home/claudia/documents/research/Knowledge%20Management>.
|
|---|
| 162 |
|
|---|
| 163 | claudia:DFKI a pimo:Organization;
|
|---|
| 164 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 165 | rdfs:label "DFKI";
|
|---|
| 166 | nao:personalIdentifier "DFKI";
|
|---|
| 167 | pimo:occurrence <http://www.dfki.de/web>.
|
|---|
| 168 |
|
|---|
| 169 | claudia:Ricoh a pimo:Organization;
|
|---|
| 170 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 171 | rdfs:label "DFKI";
|
|---|
| 172 | pimo:occurrence <http://www.ricoh.com/>.
|
|---|
| 173 |
|
|---|
| 174 | claudia:SAP a pimo:Organization;
|
|---|
| 175 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 176 | nao:personalIdentifier "SAP";
|
|---|
| 177 | rdfs:label "SAP";
|
|---|
| 178 | pimo:occurrence <http://www.sap.com/index.epx>.
|
|---|
| 179 |
|
|---|
| 180 | <http://www.buseireann.ie/timetables/belfast.pdf>
|
|---|
| 181 | a nie:TextDocument;
|
|---|
| 182 | nie:title "Belfast Bus Timetable";
|
|---|
| 183 | nie:identifier "ISBN:12123-123123";
|
|---|
| 184 | rdfs:comment "An example document having a fictional title and identifier".
|
|---|
| 185 |
|
|---|
| 186 | claudia:BelfastBusTimetable a claudia:BusTimetable;
|
|---|
| 187 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 188 | pimo:groundingOccurrence <file://home/claudia/doc/tripplan.pdf>;
|
|---|
| 189 | pimo:occurrence <http://www.buseireann.ie/timetables/belfast.pdf>;
|
|---|
| 190 | pimo:isRelated claudia:Belfast;
|
|---|
| 191 | nie:identifier "ISBN:12123-123123";
|
|---|
| 192 | nao:hasTag claudia:BelfastMeetingPackage;
|
|---|
| 193 | rdfs:label "Belfast Buses";
|
|---|
| 194 | rdfs:comment "The thingified timetable, connected via the identifier to the two data objects".
|
|---|
| 195 |
|
|---|
| 196 | claudia:DirkHageman a pimo:Person;
|
|---|
| 197 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 198 | rdfs:label "Dirk Hageman";
|
|---|
| 199 | nao:personalIdentifier "Dirk Hageman";
|
|---|
| 200 | nao:altLabel "hacki";
|
|---|
| 201 | nao:altLabel "Dirck Hagemann";
|
|---|
| 202 | rdfs:comment "The canonical Dirk";
|
|---|
| 203 | nco:hasEmailAddress <mailto:dirk-1@csc.kth.se>;
|
|---|
| 204 | nao:identifier "dirk-1@csc.kth.se";
|
|---|
| 205 | #! pimo:partOf claudia:InitialMeetinginBelfast;
|
|---|
| 206 | #! pimo:Attendee claudia:InitialMeetinginBelfast;
|
|---|
| 207 | pimo:occurrence <imap://claudia@sap.com/INBOX/1#from>;
|
|---|
| 208 | pimo:groundingOccurrence <file://home/claudia/dirk.vcf#dirk>;
|
|---|
| 209 | pimo:referencingOccurrence <http://www.sap.com/people/DirkHageman>;
|
|---|
| 210 | pimo:hasOtherRepresentation <http://id.sap.com/person/1650>.
|
|---|
| 211 |
|
|---|
| 212 | claudia:KlausPfeifer a pimo:Person;
|
|---|
| 213 | pimo:isDefinedBy claudia:PIMO;
|
|---|
| 214 | rdfs:label "Klaus Pfeifer";
|
|---|
| 215 | #! pimo:partOf claudia:InitialMeetinginBelfast;
|
|---|
| 216 | #! pimo:Attendee claudia:InitialMeetinginBelfast;
|
|---|
| 217 | nao:personalIdentifier "Klaus Pfeifer".
|
|---|
| 218 |
|
|---|
| 219 | <imap://claudia@sap.com/INBOX/1> a nmo:Mail;
|
|---|
| 220 | nmo:from <imap://claudia@sap.com/INBOX/1#from>;
|
|---|
| 221 | rdfs:comment "An e-mail in which Dirk occurs".
|
|---|
| 222 |
|
|---|
| 223 | <imap://claudia@sap.com/INBOX/1#from> a nco:Contact;
|
|---|
| 224 | nco:hasEmailAddress <mailto:dirk-1@csc.kth.se>;
|
|---|
| 225 | rdfs:comment "Dirk #2, as email sender".
|
|---|
| 226 |
|
|---|
| 227 | <mailto:dirk-1@csc.kth.se> a nmo:EmailAddress;
|
|---|
| 228 | nco:emailAddress "dirk-1@csc.kth.se".
|
|---|
| 229 |
|
|---|
| 230 | <file://home/claudia/dirk.vcf#dirk> a nco:PersonContact;
|
|---|
| 231 | nco:nameFamily "Hageman";
|
|---|
| 232 | nco:nameGiven "Dirk";
|
|---|
| 233 | nco:hasEmailAddress <mailto:dirk-1@csc.kth.se>;
|
|---|
| 234 | nco:photo <http://www.sap.com/people/dirk/photo.jpg>;
|
|---|
| 235 | rdfs:comment "Dirk #3, as address book contact".
|
|---|
| 236 |
|
|---|
| 237 | <file:/C:/testdata/claudia_stern/contacts/dirk.vcf#dirk> a nco:PersonContact;
|
|---|
| 238 | nco:nameFamily "Hageman";
|
|---|
| 239 | nco:nameGiven "Dirk";
|
|---|
| 240 | nco:hasEmailAddress <mailto:dirk-1@csc.kth.se>;
|
|---|
| 241 | nco:photo <http://www.sap.com/people/dirk/photo.jpg>;
|
|---|
| 242 | rdfs:comment "Dirk #3, as address book contact".
|
|---|
| 243 |
|
|---|
| 244 | <file:/C:/testdata/claudia_stern/contacts/claudia.vcf#claudia> a nco:PersonContact;
|
|---|
| 245 | nco:nameFamily "Claudia";
|
|---|
| 246 | nco:nameGiven "Stern";
|
|---|
| 247 | nco:hasEmailAddress <mailto:claudi-1@csc.kth.se>.
|
|---|
| 248 |
|
|---|
| 249 | <mailto:claudi-1@csc.kth.se> a nmo:EmailAddress;
|
|---|
| 250 | nco:emailAddress "claudi-1@csc.kth.se". |
|---|