-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemo.owl
More file actions
534 lines (449 loc) · 24.9 KB
/
emo.owl
File metadata and controls
534 lines (449 loc) · 24.9 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY emo "http://ocean-data.org/schema/entity-matching#">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
<!ENTITY dc "http://purl.org/dc/elements/1.1/">
<!ENTITY prov "http://www.w3.org/ns/prov#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
]>
<rdf:RDF
xmlns:owl="&owl;"
xmlns:emo="&emo;"
xmlns:xsd="&xsd;"
xmlns:dc="&dc;"
xmlns:prov="&prov;"
xmlns:rdf="&rdf;"
xmlns:rdfs="&rdfs;"
xml:base="&emo;">
<owl:Ontology rdf:about="&emo;">
<rdfs:label rdf:datatype="&xsd;string">Entity Matching Ontology</rdfs:label>
<dc:description>An ontology for describing matches between entities</dc:description>
</owl:Ontology>
<!-- MATCHING ROUTINE -->
<owl:Class rdf:about="&emo;MatchingRoutine">
<rdfs:label rdf:datatype="&xsd;string">Matching Routine</rdfs:label>
<dc:description rdf:datatype="&xsd;string">A matching routine run by an agent to match one or more entities to one or more distinct entities</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Activity"/>
</owl:Class>
<owl:DatatypeProperty rdf:about="&emo;routineIdentifier">
<rdfs:label rdf:datatype="&xsd;string">ID</rdfs:label>
<dc:description>An arbitrary, but unique identifier for this routine</dc:description>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&emo;hasRoutineCriteria">
<rdfs:label rdf:datatype="&xsd;string">Criteria</rdfs:label>
<dc:description>The criteria that determines whether a possible match between two entities is noteworthy</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&prov;Collection"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;wasCreatedBy">
<rdfs:label rdf:datatype="&xsd;string">Creator</rdfs:label>
<dc:description>The agent responisble creating this routine</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&prov;Agent"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasRoutineResults">
<rdfs:label rdf:datatype="&xsd;string">Results</rdfs:label>
<dc:description>The resulting collection of possible matches</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&emo;PotentialMatchCollection"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasLocalDataSource">
<rdfs:label rdf:datatype="&xsd;string">Local Data Source</rdfs:label>
<dc:description>The local data source being matched to external resources</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&prov;Entity"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasExternalDataSource">
<rdfs:label rdf:datatype="&xsd;string">External Data Source</rdfs:label>
<dc:description>The external data source of resource(s) that are being matched to</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&prov;Entity"/>
<rdfs:domain rdf:resource="&emo;MatchingRoutine"/>
</owl:ObjectProperty>
<!-- POTENTIAL MATCH COLLECTION -->
<owl:Class rdf:about="&emo;PotentialMatchCollection">
<rdfs:label rdf:datatype="&xsd;string">Potential Matches</rdfs:label>
<dc:description>Metadata about potential matches for one local entity</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Collection"/>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;hasPotentialMatchRecord">
<rdfs:label rdf:datatype="&xsd;string">Potential Match Record</rdfs:label>
<dc:description>A potential match record</dc:description>
<owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality>
<rdfs:subPropertyOf rdf:resource="&prov;hadMember" />
<rdfs:range rdf:resource="&emo;PotentialMatchMetadata"/>
<rdfs:domain rdf:resource="&emo;PotentialMatchCollection"/>
</owl:ObjectProperty>
<!-- POTENTIAL MATCH METADATA -->
<owl:Class rdf:about="&emo;PotentialMatchMetadata">
<rdfs:label rdf:datatype="&xsd;string">Potential Match Metadata</rdfs:label>
<dc:description>Metadata about the Potential Matches for one local MatchingEntity</dc:description>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;hasLocalMatchingEntity">
<rdfs:label rdf:datatype="&xsd;string">Local Matched Entity</rdfs:label>
<dc:description>The local entity that had potential matches</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&emo;MatchingEntity"/>
<rdfs:domain rdf:resource="&emo;PotentialMatchMetadata"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasExistingMatch">
<rdfs:label rdf:datatype="&xsd;string">Existing Match</rdfs:label>
<dc:description>A pre-existing match</dc:description>
<rdfs:range rdf:resource="&emo;ExistingMatch"/>
<rdfs:domain rdf:resource="&emo;PotentialMatchMetadata"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasPotentialMatch">
<rdfs:label rdf:datatype="&xsd;string">Potential Match</rdfs:label>
<dc:description>A potential match</dc:description>
<owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality>
<rdfs:range rdf:resource="&emo;PotentialMatch"/>
<rdfs:domain rdf:resource="&emo;PotentialMatchMetadata"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&emo;bestMatchQuality">
<rdfs:label rdf:datatype="&xsd;string">Best Match Quality</rdfs:label>
<dc:description>The "best" quality indicator for all the PotentialMatches for this local entity</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;decimal"/>
<rdfs:domain rdf:resource="&emo;PotentialMatchMetadata"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&emo;differingValuesForProperty">
<rdfs:label rdf:datatype="&xsd;string">Differening Values for Property</rdfs:label>
<dc:description>A property type where for the potential match, there are different values</dc:description>
<rdfs:range rdf:resource="&emo;MatchingEntityPropertyType"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:ObjectProperty>
<!-- EXISTING MATCH -->
<owl:Class rdf:about="&emo;ExistingMatch">
<rdfs:label rdf:datatype="&xsd;string">Existing Match</rdfs:label>
<dc:description>A pre-existing match between two entities</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Entity"/>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;matchedResource">
<rdfs:label rdf:datatype="&xsd;string">Matched Resource</rdfs:label>
<dc:description>The URI of a rdf resource for a pre-existing match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&owl;Thing"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&emo;existingMatchQuality">
<rdfs:label rdf:datatype="&xsd;string">Existing Match Quality</rdfs:label>
<dc:description>The quality indicator for a pre-existing match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;decimal"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;existingMatchNotes">
<rdfs:label rdf:datatype="&xsd;string">Existing Match Notes</rdfs:label>
<dc:description>Notes about the pre-existing match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;existingMatchDifference">
<rdfs:label rdf:datatype="&xsd;string">Existing Match Difference</rdfs:label>
<dc:description>Something about the pre-existing match that made it less than perfect</dc:description>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;existingMatchRelationship">
<rdfs:label rdf:datatype="&xsd;string">Existing Match Relationship</rdfs:label>
<dc:description>The predicate for the pre-existing match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;existingMatchSource">
<rdfs:label rdf:datatype="&xsd;string">Existing Match Source</rdfs:label>
<dc:description>The source for the pre-existing matched eternal resource</dc:description>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;ExistingMatch"/>
</owl:DatatypeProperty>
<!-- POTENTIAL MATCH -->
<owl:Class rdf:about="&emo;PotentialMatch">
<rdfs:label rdf:datatype="&xsd;string">Potential Match</rdfs:label>
<dc:description>A potential match describes the quality of the match between two entities</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Entity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&emo;matchQuality"/>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&emo;hasLocalEntity"/>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&emo;hasExternalEntity"/>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:DatatypeProperty rdf:about="&emo;matchQuality">
<rdfs:label rdf:datatype="&xsd;string">Match Quality</rdfs:label>
<dc:description>The calculated quality of the potential match, typically a percentage between 0 - 100</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;decimal"/>
<rdfs:domain rdf:resource="&emo;PotentialMatch"/>
</owl:DatatypeProperty>
<owl:ObjectProperty rdf:about="&emo;hasLocalEntity">
<rdfs:label rdf:datatype="&xsd;string">Local Entity</rdfs:label>
<dc:description>The local entity in the potential match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&emo;MatchingEntity"/>
<rdfs:domain rdf:resource="&emo;PotentialMatch"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;hasExtenalEntity">
<rdfs:label rdf:datatype="&xsd;string">External Entity</rdfs:label>
<dc:description>The external entity in the potential match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&emo;MatchingEntity"/>
<rdfs:domain rdf:resource="&emo;PotentialMatch"/>
</owl:ObjectProperty>
<!-- MATCHING ENTITY -->
<owl:Class rdf:about="&emo;MatchingEntity">
<rdfs:label rdf:datatype="&xsd;string">Matching Entity</rdfs:label>
<dc:description>An entity that can be compared to other Matching Entities and matched</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Entity"/>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;hasMatchingEntityProperty">
<rdfs:label rdf:datatype="&xsd;string">Matching Entity Property</rdfs:label>
<dc:description>A property for comparison of a MatchingEntity</dc:description>
<rdfs:range rdf:resource="&emo;MatchingEntityProperty"/>
<rdfs:domain rdf:resource="&emo;MatchingEntity"/>
</owl:ObjectProperty>
<!-- MATCHING ENTITY PROPERTY -->
<owl:Class rdf:about="&emo;MatchingEntityProperty">
<rdfs:label rdf:datatype="&xsd;string">Matching Entity Property</rdfs:label>
<dc:description>An property whose value can be compared to other MatchingEntityProperty's of the same type</dc:description>
<rdfs:subClassOf rdf:resource="&prov;Entity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&emo;hasPropertyType"/>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&emo;propertyValue"/>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;hasPropertyType">
<rdfs:label rdf:datatype="&xsd;string">Matching Entity Property</rdfs:label>
<dc:description>A property for comparison of a MatchingEntity</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&emo;MatchingEntityPropertyType"/>
<rdfs:domain rdf:resource="&emo;MatchingEntityProperty"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&emo;propertyValue">
<rdfs:label rdf:datatype="&xsd;string">Property Value</rdfs:label>
<dc:description>The value of this property for the associated entity</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:subPropertyOf rdf:resource="&prov;value"/>
<rdfs:domain rdf:resource="&emo;MatchingEntityProperty"/>
</owl:DatatypeProperty>
<!-- MATCHING ENTITY PROPERTY TYPE -->
<owl:Class rdf:about="&emo;MatchingEntityPropertyType">
<rdfs:label rdf:datatype="&xsd;string">Matching Entity Property Type</rdfs:label>
<dc:description>A specific named type of property</dc:description>
</owl:Class>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Cruise Matching
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- POTENTIAL CRUISE MATCH METADATA -->
<owl:Class rdf:about="&emo;PotentialCruiseMatchMetadata">
<rdfs:label rdf:datatype="&xsd;string">Potential Cruise Match Metadata</rdfs:label>
<dc:description>Metadata about the Potential Cruise Matches for one local Cruise</dc:description>
<rdfs:subClassOf rdf:resource="&emo;PotentialMatchMetadata"/>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;hasLocalCruise">
<rdfs:label rdf:datatype="&xsd;string">Local Cruise</rdfs:label>
<dc:description>The local cruise that had potential matches</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:subPropertyOf rdf:resource="&emo;hasLocalMatchingEntity" />
<rdfs:range rdf:resource="&emo;Cruise"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="&emo;localCruiseURI">
<rdfs:label rdf:datatype="&xsd;string">Local Cruise URI</rdfs:label>
<dc:description>An local cruise URI known by the local metadata system</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;localCruiseID">
<rdfs:label rdf:datatype="&xsd;string">Local Cruise ID</rdfs:label>
<dc:description>Should be stated as equivalent to the localCruise:cruiseID</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;localStartDate">
<rdfs:label rdf:datatype="&xsd;string">Local Start Date</rdfs:label>
<dc:description>Should be stated as equivalent to the localCruise:startDate</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;localVesselCode">
<rdfs:label rdf:datatype="&xsd;string">Local Vessel Code</rdfs:label>
<dc:description>Should be stated as equivalent to the localCruise:vesselCode</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;PotentialCruiseMatchMetadata"/>
</owl:DatatypeProperty>
<!-- POSSIBLE CRUISE MATCH -->
<owl:Class rdf:about="&emo;PossibleCruiseMatch">
<rdfs:label rdf:datatype="&xsd;string">Possible Cruise Match</rdfs:label>
<dc:description>A possible match between two cruises</dc:description>
<rdfs:subClassOf rdf:resource="&emo;PotentialMatch"/>
</owl:Class>
<owl:ObjectProperty rdf:about="&emo;localCruise">
<rdfs:label rdf:datatype="&xsd;string">Local Cruise</rdfs:label>
<dc:description>The local cruise in the potential match</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:subPropertyOf rdf:resource="&emo;localEntity" />
<rdfs:range rdf:resource="&emo;Cruise"/>
<rdfs:domain rdf:resource="&emo;PotentialMatch"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="&emo;externalCruise">
<rdfs:label rdf:datatype="&xsd;string">External Cruise</rdfs:label>
<dc:description>The external cruise in the potential match</dc:description>
<owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality>
<rdfs:subPropertyOf rdf:resource="&emo;externalEntity" />
<rdfs:range rdf:resource="&emo;Cruise"/>
<rdfs:domain rdf:resource="&emo;PotentialMatch"/>
</owl:ObjectProperty>
<!-- CRUISE -->
<owl:Class rdf:about="&emo;Cruise">
<rdfs:label rdf:datatype="&xsd;string">A cruise resource</rdfs:label>
<rdfs:subClassOf rdf:resource="&emo;MatchingEntity"/>
<dc:description>A Cruise</dc:description>
</owl:Class>
<owl:DatatypeProperty rdf:about="&emo;cruiseID">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_id,
-->
<dc:description>The official cruise ID such as 'OC404-01' via</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;startDate">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_start_date,
-->
<dc:description>The official start date of the cruise such as '2014-11-24'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;date"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;endDate">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_end_date,
-->
<dc:description>The official end date of the cruise such as '2014-11-30'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;date"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;chiefScientist">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_chief_scientist,
-->
<dc:description>The name of the official chief scientist of the cruise such as 'Dennis McGillicuddy'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;vesselName">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_vessel_name,
-->
<dc:description>The official name of the vessel of the cruise such as 'Oceanus'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;vesselCode">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_vessel_code,
-->
<dc:description>The official code of the vessel of the cruise such as '32OC'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;string"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;vesselURI">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_vessel_uri,
-->
<dc:description>The official code of the vessel of the cruise such as 'http://vocab.nerc.ac.uk/collection/L06/current/31/'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="&emo;communityURI">
<!--
Should be a View into the propertyValue of one of this Cruise:hasMatchingEntityProperty,
where rdf:type is &emo;property_cruise_community_uri,
-->
<dc:description>The community URI of the cruise such as 'http://vocab.nerc.ac.uk/collection/C17/current/32OC'</dc:description>
<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
<rdfs:range rdf:resource="&xsd;anyURI"/>
<rdfs:domain rdf:resource="&emo;Cruise"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:NamedIndividual rdf:about="&emo;property_cruise_id">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
<rdfs:label rdf:datatype="&xsd;string">Cruise ID</rdfs:label>
<dc:description>The cruise ID of a Cruise</dc:description>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_start_date">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
<rdfs:label rdf:datatype="&xsd;string">Start Date</rdfs:label>
<dc:description>The date of the </dc:description>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_end_date">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_vessel_code">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_vessel_name">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_vessel_uri">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_chief_scientist">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="&emo;property_cruise_community_uri">
<rdf:type rdf:resource="&emo;MatchingEntityPropertyType"/>
</owl:NamedIndividual>
</rdf:RDF>