My favorites | Sign in
Project Logo
                
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix wgs84_pos: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix address: <http://schemas.talis.com/2005/address/schema#> .
@prefix bibo_degrees: <http://purl.org/ontology/bibo/degrees/> .
@prefix bibo_status: <http://purl.org/ontology/bibo/status/> .

<http://purl.org/ontology/bibo/> a owl:Ontology ;
dcterms:title "The Bibliographic Ontology" ;
dcterms:creator <http://fgiasson.com/me/> ;
dcterms:creator <http://purl.org/net/darcusb/info#me> ;
dcterms:description """ The Bibliographic Ontology describe
bibliographic things on the semantic Web in RDF. This ontology can be
used as a citation ontology, as a document classification ontology, or
simply as a way to describe any kind of document in RDF. It has been
inspired by many existing document description metadata formats, and
can be used as a common ground for converting other bibliographic data
sources. """@en ;
dcterms:identifier <http://purl.org/ontology/bibo/> ;
dcterms:isVersionOf <http://purl.org/ontology/bibo/> ;
vann:preferredNamespaceUri "http://purl.org/ontology/bibo/" ;
vann:preferredNamespacePrefix "bibo" .

# ---------- Classes -----------

# ------ Document classes ----

bibo:Document a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Document"@en ;
rdfs:comment """A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information."""@en ;
owl:equivalentClass foaf:Document ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:Image a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Image"@en ;
rdfs:comment """A document that presents visual or diagrammatic information."""@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
owl:equivalentClass foaf:Image ;
rdfs:subclassOf bibo:Document .

bibo:PersonalCommunicationDocument a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Personal Communication Document"@en ;
rdfs:comment "A personal communication manifested in some document."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subclassOf bibo:Document .


bibo:Article a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Article"@en ;
rdfs:comment "A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .


bibo:AcademicArticle a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Academic Article"@en ;
rdfs:comment "A scholarly academic article, typically published in a journal."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Article .

bibo:Slideshow a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Slideshow"@en ;
rdfs:comment "A presentation of a series of slides, usually presented in front of an audience with written text and images."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .


# ---------- Collections -----------

bibo:Collection a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Collection"@en ;
rdfs:comment "A collection of Documents or Collections"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom [a owl:Class; owl:unionOf (bibo:Document bibo:Collection)] ;
owl:onProperty dcterms:hasPart ] .


bibo:Series a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Series"@en ;
rdfs:comment "A loose, thematic, collection of Documents, often Books."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Collection ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Document ;
owl:onProperty dcterms:hasPart ] .

bibo:CollectedDocument a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Collected Document"@en ;
rdfs:comment "A document that simultaneously contains other documents."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Document ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Periodical a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Periodical"@en ;
rdfs:comment "A group of related documents issued at regular intervals. "@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Collection ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Issue ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Issue a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Issue"@en ;
rdfs:comment "something that is printed or published and distributed, esp. a given number of a periodical"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:CollectedDocument ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Article ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Journal a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Journal"@en ;
rdfs:comment "A periodical of scholarly journal Articles."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Periodical ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Issue ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Newspaper a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Newspaper"@en ;
rdfs:comment "A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Periodical ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Issue ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Magazine a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Magazine"@en ;
rdfs:comment "A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Periodical ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Issue ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:CourtReporter a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Court Reporter"@en ;
rdfs:comment "A collection of legal cases."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Periodical ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:LegalDocument ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:Code a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Code"@en ;
rdfs:comment "A collection of statutes."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Periodical ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:allValuesFrom bibo:Legislation ;
owl:onProperty dcterms:hasPart ] ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:minCardinality "1"^^<http://www.w3.org/2001/XMLSchema#int>
;
owl:onProperty dcterms:hasPart ] .

bibo:LegalDocument a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Legal Document"@en ;
rdfs:comment "A legal document; for example, a court decision, a brief, and so forth."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Manuscript a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Manuscript"@en ;
rdfs:comment "An unpublished Document, which may also be submitted to a publisher for publication."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Book a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Book"@en ;
rdfs:comment "A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Map a owl:Class ;
vs:term_status "unstable" ;
rdfs:label "Map"@en ;
rdfs:comment "A graphical depiction of geographic features."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Image .

bibo:AudioDocument a owl:Class ;
vs:term_status "stable" ;
rdfs:label "audio document"@en ;
rdfs:comment "An audio document; aka record."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:AudioVisualDocument a owl:Class ;
vs:term_status "stable" ;
rdfs:label "audio-visual document"@en ;
rdfs:comment "An audio-visual document; film, video, and so forth."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Film a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Film"@en ;
rdfs:comment "aka movie."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:AudioVisualDocument .

bibo:Manual a owl:Class ;
vs:term_status "unstable" ;
rdfs:label "Manual"@en ;
rdfs:comment "A small reference book, especially one giving instructions."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Book .

bibo:Legislation a owl:Class ;
vs:term_status "unstable" ;
rdfs:label "Legislation"@en ;
rdfs:comment "A legal document proposing or enacting a law or a group of laws."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:LegalDocument .

bibo:Patent a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Patent"@en ;
rdfs:comment "A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Report a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Report"@en ;
rdfs:comment "A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc.."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Thesis a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Thesis"@en ;
rdfs:comment "A document created to summarize research findings associated with the completion of an academic degree."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .

bibo:Bill a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Bill"@en ;
rdfs:comment "Draft legislation presented for discussion to a legal body."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Legislation .

bibo:Statute a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Statute"@en ;
rdfs:comment "A bill enacted into law."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Legislation .

bibo:LegalCaseDocument a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A document accompanying a legal case."@en ;
rdfs:label "Legal Case Document"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:LegalDocument .

bibo:Brief a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A written argument submitted to a court."@en ;
rdfs:label "Brief"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:LegalCaseDocument .

bibo:LegalDecision a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law."@en ;
rdfs:label "Decision"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:LegalCaseDocument .

bibo:Letter a owl:Class ;
vs:term_status "stable" ;
rdfs:comment "A written or printed communication addressed to a person or organization and usually transmitted by mail."@en ;
rdfs:label "Letter"@en ;
vs:term_status "stable" ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:PersonalCommunicationDocument .

bibo:Email a owl:Class ;
rdfs:comment "A written communication addressed to a person or organization and transmitted electronically."@en ;
rdfs:label "EMail"@en ;
vs:term_status "stable" ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:PersonalCommunicationDocument .

bibo:Proceedings a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A compilation of documents published from an event, such as a conference."@en ;
rdfs:label "Proceedings"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Book .

bibo:EditedBook a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Edited Book"@en ;
rdfs:comment "An edited book."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:CollectedDocument .

bibo:Note a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Note"@en ;
rdfs:comment "Notes or annotations about a resource."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document .


# -------- document parts -----------

bibo:DocumentPart a owl:Class ;
vs:term_status "unstable" ;
rdfs:label "document part"@en ;
rdfs:comment "a distinct part of a larger document or collected document."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Document ;
rdfs:subClassOf
[ a owl:Restriction ;
owl:maxCardinality "1" ;
owl:onProperty dcterms:isPartOf ] .

bibo:BookSection a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A section of a book."@en ;
rdfs:label "Book Section"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:DocumentPart .

bibo:Chapter a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A chapter of a book."@en ;
rdfs:label "Chapter"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:BookSection .

bibo:Slide a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A slide in a slideshow"@en ;
rdfs:label "Slide"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:DocumentPart .



# ------ Excerpts and Quotes --------

bibo:Excerpt a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Excerpt"@en ;
rdfs:comment "A passage selected from a larger work."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:DocumentPart .

bibo:Quote a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Quote"@en ;
rdfs:comment "An excerpted collection of words."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf bibo:Excerpt .


# ------- Events ---------

bibo:Interview a owl:Class ;
vs:term_status "stable" ;
rdfs:comment "A formalized discussion between two or more people."@en ;
rdfs:label "Interview"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .

bibo:Performance a owl:Class ;
vs:term_status "unstable" ;
rdfs:comment "A public performance."@en ;
rdfs:label "Performance"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .

bibo:Conference a owl:Class ;
vs:term_status "stable" ;
rdfs:comment "A meeting for consultation or discussion."@en ;
rdfs:label "Conference"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .

bibo:Hearing a owl:Class ;
vs:term_status "stable" ;
rdfs:comment "An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit."@en ;
rdfs:label "Hearing"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .

bibo:Workshop a owl:Class ;
vs:term_status "stable" ;
rdfs:comment "A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc."@en ;
rdfs:label "Workshop"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .

bibo:PersonalCommunication a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Personal Communication"@en ;
rdfs:comment "A communication between an agent and one or more specific recipients."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subClassOf event:Event .



# ------- Thesis Degrees -------

bibo:ThesisDegree a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Thesis degree"@en ;
rdfs:comment "The academic degree of a Thesis"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

# Note: see individuals (artifact) file for a list of "degrees".

# ---------- Status -------------

bibo:DocumentStatus a owl:Class ;
vs:term_status "stable" ;
rdfs:label "Document Status"@en ;
rdfs:comment "The status of the publication of a document."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

# Note: see individuals (artifact) file for a list of "status".


# ---------- Properties -------------

bibo:contributorList a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "list of contributors"@en ;
rdfs:comment "An ordered list of contributors. Normally, this list is seen as a priority list that order contributors by importance."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range rdf:List ;
rdfs:subclassOf [ a owl:Class; owl:unionOf (rdf:List rdf:Seq) ] .

bibo:authorList a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "list of authors"@en ;
rdfs:comment "An ordered list of authors. Normally, this list is seen as a priority list that order authors by importance."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:subclassOf [ a owl:Class; owl:unionOf (rdf:List rdf:Seq) ] ;
rdfs:subPropertyOf bibo:contributorList .

bibo:editorList a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "list of editors"@en ;
rdfs:comment "An ordered list of editors. Normally, this list is seen as a priority list that order editors by importance."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:subclassOf [ a owl:Class; owl:unionOf (rdf:List rdf:Seq) ] ;
rdfs:subPropertyOf bibo:contributorList .


# ---------- Relations --------------



bibo:translationOf a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "translation of"@en ;
rdfs:comment "Relates a translated document to the original document."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf dcterms:isVersionOf ;
rdfs:domain bibo:Document ;
rdfs:range bibo:Document .

bibo:reviewOf a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "review of"@en ;
rdfs:comment "Relates a review document to a reviewed thing (resource, item, etc.)."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Resource .

bibo:transcriptOf a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:label "transcript of"@en ;
rdfs:comment "Relates a document to some transcribed original."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Resource .


bibo:content a owl:DatatypeProperty ;
vs:term_status "unstable" ;
rdfs:label "content"@en ;
rdfs:comment "This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:presentedAt a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:label "presented at"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf event:produced_in ;
rdfs:domain bibo:Document ;
rdfs:range bibo:Event ;
rdfs:comment "Relates a document to an event; for example, a paper to a conference."@en .

bibo:presents a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:label "presented at"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf event:product ;
owl:inverseOf bibo:presentedAt ;
rdfs:domain bibo:Event ;
rdfs:range bibo:Document ;
rdfs:comment "Relates an event to associated documents; for example, conference to a paper."@en .

bibo:reproducedIn a owl:ObjectProperty ;
rdfs:comment "The resource in which another resource is reproduced."@en ;
vs:term_status "unstable" ;
rdfs:subPropertyOf dcterms:isPartOf ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range bibo:Document .

bibo:subsequentLegalDecision a owl:ObjectProperty ;
rdfs:comment "A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.)."@en ;
rdfs:subPropertyOf dcterms:isReferencedBy ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:LegalDecision ;
rdfs:range bibo:LegalDecision .

bibo:affirmedBy a owl:ObjectProperty ;
rdfs:comment "A legal decision that affirms a ruling."@en ;
rdfs:subPropertyOf bibo:subsequentLegalDecision ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:LegalDecision ;
rdfs:range bibo:LegalDecision.

bibo:reversedBy a owl:ObjectProperty ;
rdfs:comment "A legal decision that reverses a ruling."@en ;
rdfs:subPropertyOf bibo:subsequentLegalDecision ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:LegalDecision ;
rdfs:range bibo:LegalDecision .

bibo:annotates a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "annotates"@en ;
rdfs:comment "Critical or explanatory note for a Document."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:domain bibo:Note ;
rdfs:range rdfs:Resource .


# --------- Place and locality description ----------------

bibo:court a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:label "court"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:LegalDocument ;
rdfs:range foaf:Organization ;
rdfs:comment "A court associated with a legal document; for example, that which issues a decision."@en .

# --------- numbers ----------------

# bd: make sure we incorporate the recent discussion of document parts here

bibo:locator a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "locator"@en ;
rdfs:comment "A description (often numeric) that locates an item within a containing document or collection."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:pageStart a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "page start"@en ;
rdfs:comment "Starting page number within a continuous page range."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:locator ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:pageEnd a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "page end"@en ;
rdfs:comment "Ending page number within a continuous page range."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:locator ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:pages a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "pages"@en ;
rdfs:comment "A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:locator ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:volume a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "volume"@en ;
rdfs:comment "A volume number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:locator ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:issue a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "issue"@en ;
rdfs:comment "An issue number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:locator ;
rdfs:domain bibo:Issue ;
rdfs:range rdfs:Literal .

bibo:number a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal ;
rdfs:comment "A generic item or document number. Not to be confused with issue number."@en .


# ----------- Agent Names -----------------

# -- See foaf:givenname --

# -- See foaf:family_name --

bibo:prefixName a owl:DatatypeProperty;
vs:term_status "stable" ;
rdfs:label "prefix name"@en;
rdfs:comment "The prefix of a name"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain foaf:Agent;
rdfs:range rdfs:Literal .

bibo:suffixName a owl:DatatypeProperty;
vs:term_status "stable" ;
rdfs:label "suffix name"@en;
rdfs:comment "The suffix of a name"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain foaf:Agent;
rdfs:range rdfs:Literal .

# ----------- status ------------------

bibo:status a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "status"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "The publication status of (typically academic) content."@en ;
rdfs:domain bibo:Document ;
rdfs:range bibo:DocumentStatus.

# Note: we are not defining, using an enumeration, the range of the bibo:status to the defined list
# of bibo:DocumentStatus. We won't do it because we want people to be able to define new status
# if needed by some special usecases. Creating such an enumeration would restrict this to happen.

# ----------- degree ------------------

bibo:degree a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:label "status"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "The thesis degree."@en ;
rdfs:domain bibo:Thesis ;
rdfs:range bibo:ThesisDegree.
# Note: we are not defining, using an enumeration, the range of the bibo:degree to the defined list
# of bibo:ThesisDegree. We won't do it because we want people to be able to define new degress
# if needed by some special usecases. Creating such an enumeration would restrict this to happen.




# ----------- Editions ----------------

bibo:edition a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "edition"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "The name defining a special edition of a document. Normally its a literal value composed of a version number and words."@en ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal.

bibo:argued a owl:DatatypeProperty ;
vs:term_status "unstable" ;
rdfs:label "date argued"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "The date on which a legal case is argued before a court. Date is of format xsd:date"@en ;
rdfs:domain bibo:LegalDocument ;
rdfs:range rdfs:Literal .


# ----------- titles -------------------


bibo:shortTitle a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "short title"@en ;
rdfs:comment "The abbreviation of a title."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal ;
rdfs:subPropertyOf dcterms:alternative .


# ----- manifestation level role properties ----

bibo:organizer a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdfs:domain event:Event;
rdfs:range foaf:Agent;
rdfs:label "organizer"@en;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "The organizer of an event; includes conference organizers, but also government agencies or other bodies that are responsible for conducting hearings."@en .

bibo:owner a owl:ObjectProperty ;
vs:term_status "unstable" ; # range? frbr:Item?
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent;
rdfs:label "owner"@en;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "Owner of a document or a collection of documents."@en .

bibo:producer a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent;
rdfs:label "producer"@en;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "Producer of a document or a collection of documents."@en .

bibo:distributor a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent;
rdfs:label "distributor"@en;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:comment "Distributor of a document or a collection of documents."@en .

bibo:issuer a owl:ObjectProperty ;
vs:term_status "unstable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "issuer" ;
rdfs:comment "An entity responsible for issuing often informally published documents such as press releases, reports, etc." ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:publisher ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .


bibo:editor a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "editor" ;
rdfs:comment "A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication."@en ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:translator a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "translator" ;
rdfs:comment "A person who translates written document from one language to another."@en ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:interviewer a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "interviewer" ;
rdfs:comment "An agent that interview another agent."@en ;
rdfs:domain rdfs:Resource ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:interviewee a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "interviewee" ;
rdfs:comment "An agent that is interviewed by another agent."@en ;
rdfs:domain rdfs:Resource ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:director a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "director" ;
rdfs:comment "A Film director."@en ;
rdfs:domain rdfs:Resource ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:performer a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "performer" ;
rdfs:domain bibo:Performance ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

bibo:recipient a owl:ObjectProperty ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "recipient" ;
rdfs:comment "An agent that receives a communication document."@en ;
rdfs:domain bibo:PersonalCommunicationDocument ;
rdfs:range foaf:Agent ;
rdfs:subPropertyOf dcterms:contributor ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .


# ---------------------------------------
# -------- External Ontologies ----------
# ---------------------------------------

# Note: these classes and properties, from other ontologies, are re-used
# and preffered by The Bibliographic Ontology. The Bibliographic Ontology
# is extended by their use, but is not limited to them.

# ------ Address --------

# can be used to indicate the city of a publisher, archive, etc.

address:localityName a owl:dateTypeProperty ;
vs:term_status "unstable" ;
rdfs:label "localityName"@en ;
skos:definition """the name of the city, town, village or other geopolitical region for
which the streetAddress is unambiguous"""@en ;
rdfs:comment "For example: 'Santiago 1400'" ;
rdfs:isDefinedBy <http://schemas.talis.com/2005/address/schema#> ;
dcterms:issued "2006-06-27" .

# ------- Event ---------
# event : http://purl.org/NET/c4dm/event.owl#

event:Event a owl:Class ;
rdfs:label "Event" ;
rdfs:comment "An arbitrary classification of a space/time region, by a cognitive agent. An event may have actively participating agents, passive factors, products, and a location in space/time.";
vs:terms_status "stable".

event:agent a owl:ObjectProperty;
vs:term_status "stable";
rdfs:label "agent";
rdfs:comment """ Relates an event to an active agent (a person, a computer, ... ) """;
rdfs:range foaf:Agent;
rdfs:domain event:Event;
owl:equivalentProperty event:hasAgent; #see verbs vs nouns discussion
owl:inverseOf event:isAgentIn .

event:product a owl:ObjectProperty;
vs:term_status "stable";
rdfs:label "product";
rdfs:comment """ Relates an event to something produced during the event---a sound, a pie, whatever... """;
rdfs:domain event:Event;
owl:equivalentProperty event:hasProduct;
owl:inverseOf event:producedIn .

event:sub_event a owl:ObjectProperty;
vs:term_status "stable";
rdfs:label "sub-event";
rdfs:comment """ This property provides a way to split a complex event (for example, a performance involving several musicians) into simpler ones (one event per musician).""";
rdfs:domain event:Event;
rdfs:range event:Event;
owl:equivalentProperty event:hasSubEvent .

event:time a owl:FunctionalProperty;
a owl:ObjectProperty;
vs:term_status "stable";
rdfs:domain event:Event;
rdfs:range time:TemporalEntity;
rdfs:label "time";
rdfs:comment """Relates an event to a time object, classifying a time region (either instantaneous or having an extent). By using the Timeline ontology here, you can define event happening on a recorded track or on any media with a temporal extent.""".


event:place a owl:FunctionalProperty;
a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:domain event:Event ;
rdfs:range geo:SpatialThing ;
rdfs:label "place" ;
rdfs:comment """ Relates an event to a spatial object. """ .


# --------- PO -------------

# The programme ontology is used to describe broadcasts, programms and such.
# By using this ontology, one can easily describe and cite broadcasting stuff.
#
# Any PO class and property can be used. The ontology documentation is available
# here: http://www.bbc.co.uk/ontologies/programmes/2008-02-28.shtml



# --------- FOAF -------------

foaf:Person a rdfs:Class ;
rdfs:label "Person" ;
rdfs:comment "A person." ;
vs:term_status "stable" ;
rdf:type owl:Class ;
rdfs:subClassOf foaf:Agent ;
rdfs:subClassOf <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:subClassOf wgs84_pos:SpatialThing ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
owl:disjointWith foaf:Document, foaf:Organization, foaf:Project .

foaf:Organization rdf:type rdfs:Class ;
rdfs:label "Organization" ;
rdfs:comment "An organization." ;
vs:term_status "stable" ;
rdf:type owl:Class ;
rdfs:subClassOf foaf:Agent ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
owl:disjointWith foaf:Person, foaf:Document .

foaf:Agent rdf:type rdfs:Class ;
rdf:type owl:Class ;
vs:term_status "stable" ;
rdfs:label "Agent" ;
rdfs:comment "An agent (eg. person, group, software or physical artifact)." ;
owl:equivalentClass dcterms:Agent ;
owl:disjointWith foaf:Document .

foaf:homepage rdf:type rdf:Property ;
vs:term_status "stable" ;
rdfs:label "homepage" ;
rdfs:comment "A homepage for some thing." ;
rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://xmlns.com/foaf/0.1/page> ,
<http://xmlns.com/foaf/0.1/isPrimaryTopicOf> ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:domain owl:Thing ;
rdfs:range foaf:Document ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> .

foaf:depiction rdf:type rdf:Property ;
vs:term_status "testing" ;
rdfs:label "depiction" ;
rdfs:comment "A depiction of some thing." ;
rdf:type owl:ObjectProperty ;
rdfs:domain owl:Thing ;
rdfs:range <http://xmlns.com/foaf/0.1/Image> ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> ;
owl:inverseOf <http://xmlns.com/foaf/0.1/depicts> .

foaf:based_near rdf:type rdf:Property ;
vs:term_status "unstable" ;
rdfs:label "based near" ;
rdfs:comment "A location that something is based near, for some broadly human notion of near." ;
rdf:type owl:ObjectProperty ;
rdfs:domain wgs84_pos:SpatialThing ;
rdfs:range wgs84_pos:SpatialThing ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> .

# bd: I'm removing reference to firstName, which is not international friendly.

foaf:givenname rdf:type rdf:Property ;
vs:term_status "testing" ;
rdfs:label "given name" ;
rdfs:comment "The given name of a person." ;
rdf:type owl:DatatypeProperty ;
rdfs:domain foaf:Person ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> .

foaf:family_name rdf:type rdf:Property ;
vs:term_status "testing" ;
rdfs:label "family name" ;
rdfs:comment "The family name of a person." ;
rdf:type owl:DatatypeProperty ;
rdfs:domain foaf:Person ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://xmlns.com/foaf/0.1/> .


# -------- DCTERMS ----------

# BD: most properties of DCTERMS could be used and are recommended to be used.
# Examples: dcterms:dateAccepted, dcterms:dateCopyrighted, dcterms:dateSubmitted,
# dcterms:issued, dcterms:modified.
# There's one tricky issue though illustrated by my book: published/issued in 2005,
# but the copyright date is 2006.



dcterms:BibliographicResource a rdfs:Class ;
rdfs:label "Bibliographic Resource" ;
rdfs:comment "A book, article, or other documentary resource." ;
vs:term_status "stable" ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:contributor a rdf:Property ;
vs:term_status "stable" ;
rdf:type rdfs:Property ;
rdfs:label "contributor" ;
rdfs:comment "An entity responsible for making contributions to the resource." ;
rdfs:subPropertyOf dc:contributor ;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:Agent ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:publisher a rdf:Property ;
vs:term_status "stable" ;
rdf:type rdfs:Property ;
rdfs:label "publisher" ;
rdfs:comment "An entity responsible for making the resource available." ;
rdfs:subPropertyOf dc:publisher ;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:Agent ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:publisher a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "publisher" ;
rdfs:comment "An entity responsible for making the resource available." ;
rdfs:subPropertyOf dc:publisher;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:Agent ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .


# BIBO assert that a dcterms:Agent is an equivalent class to foaf:Agent.
# This means that all the individuals belonging to the foaf:Agent class
# also belongs to the dcterms:Agent class. This way, dcterms:contributor
# can be used on foaf:Person, foaf:Organization, foaf:Agent and foaf:Group.
# Even if this link is not done in neither the FOAF nor the DCTERMS ontologies
# this is a wide spread fact that is asserted by BIBO.

foaf:Agent owl:equivalentClass dcterms:Agent .


# also, do we need some conventions for handling non-standard dates? I think this is
# where we probably do need data-types.
dcterms:date a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "date" ;
rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource." ;
rdfs:subPropertyOf dc:date ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:issued a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "Date Issued" ;
rdfs:comment "Date of formal issuance (e.g., publication) of the resource." ;
rdfs:subPropertyOf dc:date ;
rdfs:subPropertyOf dcterms:date ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:format a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "format" ;
rdfs:comment " The file format, physical medium, or dimensions of the resource." ;
rdfs:domain rdfs:Resources ;
rdfs:range dcterms:MediaTypeOrExtent ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:identifier a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "identifier" ;
rdfs:comment "An unambiguous reference to the resource within a given context." ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:language a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "language" ;
rdfs:comment "A language of the resource." ;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:LinguisticSystem ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:rights a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "rights" ;
rdfs:comment "Information about rights held in and over the resource." ;
rdfs:subPropertyOf dc:rights;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:RightsStatement ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:subject a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "subject" ;
rdfs:comment "The topic of the resource. Use this property to link a document to a concept in a subject taxonomy." ;
rdfs:subPropertyOf dc:subject;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:description a rdf:Property ;
vs:term_status "stable" ;
rdfs:label "description" ;
rdfs:comment "An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource." ;
rdfs:subPropertyOf dc:description;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

bibo:abstract a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "abstract" ;
rdfs:comment "A summary of the resource." ;
rdfs:subPropertyOf dc:description;
rdfs:subPropertyOf dcterms:description;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

# bd: idea here is that while dcterms:description may involve length descriptions, this for short
# (two or three word) descriptions that could go in a bibliographic entry.
bibo:shortDescription a owl:DatatypeProperty ;
vs:term_status "unstable" ;
rdfs:label "short description" ;
rdfs:comment "A short description of the resource." ;
rdfs:subPropertyOf dcterms:description;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> .

dcterms:title a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "title" ;
rdfs:comment "A name given to the resource." ;
rdfs:subPropertyOf dc:title;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:isPartOf a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "isPartOf" ;
rdfs:comment "A related resource in which the described resource is physically or logically included." ;
rdfs:subPropertyOf dc:relation ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:coverage a rdf:Property ;
vs:term_status "stable" ;
rdf:type owl:ObjectProperty ;
rdfs:label "coverage" ;
rdfs:comment "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant." ;
rdfs:subPropertyOf dc:coverage;
rdfs:domain rdfs:Resource ;
rdfs:range dcterms:LocationPeriodOrJurisdiction ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .

dcterms:isReferencedBy a rdf:Property ;
rdfs:comment "A related resource that references, cites, or otherwise points to the described resource."@en ;
rdfs:subPropertyOf dcterms:relation ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource .


# ------------- Individuals -------------

# ------- Document Status --------

bibo_status:published a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "published"@en ;
rdfs:comment "Published document"@en .

bibo_status:unpublished a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "unpublished"@en ;
rdfs:comment "Unpublished document"@en .

bibo_status:draft a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "draft"@en ;
rdfs:comment "Document drafted"@en .

bibo_status:forthcoming a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "forthcoming"@en ;
rdfs:comment "Document to be published"@en .

bibo_status:peerReviewed a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "peer reviewed"@en ;
rdfs:comment """The process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication."""@en .

bibo_status:nonPeerReviewed a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "non peer reviewed"@en ;
rdfs:comment "A document that is not peer reviewed"@en .

bibo_status:rejected a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "rejected"@en ;
rdfs:comment "Rejected for publication after peer reviewing."@en .

bibo_status:accepted a bibo:DocumentStatus ;
vs:term_status "stable" ;
rdfs:label "accepted"@en ;
rdfs:comment "Accepted for publication after peer reviewing."@en .


# ------ Thesis Degree Type -----------
# bd: this might be better as MA, MS, etc.?
bibo_degrees:ma a bibo:ThesisDegree ;
vs:term_status "stable" ;
rdfs:comment "masters degree in arts"@en ;
rdfs:label "M.A."@en .

bibo_degrees:ms a bibo:ThesisDegree ;
vs:term_status "stable" ;
rdfs:comment "masters degree in science"@en ;
rdfs:label "M.S."@en .

bibo_degrees:phd a bibo:ThesisDegree ;
vs:term_status "stable" ;
rdfs:comment "PhD degree"@en ;
rdfs:label "PhD degree"@en .




# ------ Document Identifier Type -----------

bibo:identifier a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "identifier"@en ;
rdfs:comment "Identifier number of a document"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:isbn10 a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "isbn-10"@en ;
rdfs:comment "International Standard Book Number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:isbn13 a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "isbn-13"@en ;
rdfs:comment "International Standard Book Number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:asin a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "asin"@en ;
rdfs:comment "Amazon Standard Identification Number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:coden a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "coden"@en ;
rdfs:comment "An identifier of serials, still in use by libraries, but replaced by ISSN for any new work"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:uri a owl:ObjectProperty ;
vs:term_status "stable" ;
rdfs:label "uri"@en ;
rdfs:comment "Universal Resource Identifier of a document"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Resource .

bibo:doi a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "doi"@en ;
rdfs:comment "Digital Object Identifier"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:pmid a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "pmid"@en ;
rdfs:comment "PubMed Identifier"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain bibo:Document ;
rdfs:range rdfs:Literal .

bibo:oclcnum a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "oclcnum"@en ;
rdfs:comment "OCLC Identifier"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:issn a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "issn"@en ;
rdfs:comment "International Standard Serial Number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:eissn a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "eissn"@en ;
rdfs:comment "The electronic ISSN number of a periodical."@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .


bibo:sici a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "sici"@en ;
rdfs:comment "Serial Item and Contribution Identifier"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:lccn a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "lccn"@en ;
rdfs:comment "Library of Congress Control Number"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .


bibo:eanucc13 a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "ean/ucc-13"@en ;
rdfs:comment "European Article Number/Uniform Commercier Code 13"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .

bibo:upc a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "upc"@en ;
rdfs:comment "Universal Product Code"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .


bibo:gtin14 a owl:DatatypeProperty ;
vs:term_status "stable" ;
rdfs:label "gtin14"@en ;
rdfs:comment "Global Trade Item Number 14"@en ;
rdfs:isDefinedBy <http://purl.org/ontology/bibo/> ;
rdfs:subPropertyOf bibo:identifier ;
rdfs:domain [ a owl:Class; owl:unionOf (bibo:Document bibo:Collection) ] ;
rdfs:range rdfs:Literal .
Show details Hide details

Change log

r20 by mdiggory on Jun 15, 2008   Diff
Add mimetypes to files in 1.0 branch
Go to: 
Project members, sign in to write a code review

Older revisions

r11 by bdarcus on Jun 04, 2008   Diff
copied over tab fix to 1.0 tag
r9 by bdarcus on Jun 04, 2008   Diff
tagging 1.0
r5 by fredonsomething on Jun 04, 2008   Diff
Fixed dcterms:BibliographicResource
All revisions of this file

File info

Size: 57926 bytes, 1486 lines

File properties

svn:mime-type
application/rdf+n3
Hosted by Google Code