[graphl-cvs] graphl/web/config/vocabs/SOUPA schedule location space time event action policy person
Status: Pre-Alpha
Brought to you by:
flo1
Update of /cvsroot/graphl/graphl/web/config/vocabs/SOUPA In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17343/web/config/vocabs/SOUPA Added Files: schedule location space time event action policy person device bdi geo-measurement document agent soupa-ontology-2004-06.jpg img-capture rcc meeting digital-doc knowledge Log Message: a lot of changes done a long time ago... changelog has to be updated another time :( --- NEW FILE: img-capture --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY dev "http://pervasive.semanticweb.org/ont/2004/06/device#"> <!ENTITY tme "http://pervasive.semanticweb.org/ont/2004/06/time#"> <!ENTITY spc "http://pervasive.semanticweb.org/ont/2004/06/space#"> <!ENTITY ddc "http://pervasive.semanticweb.org/ont/2004/06/digital-doc#"> <!ENTITY icap "http://pervasive.semanticweb.org/ont/2004/06/img-capture#"> <!ENTITY cam "http://protege.stanford.edu/plugins/owl/owl-library/camera.owl"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:tme = "&tme;" xmlns:spc = "&spc;" xmlns:dev = "&dev;" xmlns:cam = "&cam;" xmlns:ddc = "&ddc;" xmlns = "&icap;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/img-capture"> <owl:Ontology rdf:about="&soupa;img-capture"> <owl:versionInfo>$Revision: 1.1 $, $Date: 2004/05/15 18:55:08 $</owl:versionInfo> <rdfs:label>SOUPA Camera Phone Image Capture Ontology</rdfs:label> <owl:imports rdf:resource="&soupa;time"/> <owl:imports rdf:resource="&soupa;space"/> <owl:imports rdf:resource="&soupa;device"/> <owl:imports rdf:resource="&soupa;digital-doc"/> </owl:Ontology> <owl:Class rdf:ID="ImageCaptureEvent"> <rdfs:label>ImageCaptureEvent</rdfs:label> <rdfs:subClassOf rdf:resource="&tme;TemporalEvent"/> <rdfs:subClassOf rdf:resource="&spc;SpatialThing"/> </owl:Class> <owl:Class rdf:about="&cam;Digital"/> <owl:Class rdf:ID="CameraPhone"> <rdfs:label>CameraPhone</rdfs:label> <rdfs:subClassOf rdf:resource="&cam;Digital"/> <rdfs:subClassOf rdf:resource="&dev;Cellphone"/> </owl:Class> <owl:ObjectProperty rdf:ID="capturedBy"> <rdfs:label>capturedBy</rdfs:label> <rdfs:domain rdf:resource="#ImageCaptureEvent"/> <rdfs:range rdf:resource="#CameraPhone"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="image"> <rdfs:label>image</rdfs:label> <rdfs:domain rdf:resource="#ImageCaptureEvent"/> <rdfs:range rdf:resource="&ddc;ImageFile"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="atLocation"> <rdfs:label>atLocation</rdfs:label> <rdfs:domain rdf:resource="#ImageCaptureEvent"/> <rdfs:range rdf:resource="&spc;SpatialThing"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: soupa-ontology-2004-06.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: knowledge --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY know "http://pervasive.semanticweb.org/ont/2004/06/knowledge#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:know = "&know;" xmlns = "&know;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/knowledge"> <owl:Ontology rdf:about="&soupa;knowledge"> <owl:versionInfo>$Revision: 1.1 $, $Date: 2004/05/15 18:55:09 $</owl:versionInfo> <rdfs:label>SOUPA Context Knowledge Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="Knowledge"> <rdfs:label>Knowledge</rdfs:label> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#ConsistentKnowledge"/> <owl:Class rdf:about="#InconsistentKnowledge"/> </owl:unionOf> </owl:Class> <owl:Class rdf:ID="ConsistentKnowledge"> <rdfs:label>ConsistentKnowledge</rdfs:label> <rdfs:subClassOf rdf:resource="#Knowledge"/> <owl:disjointWith rdf:resource="#InconsistentKnowledge"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#inconsistentWith"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="InconsistentKnowledge"> <rdfs:label>InconsistentKnowledge</rdfs:label> <rdfs:subClassOf rdf:resource="#Knowledge"/> <owl:disjointWith rdf:resource="#ConsistentKnowledge"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#inconsistentWith"/> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="inconsistentWith"> <rdfs:label>inconsistentWith</rdfs:label> <rdfs:domain rdf:resource="#Knowledge"/> <rdfs:range rdf:resource="#Knowledge"/> <rdf:type rdf:resource="&owl;SymmetricProperty"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="source"> <rdfs:label>source</rdfs:label> <rdfs:domain rdf:resource="#Knowledge"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="reliabilityRating"> <rdfs:label>reliabilityRating</rdfs:label> <rdfs:domain rdf:resource="#Knowledge"/> <rdfs:range rdf:resource="&xsd;float"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="inconsistentWithCount"> <rdfs:label>inconsistentWithCounty</rdfs:label> <rdfs:domain rdf:resource="#Knowledge"/> <rdfs:range rdf:resource="&xsd;nonNegativeInteger"/> </owl:DatatypeProperty> </rdf:RDF> --- NEW FILE: schedule --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY tme "http://pervasive.semanticweb.org/ont/2004/06/time#"> <!ENTITY sch "http://pervasive.semanticweb.org/ont/2004/06/schedule#"> <!ENTITY spc "http://pervasive.semanticweb.org/ont/2004/06/space#"> <!ENTITY mtg "http://pervasive.semanticweb.org/ont/2004/06/meeting#"> <!ENTITY per "http://pervasive.semanticweb.org/ont/2004/06/person#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:spc = "&spc;" xmlns:xsd = "&xsd;" xmlns = "&sch;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/schedule"> <owl:Ontology rdf:about="&soupa;schedule"> <owl:imports rdf:resource="&soupa;time"/> <owl:imports rdf:resource="&soupa;person"/> <owl:imports rdf:resource="&soupa;space"/> <owl:imports rdf:resource="&soupa;meeting"/> <owl:versionInfo>cvs:$Revision: 1.3 $, $Date: 2004/03/07 18:26:58 $</owl:versionInfo> <rdfs:label>SOUPA Meeting Schedule Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="MeetingSchedule"> <rdfs:label>MeetingSchedule</rdfs:label> <rdfs:subClassOf rdf:resource="&tme;IntervalThing"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#name"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#location"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#createdBy"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="location"> <rdfs:label>location</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&spc;SpaceInAFixedStructure"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="createdBy"> <rdfs:label>createdBy</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&per;Person"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="name"> <rdfs:label>name</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="description"> <rdfs:label>description</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="invitedParticipant"> <rdfs:label>invitedParticipant</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&per;Person"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="scheduleOf"> <rdfs:label>scheduleOf</rdfs:label> <rdfs:domain rdf:resource="#MeetingSchedule"/> <rdfs:range rdf:resource="&mtg;Meeting"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: digital-doc --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY doc "http://pervasive.semanticweb.org/ont/2004/06/document#"> <!ENTITY ddc "http://pervasive.semanticweb.org/ont/2004/06/digital-doc#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:doc = "&doc;" xmlns = "&ddc;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/digital-doc"> <owl:Ontology rdf:about="&soupa;digital-doc"> <owl:imports rdf:resource="&soupa;document"/> <owl:versionInfo>cvs:$Revision: 1.1 $, $Date: 2004/05/15 18:55:08 $</owl:versionInfo> <rdfs:label>SOUPA Digital Document Ontology</rdfs:label> </owl:Ontology> <owl:Class rdf:ID="DigitalDocument"> <rdfs:label>DigitalDocument</rdfs:label> <rdfs:subClassOf rdf:resource="&doc;Document"/> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#ImageFile"/> <owl:Class rdf:about="#VideoFile"/> <owl:Class rdf:about="#AudioFile"/> </owl:unionOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#fileSize"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="sourceURL"> <rdfs:domain rdf:resource="#DigitalDocument"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="fileSize"> <rdfs:label>fileSize</rdfs:label> <rdfs:domain rdf:resource="#DigitalDocument"/> <rdfs:range rdf:resource="#FileSizeDescription"/> </owl:ObjectProperty> <owl:Class rdf:ID="FileSizeDescription"> <rdfs:label>FileSizeDescription</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#unit"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#size"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="unit"> <rdfs:label>unit</rdfs:label> <rdfs:domain rdf:resource="#FileSizeDescription"/> <rdfs:range rdf:resource="#FileSizeUnit"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="size"> <rdfs:label>size</rdfs:label> <rdfs:domain rdf:resource="#FileSizeDescription"/> <rdfs:range rdf:resource="&xsd;unsignedLong"/> </owl:DatatypeProperty> <owl:Class rdf:ID="FileSizeUnit"> <rdfs:label>FileSizeUnit</rdfs:label> <owl:oneOf rdf:parseType="Collection"> <FileSizeUnit rdf:about="#Bytes"/> <FileSizeUnit rdf:about="#KBytes"/> <FileSizeUnit rdf:about="#MBytes"/> <FileSizeUnit rdf:about="#GBytes"/> <FileSizeUnit rdf:about="#TBytes"/> </owl:oneOf> </owl:Class> <owl:Class rdf:ID="ImageFile"> <rdfs:label>ImageFile</rdfs:label> <rdfs:subClassOf rdf:resource="#DigitalDocument"/> <owl:disjointWith rdf:resource="#AudioFile"/> <owl:disjointWith rdf:resource="#VideoFile"/> </owl:Class> <owl:Class rdf:ID="AudioFile"> <rdfs:label>AudioFile</rdfs:label> <rdfs:subClassOf rdf:resource="#DigitalDocument"/> <owl:disjointWith rdf:resource="#VideoFile"/> </owl:Class> <owl:Class rdf:ID="VideoFile"> <rdfs:label>VideoFile</rdfs:label> <rdfs:subClassOf rdf:resource="#DigitalDocument"/> </owl:Class> </rdf:RDF> --- NEW FILE: space --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY tme "http://pervasive.semanticweb.org/ont/2004/01/time#"> <!ENTITY geom "http://pervasive.semanticweb.org/ont/2004/06/geo-measurement#"> <!ENTITY pol "http://pervasive.semanticweb.org/ont/2004/06/policy#"> <!ENTITY spc "http://pervasive.semanticweb.org/ont/2004/06/space#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:tme = "&tme;" xmlns:geom = "&geom;" xmlns:pol = "&pol;" xmlns = "&spc;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/space"> <owl:Ontology rdf:about="&soupa;space"> <owl:imports rdf:resource="&soupa;time"/> <owl:imports rdf:resource="&soupa;geo-measurement"/> <owl:imports rdf:resource="&soupa;policy"/> <owl:versionInfo>cvs:$Revision: 1.3 $, $Date: 2004/03/07 17:33:18 $</owl:versionInfo> <rdfs:label>SOUPA Space Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="SpatialThing"> <rdfs:label>SpatialThing</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasCoordinates"/> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#GeographicalSpace"/> <owl:Class rdf:about="#MovableSpatialThing"/> </owl:unionOf> </owl:Class> <owl:ObjectProperty rdf:ID="hasCoordinates"> <rdfs:label>hasCoordinates</rdfs:label> <rdfs:domain rdf:resource="#SpatialThing"/> <rdfs:range rdf:resource="&geom;LocationCoordinates"/> </owl:ObjectProperty> <owl:Class rdf:ID="GeopoliticalEntity"> <rdfs:label>GeopoliticalEntity</rdfs:label> </owl:Class> <owl:DatatypeProperty rdf:ID="officialName"> <rdfs:label>officialName</rdfs:label> <rdf:type rdf:resource="&owl;FunctionalProperty"/> <rdfs:domain rdf:resource="#GeopoliticalEntity"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="controls"> <rdfs:label>controls</rdfs:label> <rdfs:domain rdf:resource="#GeopoliticalEntity"/> <rdfs:range rdf:resource="#GeographicalSpace"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="controlledBy"> <rdfs:label>controlledBy</rdfs:label> <owl:inverseOf rdf:resource="#controls"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="definesPolicy"> <rdfs:label>definesPolicy</rdfs:label> <rdfs:domain rdf:resource="#GeopoliticalEntity"/> <rdfs:range rdf:resource="&pol;Policy"/> </owl:ObjectProperty> <owl:Class rdf:ID="GeographicalSpace"> <rdfs:label>GeographicalSpace</rdfs:label> <rdfs:subClassOf rdf:resource="#SpatialThing"/> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#GeographicalRegion"/> <owl:Class rdf:about="#FixedStructure"/> <owl:Class rdf:about="#SpaceInAFixedStructure"/> </owl:unionOf> <owl:disjointWith rdf:resource="#MovableSpatialThing"/> </owl:Class> <owl:DatatypeProperty rdf:ID="name"> <rdfs:label>name</rdfs:label> <rdfs:domain rdf:resource="#GeographicalSpace"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:Class rdf:ID="GeographicalRegion"> <rdfs:label>GeographicalRegion</rdfs:label> <rdfs:subClassOf rdf:resource="#GeographicalSpace"/> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#LandBasedRegion"/> <owl:Class rdf:about="#WaterBasedRegion"/> </owl:unionOf> </owl:Class> <owl:Class rdf:ID="LandBasedRegion"> <rdfs:label>LandBasedRegion</rdfs:label> <rdfs:subClassOf rdf:resource="#GeographicalRegion"/> </owl:Class> <owl:Class rdf:ID="WaterBasedRegion"> <rdfs:label>WaterBasedRegion</rdfs:label> <rdfs:subClassOf rdf:resource="#GeographicalRegion"/> <owl:disjointWith rdf:resource="#LandBasedRegion"/> </owl:Class> <owl:Class rdf:ID="FixedStructure"> <rdfs:label>FixedStructure</rdfs:label> <rdfs:subClassOf rdf:resource="#GeographicalSpace"/> <owl:disjointWith rdf:resource="#GeographicalRegion"/> </owl:Class> <owl:Class rdf:ID="SpaceInAFixedStructure"> <rdfs:label>SpaceInAFixedStructure</rdfs:label> <rdfs:subClassOf rdf:resource="#GeographicalSpace"/> <owl:disjointWith rdf:resource="#GeographicalRegion"/> <owl:disjointWith rdf:resource="#FixedStructure"/> </owl:Class> <owl:ObjectProperty rdf:ID="spatiallySubsumes"> <rdfs:label>spatiallySubsumes</rdfs:label> <rdf:type rdf:resource="&owl;TransitiveProperty"/> <rdfs:domain rdf:resource="#GeographicalSpace"/> <rdfs:range rdf:resource="#GeographicalSpace"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="spatiallySubsumedBy"> <rdfs:label>spatiallySubsumedBy</rdfs:label> <owl:inverseOf rdf:resource="#spatiallySubsumes"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: bdi --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY bdi "http://pervasive.semanticweb.org/ont/2004/06/bdi#"> <!ENTITY act "http://pervasive.semanticweb.org/ont/2004/06/action#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:act = "&act;" xmlns = "&bdi;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/bdi"> <owl:Ontology rdf:about="&soupa;bdi"> <owl:versionInfo>$Revision: 1.4 $, $Date: 2004/07/15 15:40:46 $</owl:versionInfo> <rdfs:label>SOUPA Belief-Desire-Intention Ontology</rdfs:label> <rdfs:comment></rdfs:comment> <owl:imports rdf:resource="&soupa;action"/> </owl:Ontology> <owl:Class rdf:ID="Belief"> <rdfs:label>Belief</rdfs:label> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#TrueStatement"/> <owl:Class rdf:about="#FalseStatement"/> </owl:unionOf> </owl:Class> <owl:Class rdf:ID="TrueStatement"> <rdfs:label>TrueStatement</rdfs:label> <rdfs:subClassOf rdf:resource="#Belief"/> <owl:disjointWith rdf:resource="#FalseStatement"/> </owl:Class> <owl:Class rdf:ID="FalseStatement"> <rdfs:label>FalseStatement</rdfs:label> <rdfs:subClassOf rdf:resource="#Belief"/> </owl:Class> <owl:Class rdf:ID="Desire"> <rdfs:label>Desire</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#endState" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="ConflictingDesire"> <rdfs:label>ConflictingDesire</rdfs:label> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Desire" /> <owl:Restriction> <owl:onProperty rdf:resource="#conflicts"/> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </owl:intersectionOf> <owl:disjointWith rdf:resource="#NonConflictingDesire"/> </owl:Class> <owl:Class rdf:ID="NonConflictingDesire"> <rdfs:label>NonConflictingDesire</rdfs:label> <rdfs:subClassOf rdf:resource="#Desire" /> <owl:disjointWith rdf:resource="#ConflictingDesire"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#conflicts"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="reasonForConflict"> <rdfs:label>reasonForConflict</rdfs:label> <rdfs:domain rdf:resource="#ConflictingDesire"/> </owl:ObjectProperty> <owl:Class rdf:ID="AchievableDesire"> <rdfs:label>AchievableDesire</rdfs:label> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Desire" /> <owl:Restriction> <owl:onProperty rdf:resource="#canBeAchievedWithPlan" /> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </owl:intersectionOf> <owl:disjointWith rdf:resource="#NonAchievableDesire"/> </owl:Class> <owl:Class rdf:ID="NonAchievableDesire"> <rdfs:label>NonAchievableDesire</rdfs:label> <rdfs:subClassOf rdf:resource="#Desire" /> <owl:disjointWith rdf:resource="#AchievableDesire"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#canBeAchievedWithPlan"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:Class rdf:ID="Goal"> <rdfs:label>Goal</rdfs:label> <owl:intersectionOf rdf:parseType="Collection"> <owl:Class rdf:about="#AchievableDesire" /> <owl:Class rdf:about="#NonConflictingDesire" /> </owl:intersectionOf> </owl:Class> <owl:Class rdf:ID="Intention"> <rdfs:label>Intention</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#definedByPlan" /> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="endState"> <rdfs:domain rdf:resource="#Desire" /> <rdfs:range rdf:resource="&owl;Thing" /> </owl:ObjectProperty> <owl:Class rdf:ID="Plan"> <rdfs:label>Plan</rdfs:label> <rdfs:subClassOf rdf:resource="&act;Action" /> </owl:Class> <owl:ObjectProperty rdf:ID="preCondition"> <rdfs:domain rdf:resource="#Plan" /> <rdfs:range rdf:resource="&owl;Thing" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="effect"> <rdfs:domain rdf:resource="#Plan" /> <rdfs:range rdf:resource="&owl;Thing" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="conflicts"> <rdf:type rdf:resource="&owl;SymmetricProperty" /> <rdfs:domain rdf:resource="&owl;Thing" /> <rdfs:range rdf:resource="&owl;Thing" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="canBeAchievedWithPlan"> <rdfs:domain rdf:resource="#Desire"/> <rdfs:range rdf:resource="#Plan"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="definedByPlan"> <rdfs:domain rdf:resource="#Intention"/> <rdfs:range rdf:resource="#Plan"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: agent --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY bdi "http://pervasive.semanticweb.org/ont/2004/06/bdi#"> <!ENTITY agt "http://pervasive.semanticweb.org/ont/2004/06/agent#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:bdi = "&bdi;" xmlns = "&agt;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/agent"> <owl:Ontology rdf:about="&soupa;agent"> <owl:versionInfo>cvs:$Revision: 1.4 $, $Date: 2004/03/04 18:16:46 $</owl:versionInfo> <rdfs:label>SOUPA Agent Ontology</rdfs:label> <rdfs:comment></rdfs:comment> <owl:imports rdf:resource="&soupa;bdi"/> </owl:Ontology> <owl:Class rdf:ID="Agent"> <rdfs:label>Agent</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="believes"> <rdfs:label>believes</rdfs:label> <rdfs:domain rdf:resource="#Agent"/> <rdfs:range rdf:resource="&bdi;Belief"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="desires"> <rdfs:label>desires</rdfs:label> <rdfs:domain rdf:resource="#Agent" /> <rdfs:range rdf:resource="&bdi;Desire" /> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="intends"> <rdfs:label>intends</rdfs:label> <rdfs:domain rdf:resource="#Agent" /> <rdfs:range rdf:resource="&bdi;Intention"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasGoal"> <rdfs:subPropertyOf rdf:resource="#desires" /> <rdfs:range rdf:resource="&bdi;Goal"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: person --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY foaf "http://xmlns.com/foaf/0.1#"> <!ENTITY per "http://pervasive.semanticweb.org/ont/2004/06/person#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:foaf = "&foaf;" xmlns = "&per;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/person"> <owl:Ontology rdf:about="&soupa;person"> <owl:versionInfo>cvs:$Revision: 1.8 $, $Date: 2004/06/19 20:50:17 $</owl:versionInfo> <rdfs:label>SOUPA Person Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="Person"> <rdfs:label>Person</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#gender"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#birthDate"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <owl:equivalentClass> <owl:Class rdf:about="&foaf;Person"/> </owl:equivalentClass> </owl:Class> <owl:DatatypeProperty rdf:ID="name"> <rdfs:label>name</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="firstName"> <rdfs:label>firstName</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="middleName"> <rdfs:label>middleName</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="lastName"> <rdfs:label>lastName</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="givenName"> <rdfs:label>givenName</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> <owl:equivalentProperty rdf:resource="#firstName"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="familyName"> <rdfs:label>familyName</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> <owl:equivalentProperty rdf:resource="#lastName"/> </owl:DatatypeProperty> <owl:Class rdf:ID="Gender"> <rdfs:label>Gender</rdfs:label> <owl:oneOf rdf:parseType="Collection"> <Gender rdf:about="#Male"/> <Gender rdf:about="#Female"/> </owl:oneOf> </owl:Class> <owl:ObjectProperty rdf:ID="gender"> <rdfs:label>gender</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#Gender"/> <rdf:type rdf:resource="&owl;FunctionalProperty" /> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="birthDate"> <rdfs:label>birthDate</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;date"/> <rdf:type rdf:resource="&owl;FunctionalProperty" /> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="nickname"> <rdfs:label>nickname</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="homepage"> <rdfs:label>homepage</rdfs:label> <rdfs:range rdf:resource="#Homepage"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="workplaceHomepage"> <rdfs:label>workplaceHomepage</rdfs:label> <rdfs:subPropertyOf rdf:resource="#homepage"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="schoolHomepage"> <rdfs:label>schoolHomepage</rdfs:label> <rdfs:subPropertyOf rdf:resource="#homepage"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasContactProfile"> <rdfs:label>hasContactProfile</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:range rdf:resource="#ContactProfile"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasHomeContactProfile"> <rdfs:label>hasHomeContactProfile</rdfs:label> <rdfs:subPropertyOf rdf:resource="#hasContactProfile"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasWorkContactProfile"> <rdfs:label>hasHomeContact</rdfs:label> <rdfs:subPropertyOf rdf:resource="#hasContactProfile"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasSchoolContactProfile"> <rdfs:label>hasSchoolContact</rdfs:label> <rdfs:subPropertyOf rdf:resource="#hasContactProfile"/> </owl:ObjectProperty> <owl:Class rdf:ID="ContactProfile"> <rdfs:label>ContactProfile</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#address"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#phone"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#fax"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#homepage"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#email"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#mobile"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#im"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#myagent"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="address"> <rdfs:label>address</rdfs:label> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="phone"> <rdfs:label>phone</rdfs:label> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="fax"> <rdfs:label>fax</rdfs:label> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="mobile"> <rdfs:label>mobile</rdfs:label> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="sms"> <rdfs:label>sms</rdfs:label> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="email"> <rdfs:label>email</rdfs:label> <rdfs:range rdf:resource="#Email"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="im"> <rdfs:label>im</rdfs:label> <rdfs:range rdf:resource="#ChatID"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="myagent"> <rdfs:label>im</rdfs:label> <rdfs:range rdf:resource="#JADEAgentID"/> </owl:ObjectProperty> <owl:Class rdf:ID="InternetResourceURL"> <rdfs:label>InternetResourceURL</rdfs:label> </owl:Class> <owl:Class rdf:ID="Document"> <rdfs:label>Document</rdfs:label> <owl:equivalentClass> <owl:Class rdf:about="&foaf;Document"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="Homepage"> <rdfs:label>Homepage</rdfs:label> <rdfs:subClassOf rdf:resource="#InternetResourceURL"/> <rdfs:subClassOf rdf:resource="#Document"/> </owl:Class> <owl:Class rdf:ID="Email"> <rdfs:label>Email</rdfs:label> <rdfs:subClassOf rdf:resource="#InternetResourceURL"/> </owl:Class> <owl:Class rdf:ID="ChatID"> <rdfs:label>ChatID</rdfs:label> <rdfs:subClassOf rdf:resource="#InternetResourceURL"/> </owl:Class> <owl:Class rdf:ID="JADEAgentID"> <rdfs:label>JADEAgentID</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="providedBy"> <rdfs:label>providedBy</rdfs:label> <rdfs:domain rdf:resource="#ChatID"/> <rdfs:range rdf:resource="#IMProvider"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasRegisteredChatID"> <rdfs:label>hasRegisteredChatID</rdfs:label> <owl:inverseOf rdf:resource="#providedBy"/> </owl:ObjectProperty> <owl:Class rdf:ID="IMProvider"> <rdfs:label>IMProvider</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#hasRegisteredChatID"/> <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="knows"> <rdfs:label>knows</rdfs:label> <rdfs:domain rdf:resource="#Person"/> <rdfs:domain rdf:resource="#Person"/> <rdf:type rdf:resource="&owl;SymmetricProperty"/> <owl:equivalentProperty> <owl:ObjectProperty rdf:about="&foaf;knows"/> </owl:equivalentProperty> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: geo-measurement --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY spc "http://pervasive.semanticweb.org/ont/2004/06/space#"> <!ENTITY geom "http://pervasive.semanticweb.org/ont/2004/06/geo-measurement#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:spc = "&spc;" xmlns = "&geom;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/geo-measurement"> <owl:Ontology rdf:about="&soupa;geo-measurement"> <owl:imports rdf:resource="&soupa;space"/> <owl:versionInfo>cvs:$Revision: 1.2 $, $Date: 2004/03/07 17:58:36 $</owl:versionInfo> <rdfs:label>SOUPA Geographical Measurement Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="LocationCoordinates"> <rdfs:label>LocationCoordinates</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#longitude"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#latitude"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#altitude"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="longitude"> <rdfs:label>longitude</rdfs:label> <rdfs:domain rdf:resource="#LocationCoordinates"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="latitude"> <rdfs:label>latitude</rdfs:label> <rdfs:domain rdf:resource="#LocationCoordinates"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="altitude"> <rdfs:label>altitude</rdfs:label> <rdfs:domain rdf:resource="#LocationCoordinates"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:Class rdf:ID="Distance"> <rdfs:label>Distance</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#fromSpatialThing"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#toSpatialThing"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#distanceValueDescription"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="fromSpatialThing"> <rdfs:label>fromSpatialThing</rdfs:label> <rdfs:domain rdf:resource="#Distance"/> <rdfs:range rdf:resource="&spc;SpatialThing"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="toSpatialThing"> <rdfs:label>toSpatialThing</rdfs:label> <rdfs:domain rdf:resource="#Distance"/> <rdfs:range rdf:resource="&spc;SpatialThing"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="distanceValueDescription"> <rdfs:label>distanceValueDescription</rdfs:label> <rdfs:domain rdf:resource="#Distance"/> <rdfs:range rdf:resource="#DistanceValueDescription"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:ObjectProperty> <owl:Class rdf:ID="DistanceValueDescription"> <rdfs:label>DistanceValueDescription</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#distanceUnit"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#distanceValue"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#direction"/> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="distanceUnit"> <rdfs:label>distanceUnit</rdfs:label> <rdfs:domain rdf:resource="#DistanceValueDescription"/> <rdfs:range rdf:resource="#DistanceUnit"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="distanceValue"> <rdfs:label>distanceValue</rdfs:label> <rdfs:domain rdf:resource="#DistanceValueDescription"/> <rdfs:range rdf:resource="&xsd;float"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="direction"> <rdfs:label>direction</rdfs:label> <rdfs:domain rdf:resource="#DistanceValueDescription"/> <rdfs:range rdf:resource="#Direction"/> </owl:ObjectProperty> <owl:Class rdf:ID="DistanceUnit"> <rdfs:label>DistanceUnit</rdfs:label> <owl:oneOf rdf:parseType="Collection"> <DistanceUnit rdf:about="#Mile"/> <DistanceUnit rdf:about="#Yard"/> <DistanceUnit rdf:about="#Foot"/> <DistanceUnit rdf:about="#Inch"/> <DistanceUnit rdf:about="#Kilometer"/> <DistanceUnit rdf:about="#Meter"/> <DistanceUnit rdf:about="#Centimeter"/> </owl:oneOf> </owl:Class> <owl:Class rdf:ID="Direction"> <rdfs:label>Direction</rdfs:label> <owl:oneOf rdf:parseType="Collection"> <Direction rdf:about="#N"/> <Direction rdf:about="#S"/> <Direction rdf:about="#E"/> <Direction rdf:about="#W"/> <Direction rdf:about="#NW"/> <Direction rdf:about="#NE"/> <Direction rdf:about="#SW"/> <Direction rdf:about="#SE"/> </owl:oneOf> </owl:Class> <owl:Class rdf:ID="SurfaceArea"> <rdfs:label>SurfaceArea</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#surfaceAreaOf"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#areaValueDescription"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="surfaceAreaOf"> <rdfs:label>surfaceAreaOf</rdfs:label> <rdfs:domain rdf:resource="#SurfaceArea"/> <rdfs:range rdf:resource="&spc;SpatialThing"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="areaValueDescription"> <rdfs:label>areValueDescription</rdfs:label> <rdfs:domain rdf:resource="#SurfaceArea"/> <rdfs:range rdf:resource="#AreaValueDescription"/> </owl:ObjectProperty> <owl:Class rdf:ID="AreaValueDescription"> <rdfs:label>AreaValueDescription</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#areaUnit"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#areaValue"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:ObjectProperty rdf:ID="areaUnit"> <rdfs:label>areaUnit</rdfs:label> <rdfs:domain rdf:resource="#AreaValueDescription"/> <rdfs:range rdf:resource="#DistanceUnit"/> </owl:ObjectProperty> <owl:DatatypeProperty rdf:ID="areaValue"> <rdfs:label>areaValue</rdfs:label> <rdfs:domain rdf:resource="#AreaValueDescription"/> <rdfs:range rdf:resource="&xsd;float"/> </owl:DatatypeProperty> <owl:Class rdf:ID="AreaUnit"> <rdfs:label>AreaUnit</rdfs:label> <owl:oneOf rdf:parseType="Collection"> <AreaUnit rdf:about="#MileSq"/> <AreaUnit rdf:about="#YardSq"/> <AreaUnit rdf:about="#FootSq"/> <AreaUnit rdf:about="#InchSq"/> <AreaUnit rdf:about="#KilometerSq"/> <AreaUnit rdf:about="#MeterSq"/> <AreaUnit rdf:about="#CentimeterSq"/> </owl:oneOf> </owl:Class> </rdf:RDF> --- NEW FILE: device --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY dev "http://pervasive.semanticweb.org/ont/2004/06/device#"> <!ENTITY per "http://pervasive.semanticweb.org/ont/2004/06/person#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:per = "&per;" xmlns = "&dev;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/device"> <owl:Ontology rdf:about="&soupa;device"> <owl:versionInfo>$Revision: 1.1 $, $Date: 2004/05/15 18:55:08 $</owl:versionInfo> <rdfs:label>SOUPA Device Ontology</rdfs:label> <rdfs:comment></rdfs:comment> <owl:imports rdf:resource="&soupa;person"/> </owl:Ontology> <owl:Class rdf:ID="Device"> <rdfs:label>Device</rdfs:label> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#modelNumber"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#serialNumber"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#manufacturerHomepage"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="modelNumber"> <rdfs:label>modelNumber</rdfs:label> <rdfs:domain rdf:resource="#Device"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:DatatypeProperty rdf:ID="serialNumber"> <rdfs:label>serialNumber</rdfs:label> <rdfs:domain rdf:resource="#Device"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> <owl:ObjectProperty rdf:ID="manufacturerHomepage"> <rdfs:label>manufacturerHomepage</rdfs:label> <rdfs:domain rdf:resource="#Device"/> <rdfs:range rdf:resource="&per;Homepage"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="hasUser"> <rdfs:label>userOf</rdfs:label> <rdfs:domain rdf:resource="#Device"/> <rdfs:range rdf:resource="&per;Person"/> </owl:ObjectProperty> <owl:Class rdf:ID="Cellphone"> <rdfs:label>Cellphone</rdfs:label> <rdfs:subClassOf rdf:resource="#Device"/> </owl:Class> <owl:Class rdf:ID="NokiaCellphone"> <rdfs:label>NokiaCellphone</rdfs:label> <rdfs:subClassOf rdf:resource="#Cellphone"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#manufacturerHomepage"/> <owl:hasValue rdf:resource="http://www.nokia.com"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <per:Homepage rdf:about="http://www.nokia.com"/> <owl:Class rdf:ID="SonyEricssonCellphone"> <rdfs:label>SonyEricssonCellphone</rdfs:label> <rdfs:subClassOf rdf:resource="#Cellphone"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#manufacturerHomepage"/> <owl:hasValue rdf:resource="http://www.sonyericsson.com"/> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <per:Homepage rdf:about="http://www.sonyericsson.com"/> <owl:Class rdf:ID="BluetoothEnabledCellphone"> <rdfs:label>BluetoothEnabledCellphone</rdfs:label> <rdfs:subClassOf rdf:resource="#Cellphone"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#bluetoothMAC"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> </owl:Class> <owl:DatatypeProperty rdf:ID="bluetoothMAC"> <rdfs:label>bluetoothMAC</rdfs:label> <rdfs:domain rdf:resource="#BluetoothEnabledCellphone"/> <rdfs:range rdf:resource="&xsd;string"/> </owl:DatatypeProperty> </rdf:RDF> --- NEW FILE: location --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY loc "http://pervasive.semanticweb.org/ont/2004/06/location#"> <!ENTITY tme "http://pervasive.semanticweb.org/ont/2004/06/time#"> <!ENTITY spc "http://pervasive.semanticweb.org/ont/2004/06/space#"> <!ENTITY know "http://pervasive.semanticweb.org/ont/2004/06/knowledge#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:tme = "&tme;" xmlns:spc = "&spc;" xmlns:know = "&know;" xmlns = "&loc;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/location"> <owl:Ontology rdf:about="&soupa;location"> <owl:versionInfo>$Revision: 1.2 $, $Date: 2004/05/15 18:55:09 $</owl:versionInfo> <rdfs:label>SOUPA Location Context Ontology</rdfs:label> <rdfs:comment></rdfs:comment> <owl:imports rdf:resource="&soupa;time"/> <owl:imports rdf:resource="&soupa;space"/> <owl:imports rdf:resource="&soupa;knowledge"/> </owl:Ontology> <owl:Class rdf:ID="LocationContext"> <rdfs:label>LocationContext</rdfs:label> <rdfs:subClassOf rdf:resource="&tme;TemporalEvent"/> <rdfs:subClassOf rdf:resource="&spc;SpatialThing"/> <rdfs:subClassOf rdf:resource="&know;Knowledge"/> </owl:Class> <owl:ObjectProperty rdf:ID="locationContextOf"> <rdfs:label>locationContextOf</rdfs:label> <rdfs:domain rdf:resource="#LocationContext"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="boundedWithin"> <rdfs:label>boundedWithin</rdfs:label> <rdfs:domain rdf:resource="#LocationContext"/> <rdfs:range rdf:resource="&spc;SpatialThing"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: action --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY act "http://pervasive.semanticweb.org/ont/action#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:act = "&act;" xmlns = "&act;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/action"> <owl:Ontology rdf:about="&soupa;action"> <owl:versionInfo>$Revision: 1.6 $, $Date: 2004/07/15 15:40:46 $</owl:versionInfo> <rdfs:label>SOUPA Action Ontology</rdfs:label> </owl:Ontology> <owl:Class rdf:ID="Action"> <rdfs:label>Action</rdfs:label> </owl:Class> <owl:ObjectProperty rdf:ID="actor"> <rdfs:label>actor</rdfs:label> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="recipient"> <rdfs:label>recipient</rdfs:label> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="target"> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="location"> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="time"> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> <owl:ObjectProperty rdf:ID="instrument"> <rdfs:domain rdf:resource="#Action"/> </owl:ObjectProperty> </rdf:RDF> --- NEW FILE: time --- <?xml version="1.0"?> <!DOCTYPE rdf:RDF [ <!ENTITY soupa "http://pervasive.semanticweb.org/ont/2004/06/"> <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#"> <!ENTITY owl "http://www.w3.org/2002/07/owl#"> <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#"> <!ENTITY tme "http://pervasive.semanticweb.org/ont/2004/06/time#"> <!ENTITY tme1 "http://www.isi.edu/~pan/damltime/time-entry.owl#"> ]> <!-- This ontology document is licensed under the Creative Commons Attribution License. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. --> <rdf:RDF xmlns:rdf = "&rdf;" xmlns:rdfs = "&rdfs;" xmlns:owl = "&owl;" xmlns:xsd = "&xsd;" xmlns:tme1 = "&tme1;" xmlns = "&tme;" xml:base = "http://pervasive.semanticweb.org/ont/2004/06/time"> <owl:Ontology rdf:about="&soupa;time"> <owl:versionInfo>cvs:$Revision: 1.6 $, $Date: 2004/05/25 19:52:44 $</owl:versionInfo> <rdfs:label>SOUPA Time Ontology</rdfs:label> <rdfs:comment></rdfs:comment> </owl:Ontology> <owl:Class rdf:ID="TemporalThing"> <rdfs:label>TemporalThing</rdfs:label> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Instant" /> <owl:Class rdf:about="#Interval" /> </owl:unionOf> <owl:equivalentClass> <owl:Class rdf:about="&tme1;TemporalThing"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="TemporalEvent"> <rdfs:label>TemporalEvent</rdfs:label> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#InstantEvent" /> <owl:Class rdf:about="#IntervalEvent" /> </owl:unionOf> <owl:equivalentClass> <owl:Class rdf:about="&tme1;Event"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="InstantThing"> <rdfs:label>InstantThing</rdfs:label> <rdfs:subClassOf rdf:resource="#TemporalThing"/> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Instant" /> <owl:Class rdf:about="#InstantEvent" /> </owl:unionOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#at"/> <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality> </owl:Restriction> </rdfs:subClassOf> <owl:equivalentClass> <owl:Class rdf:about="&tme1;InstantThing"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="IntervalThing"> <rdfs:label>IntervalThing</rdfs:label> <rdfs:subClassOf rdf:resource="#TemporalThing"/> <owl:unionOf rdf:parseType="Collection"> <owl:Class rdf:about="#Interval" /> <owl:Class rdf:about="#IntervalEvent" /> </owl:unionOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#from" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#to" /> <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality> </owl:Restriction> </rdfs:subClassOf> <owl:equivalentClass> <owl:Class rdf:about="&tme1;IntervalThing"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="InstantEvent"> <rdfs:label>InstantEvent</rdfs:label> <rdfs:subClassOf rdf:resource="#InstantThing"/> <rdfs:subClassOf rdf:resource="#TemporalEvent"/> <owl:equivalentClass> <owl:Class rdf:about="&tme1;InstantEvent"/> </owl:equivalentClass> </owl:Class> <owl:Class rdf:ID="IntervalEvent"> <rdfs:label>IntervalEvent</rdfs:label> <rdfs:subClassOf rdf... [truncated message content] |