-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathefbo.owl
1204 lines (864 loc) · 61.6 KB
/
efbo.owl
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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#"
xml:base="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl">
<owl:versionIRI rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo/1.0.0"/>
<dc:language xml:lang="en-us">
English
</dc:language>
<terms:modified xml:lang="en">Last modified: March 14, 2017, 6:12 PM</terms:modified>
<dc:title xml:lang="en">Event-Based Functional Behavior Ontology (EFBO)</dc:title>
<owl:versionInfo xml:lang="en">2.0</owl:versionInfo>
<dc:description xml:lang="en">EFBO is an ontology to represent Event-based Functional Behavior of a System.</dc:description>
<dc:creator xml:lang="en">Fahim T. Imam ([email protected])</dc:creator>
<dc:date xml:lang="en">April 15, 2015</dc:date>
<dc:rights xml:lang="en">All Rights Reserved by Fahim Imam at Queen's University, Kingston, Ontario, Canada.</dc:rights>
<rdfs:label xml:lang="en">EFBO</rdfs:label>
<skos:note xml:lang="en">A subset of annotation properties within the EFBO ontology are imported from the following two sources: (1) Simple Knowledge Organization System (SKOS). See also: SKOS documentation source at http://www.w3.org/2004/02/skos/ Also note: All resources from the SKOS elements are kept persistent with their original source URIs: http://www.w3.org/2004/02/skos/ (2) The Dublin Core (DC) Meta Data Initiative. See also: The DCMI Documentation Source at http://dublincore.org/documents/2012/06/14/dcmi-terms/. Also note: All resources from the DC are kept persistent with their original source URIs: http://purl.org/dc/elements/1.1/</skos:note>
<dc:publisher xml:lang="en">Fahim T. Imam ([email protected]) at Queen's University, Kingston, Ontario, Canada.</dc:publisher>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor">
<dc:description xml:lang="en-us">Examples of a Contributor include a person, an
organisation, or a service. Typically, the name of a
Contributor should be used to indicate the entity.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#contributor-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">An entity responsible for making contributions to the
content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Contributor</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/coverage -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/coverage">
<dc:description xml:lang="en-us">Coverage will typically include spatial location (a place name
or geographic coordinates), temporal period (a period label,
date, or date range) or jurisdiction (such as a named
administrative entity).
Recommended best practice is to select a value from a
controlled vocabulary (for example, the Thesaurus of Geographic
Names [TGN]) and that, where appropriate, named places or time
periods be used in preference to numeric identifiers such as
sets of coordinates or date ranges.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#coverage-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">The extent or scope of the content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Coverage</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator">
<dc:description xml:lang="en-us">Examples of a Creator include a person, an organisation,
or a service. Typically, the name of a Creator should
be used to indicate the entity.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#creator-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">An entity primarily responsible for making the content
of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Creator</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date">
<dc:description xml:lang="en-us">Typically, Date will be associated with the creation or
availability of the resource. Recommended best practice
for encoding the date value is defined in a profile of
ISO 8601 [W3CDTF] and follows the YYYY-MM-DD format.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#date-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">A date associated with an event in the life cycle of the
resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Date</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description">
<dc:description xml:lang="en-us">Description may include but is not limited to: an abstract,
table of contents, reference to a graphical representation
of content or a free-text account of the content.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#description-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">An account of the content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Description</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/format -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/format">
<dc:description xml:lang="en-us">Typically, Format may include the media-type or dimensions of
the resource. Format may be used to determine the software,
hardware or other equipment needed to display or operate the
resource. Examples of dimensions include size and duration.
Recommended best practice is to select a value from a
controlled vocabulary (for example, the list of Internet Media
Types [MIME] defining computer media formats).</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#format-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">The physical or digital manifestation of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Format</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier">
<dc:description xml:lang="en-us">Recommended best practice is to identify the resource by means
of a string or number conforming to a formal identification
system.
Example formal identification systems include the Uniform
Resource Identifier (URI) (including the Uniform Resource
Locator (URL)), the Digital Object Identifier (DOI) and the
International Standard Book Number (ISBN).</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#identifier-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">An unambiguous reference to the resource within a given context.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Resource Identifier</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/language -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/language">
<dc:description xml:lang="en-us">Recommended best practice is to use RFC 3066 [RFC3066],
which, in conjunction with ISO 639 [ISO639], defines two-
and three-letter primary language tags with optional
subtags. Examples include "en" or "eng" for English,
"akk" for Akkadian, and "en-GB" for English used in the
United Kingdom.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#language-005"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">A language of the intellectual content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Language</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/publisher">
<dc:description xml:lang="en-us">Examples of a Publisher include a person, an organisation,
or a service.
Typically, the name of a Publisher should be used to
indicate the entity.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#publisher-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">An entity responsible for making the resource available</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Publisher</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/relation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/relation">
<dc:description xml:lang="en-us">
Recommended best practice is to reference the resource by means
of a string or number conforming to a formal identification
system.
</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#relation-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">A reference to a related resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Relation</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights">
<dc:description xml:lang="en-us">
Typically, a Rights element will contain a rights
management statement for the resource, or reference
a service providing such information. Rights information
often encompasses Intellectual Property Rights (IPR),
Copyright, and various Property Rights.
If the Rights element is absent, no assumptions can be made
about the status of these and other rights with respect to
the resource.
</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#rights-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">Information about rights held in and over the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Rights Management</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source">
<dc:description xml:lang="en-us">The present resource may be derived from the Source resource
in whole or in part. Recommended best practice is to reference
the resource by means of a string or number conforming to a
formal identification system.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#source-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">A reference to a resource from which the present resource
is derived.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/subject">
<dc:description xml:lang="en-us">Typically, a Subject will be expressed as keywords,
key phrases or classification codes that describe a topic
of the resource. Recommended best practice is to select
a value from a controlled vocabulary or formal
classification scheme.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#subject-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">The topic of the content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Subject and Keywords</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title">
<dc:description xml:lang="en-us">
Typically, a Title will be a name by which the resource is
formally known.
</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#title-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">A name given to the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Title</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type">
<dc:description xml:lang="en-us">Type includes terms describing general categories, functions,
genres, or aggregation levels for content. Recommended best
practice is to select a value from a controlled vocabulary
(for example, the DCMI Type Vocabulary [DCMITYPE]). To
describe the physical or digital manifestation of the
resource, use the Format element.</dc:description>
<dc:type rdf:resource="http://dublincore.org/usage/documents/principles/#element"/>
<terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#type-004"/>
<terms:issued>1999-07-02</terms:issued>
<terms:modified>2002-10-04</terms:modified>
<rdfs:comment xml:lang="en-us">The nature or genre of the content of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
<rdfs:label xml:lang="en-us">Resource Type</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/hasVersion -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasVersion"/>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel">
<rdfs:comment xml:lang="en">The range of skos:altLabel is the class of RDF plain literals.</rdfs:comment>
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">alternative label</rdfs:label>
<skos:definition xml:lang="en">An alternative lexical label for a resource.</skos:definition>
<skos:example xml:lang="en">Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).</skos:example>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#changeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#changeNote">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">change note</rdfs:label>
<skos:definition xml:lang="en">A note about a modification to a concept.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">definition</rdfs:label>
<skos:definition xml:lang="en">A statement or formal explanation of the meaning of a concept.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#editorialNote">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">editorial note</rdfs:label>
<skos:definition xml:lang="en">A note for an editor, translator or maintainer of the vocabulary.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">example</rdfs:label>
<skos:definition xml:lang="en">An example of the use of a concept.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#hiddenLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#hiddenLabel">
<rdfs:comment xml:lang="en">The range of skos:hiddenLabel is the class of RDF plain literals.</rdfs:comment>
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">hidden label</rdfs:label>
<skos:definition xml:lang="en">A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#historyNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#historyNote">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">history note</rdfs:label>
<skos:definition xml:lang="en">A note about the past state/use/meaning of a concept.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#note -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">note</rdfs:label>
<skos:definition xml:lang="en">A general note, for any purpose.</skos:definition>
<skos:scopeNote xml:lang="en">This property may be used directly, or as a super-property for more specific note types.</skos:scopeNote>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel">
<rdfs:comment xml:lang="en">A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.</rdfs:comment>
<rdfs:comment xml:lang="en">The range of skos:prefLabel is the class of RDF plain literals.</rdfs:comment>
<rdfs:comment xml:lang="en">skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
disjoint properties.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">preferred label</rdfs:label>
<skos:definition xml:lang="en">The preferred lexical label for a resource, in a given language.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">scope note</rdfs:label>
<skos:definition xml:lang="en">A note that helps to clarify the meaning and/or the use of a concept.</skos:definition>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty"/>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:label xml:lang="en">eventProperty</rdfs:label>
<skos:hiddenLabel xml:lang="en">eventProperty</skos:hiddenLabel>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#functionalityProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#functionalityProperty">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasElement -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasElement">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isElementOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#UI"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#UI"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasEntity -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasEntity">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#systemProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isEntityOf"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#System"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#SystemEntity"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFinalEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFinalEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#functionalityProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Functionality"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFunctionalEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFunctionalEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#functionalityProperty"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFinalEvent"/>
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPastEvent"/>
</owl:propertyChainAxiom>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInitialEvent"/>
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFutureEvent"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFutureEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFutureEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPastEvent"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInitialEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInitialEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#functionalityProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Functionality"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInteractionWith -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInteractionWith">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInterface -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasInterface">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInterfaceOf"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Interface"/>
<rdfs:comment>At any given time, a system has an interface which changes over time.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasNextEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasNextEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasFutureEvent"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPreviousEvent"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AsymmetricProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#IrreflexiveProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasParallelEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasParallelEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<owl:propertyDisjointWith rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isAlternateEventOf"/>
<rdfs:comment xml:lang="en">A relation between two events that are parallel events. Instances that hold this property must be Inferred by the occurence of the previous event of the involving events.</rdfs:comment>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPastEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPastEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPreviousEvent"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPreviousEvent -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPreviousEvent">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPastEvent"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Interface"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#entityProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#invokes -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#invokes">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInvokedBy"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith"/>
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInterfaceOf"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isAlternateEventOf -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isAlternateEventOf">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
</owl:ObjectProperty>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointProperties"/>
<owl:members rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isAlternateEventOf"/>
</owl:members>
</rdf:Description>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isElementOf -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isElementOf">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isEntityOf -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isEntityOf">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#systemProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInterfaceOf -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInterfaceOf">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interfaceProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Interface"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInvokedBy -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInvokedBy">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isPerformedBy -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isPerformedBy">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#performs"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInvokedBy"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isTriggeredBy -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isTriggeredBy">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#eventProperty"/>
<owl:inverseOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#triggers"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasPreviousEvent"/>
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isInvokedBy"/>
</owl:propertyChainAxiom>
<dc:description xml:lang="en">See 'triggers' property.</dc:description>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#performs -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#performs">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty"/>
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent"/>
<rdfs:range rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Action"/>
</owl:ObjectProperty>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#systemProperty -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#systemProperty"/>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#triggers -->
<owl:ObjectProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#triggers">
<rdfs:subPropertyOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#agentProperty"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasCondition -->
<owl:DatatypeProperty rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasCondition">
<rdfs:domain rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#API -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#API">
<rdfs:subClassOf rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Interface"/>
<dc:description xml:lang="en">Just as a graphical user interface makes it easier for people to use programs, application programming interfaces make it easier for developers to use certain technologies in building applications. By abstracting the underlying implementation and only exposing objects or actions the developer needs, an API reduces the cognitive load on a programmer.</dc:description>
<dc:source xml:lang="en">Wikipedia</dc:source>
<rdfs:label xml:lang="en">Application Program Interface</rdfs:label>
<skos:prefLabel xml:lang="en">Application Programming Interface</skos:prefLabel>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Action -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Action">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isPerformedBy"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<dc:creator xml:lang="en">Fahim Imam</dc:creator>
<dc:date xml:lang="en">August 2015</dc:date>
<rdfs:label xml:lang="en">Action</rdfs:label>
<skos:definition xml:lang="en">An action is a kind of event that has some Agent.
It is necessary for an action to have some interface.
Example: "click the login button by a user agent" is an action.
Example: "verify the user credential" by a server agent is an action.
Example: "Send user name and password to the server" by a client agent is an action.</skos:definition>
<skos:example xml:lang="en">Synonymous with: Trigger, Triggered Action, Action Item, invokable action.</skos:example>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Activity -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Activity">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Action"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasNextEvent"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<dc:creator xml:lang="en">Fahim Imam</dc:creator>
<dc:date xml:lang="en">August 2015</dc:date>
<rdfs:label xml:lang="en">Activity</rdfs:label>
<rdfs:seeAlso xml:lang="en">BFO concept of SNAP and SPAN.</rdfs:seeAlso>
<skos:definition xml:lang="en">An 'Activity' is an 'Action' that triggers some 'Event'.
Ex: 'Clicking a login button by a user agent' that triggers an event such as 'login to the system'.</skos:definition>
<skos:note xml:lang="en">Activity is like a movie. It has a beginning, the plot and and the end. Whereas, event is like a snapshot or a picture. Just like movie is made of countless pictures, activity consists of events. As explained earlier, start of an activity can be en event, completion of sub-activity or a task within the activity can also be an event. [Collected from the web]</skos:note>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#SystemEntity"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Interface"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<dc:creator xml:lang="en">Fahim Imam</dc:creator>
<rdfs:label xml:lang="en">Agent</rdfs:label>
<skos:definition xml:lang="en">An Agent is a 'System Entity' which interacts with some interface.</skos:definition>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#AlternativeEvent -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#AlternativeEvent">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasNextEvent"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#isAlternateEventOf"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment>State that has multiple possible goals.</rdfs:comment>
<rdfs:label xml:lang="en">Decision Point</rdfs:label>
<skos:note xml:lang="en">login button is clicked -> triggers verify user for the system agent.</skos:note>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#ClientAgent -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#ClientAgent">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Agent"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#interactsWith"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#API"/>
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#SystemInterface"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">Client Agent</rdfs:label>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#CompositeUI -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#CompositeUI">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#UI"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#hasElement"/>
<owl:someValuesFrom rdf:resource="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#UI"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">Composite User Interface</rdfs:label>
<skos:definition xml:lang="en">An User Interface that has some other 'User interface' as its part.</skos:definition>
<skos:example xml:lang="en">A login interface that has the following three UI components : a textfield, a password field, a login button. In this case the login interface is a composite or aggregate UI interface.</skos:example>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Entity -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Entity"/>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#EntityClassifier -->
<owl:Class rdf:about="http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#EntityClassifier">
<dc:creator xml:lang="en">Fahim Imam</dc:creator>
<dc:description xml:lang="en">Set of defined classes to describe a set of Entities.
The instances of the entities can be classified via reasoner.
This is an "interface class" of the ontology so that users can classify the entities based on their own definition.
Example: Activities performed by a System Agent that required inputs from a user.
Example: Set of events that happens before the activity of login button being pressed.
Example: Set of functionalities of a login interface.
Example: A chain of processes that led to another process.</dc:description>
<rdfs:label xml:lang="en">Entity Classifier Class</rdfs:label>
<skos:definition xml:lang="en">Represents a set of defined classification schemata according to some shared qualities or characteristics of the 'System Entity'.</skos:definition>
</owl:Class>
<!-- http://www.cs.queensu.ca/~imam/ontologies/efbo.owl#Event -->