-
Notifications
You must be signed in to change notification settings - Fork 0
/
agents.rdf
259 lines (183 loc) · 11.2 KB
/
agents.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/rec/agents/"
xml:base="https://w3id.org/rec/agents/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:o2o="https://karlhammar.com/owl2oas/o2o.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:core="https://w3id.org/rec/core/"
xmlns:qudt="http://qudt.org/schema/qudt/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vaem="http://www.linkedmodel.org/schema/vaem#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:core1="http://www.linkedmodel.org/owl/schema/core#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:metadata="https://w3id.org/rec/metadata/"
xmlns:cpannotationschema="http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#">
<owl:Ontology rdf:about="https://w3id.org/rec/agents/">
<owl:versionIRI rdf:resource="https://w3id.org/rec/agents/3.3/"/>
<owl:imports rdf:resource="https://w3id.org/rec/core/3.3/"/>
<cc:license rdf:resource="https://opensource.org/licenses/MIT"/>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Karl Hammar</dc:creator>
<dc:description xml:lang="en">This REC model covers basic types of agents (people, organizations, groups), structurally mostly aligned with FOAF -- divergences are noted in the respective propertys' documentation.</dc:description>
<dc:publisher>RealEstateCore Consortium</dc:publisher>
<dc:title>RealEstateCore Agents Module</dc:title>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2020-06-23</dcterms:modified>
<vann:preferredNamespacePrefix>agents</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri>https://w3id.org/rec/agents/3.3/</vann:preferredNamespaceUri>
<cpannotationschema:coversRequirements xml:lang="en">What is Karl Hammar's GitHub account ID?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">What is the RealEstateCore organizational GitHub account ID?</cpannotationschema:coversRequirements>
<cpannotationschema:coversRequirements xml:lang="en">Who are the members of the RealEstateCore release engineering team?</cpannotationschema:coversRequirements>
<rdfs:comment xml:lang="en">The Agents module is work-in-progress; requirements are rather unclear as of yet.</rdfs:comment>
<rdfs:seeAlso rdf:resource="https://w3id.org/rec/"/>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3.3</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/rec/agents/hasMember -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/agents/hasMember">
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Organization"/>
<rdfs:range rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">Indicates the individual Persons that are members of an Organization. For member Organizations, use hasPart.</rdfs:comment>
<rdfs:label xml:lang="en">has member</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/rec/agents/isMemberOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/rec/agents/isMemberOf">
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:range rdf:resource="https://w3id.org/rec/agents/Organization"/>
<rdfs:comment xml:lang="en">Indicates the Organization(s) that this Person is a member of.</rdfs:comment>
<rdfs:label xml:lang="en">is member of</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/rec/agents/familyName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/familyName">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/agents/name"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">A person's family name.</rdfs:comment>
<rdfs:label xml:lang="en">family name</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/firstName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/firstName">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/agents/name"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">A person's first name (if they have one; this varies across cultural contexts).</rdfs:comment>
<rdfs:label xml:lang="en">first name</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/gender -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/gender">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">A gender designation for a Person.</rdfs:comment>
<rdfs:label xml:lang="en">gender</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/givenName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/givenName">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/agents/name"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">A person's personal, individual name.</rdfs:comment>
<rdfs:label xml:lang="en">given name</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/image -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/image">
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">URL link to an image that represents the person.</rdfs:comment>
<rdfs:label xml:lang="en">image</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/lastName -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/lastName">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/rec/agents/name"/>
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Person"/>
<rdfs:comment xml:lang="en">A person's last name (if they have one; this varies across cultural contexts).</rdfs:comment>
<rdfs:label xml:lang="en">last name</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/logo -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/logo">
<rdfs:domain rdf:resource="https://w3id.org/rec/agents/Organization"/>
<rdfs:comment xml:lang="en">URL link to an image/logo that represents the organization.</rdfs:comment>
<rdfs:label xml:lang="en">logo</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/rec/agents/name -->
<owl:DatatypeProperty rdf:about="https://w3id.org/rec/agents/name">
<rdfs:domain rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:comment xml:lang="en">A name for some Agent.</rdfs:comment>
<rdfs:label xml:lang="en">name</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/rec/agents/Company -->
<owl:Class rdf:about="https://w3id.org/rec/agents/Company">
<rdfs:subClassOf rdf:resource="https://w3id.org/rec/agents/Organization"/>
<rdfs:label xml:lang="en">Company</rdfs:label>
</owl:Class>
<!-- https://w3id.org/rec/agents/Department -->
<owl:Class rdf:about="https://w3id.org/rec/agents/Department">
<rdfs:subClassOf rdf:resource="https://w3id.org/rec/agents/Organization"/>
<rdfs:label xml:lang="en">Department</rdfs:label>
</owl:Class>
<!-- https://w3id.org/rec/agents/Group -->
<owl:Class rdf:about="https://w3id.org/rec/agents/Group">
<rdfs:subClassOf rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:comment xml:lang="en">A collection of individual Agents (included in the Group via the object property hasMember). These agents can be organizations or persons.</rdfs:comment>
<rdfs:label xml:lang="en">Group</rdfs:label>
<rdfs:seeAlso rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- https://w3id.org/rec/agents/Organization -->
<owl:Class rdf:about="https://w3id.org/rec/agents/Organization">
<rdfs:subClassOf rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/rec/agents/hasMember"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/rec/agents/Person"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/rec/core/hasPart"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/rec/agents/Organization"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/rec/core/isPartOf"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/rec/agents/Organization"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">An organization of any sort (e.g., a business, association, project, consortium, tribe, etc.)</rdfs:comment>
<rdfs:label xml:lang="en">Organization</rdfs:label>
</owl:Class>
<!-- https://w3id.org/rec/agents/Person -->
<owl:Class rdf:about="https://w3id.org/rec/agents/Person">
<rdfs:subClassOf rdf:resource="https://w3id.org/rec/core/Agent"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/rec/agents/isMemberOf"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/rec/agents/Organization"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A natural person (i.e., an individual human being).</rdfs:comment>
<rdfs:label xml:lang="en">Person</rdfs:label>
</owl:Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi -->