-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrm-rdf-ap.ttl
4575 lines (4575 loc) · 464 KB
/
crm-rdf-ap.ttl
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
<http://www.cidoc-crm.org/cidoc-crm/> <http://purl.org/vocab/vann/preferredNamespacePrefix> "crm"@en;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://www.cidoc-crm.org/cidoc-crm/"@en;
<http://purl.org/dc/terms/title> "CIDOC CRM AP"@en;
<http://purl.org/dc/terms/description> "\n CIDOC CRM Application profile based on CRM, SKOS, DCTERMS, BIBO, GeoSPARQL and Time Ontology.\n "@en.
<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> a <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.opengis.net/ont/geosparql#Geometry>.
<http://www.cidoc-crm.org/cidoc-crm/P172_contains> a <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.opengis.net/ont/geosparql#Geometry>.
<http://www.w3.org/2004/02/skos> a <http://www.w3.org/2002/07/owl#Ontology>;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "skos"@en;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://www.w3.org/2008/05/skos"@en.
<http://www.w3.org/2004/02/skos/core#ConceptScheme> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.cidoc-crm.org/cidoc-crm/E31_Document>.
<http://purl.org/dc/terms/creator> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://purl.org/dc/terms/description> a <http://www.w3.org/2002/07/owl#AnnotationProperty>, <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe a bibliographic resource."@en.
<http://purl.org/dc/terms/identifier> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://purl.org/dc/terms/title> a <http://www.w3.org/2002/07/owl#AnnotationProperty>, <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the title of a bibliographic resource"@en.
<http://www.w3.org/2002/07/owl#deprecated> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#changeNote> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#editorialNote> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#example> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#historyNote> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#note> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://www.w3.org/2004/02/skos/core#scopeNote> a <http://www.w3.org/2002/07/owl#AnnotationProperty>.
<http://purl.org/NET/c4dm/event.owl#agent> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#changeNote> "Used to link an agent (a person) to an event (a conference, an hearing, etc.)"@en.
<http://purl.org/NET/c4dm/event.owl#place> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to relate an event such as a conference to the geographical place where it happens, for example Paris."@en.
<http://purl.org/NET/c4dm/event.owl#produced_in> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/NET/c4dm/event.owl#product> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link an event such as a conference to an outcome (a product) of that event, for example, an article, a proceeding, etc."@en.
<http://purl.org/NET/c4dm/event.owl#sub_event> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link big events with smaller events such as workshops that happen in the context of a conference."@en.
<http://purl.org/NET/c4dm/event.owl#time> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the timing of an event. For example, when a conference starts and stops."@en.
<http://purl.org/dc/terms/contributor> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link a bibliographic item to one of its contributor: can be an author, an editor, a publisher, etc."@en.
<http://purl.org/dc/terms/format> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#example> "<dcterms:format>\n <dcterms:MediaTypeOrExtent>\n <rdf:value>text/html</rdf:value>\n <rdfs:label>HTML</rdfs:label>\n </dcterms:MediaTypeOrExtent>\n </dcterms:format>"@en;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the format of a bibliographic resource."@en.
<http://purl.org/dc/terms/hasPart> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/dc/terms/isPartOf> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/dc/terms/isReferencedBy> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to relate a reference citation to a bibliographic resource."@en.
<http://purl.org/dc/terms/isVersionOf> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/dc/terms/language> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link a bibliographic resource to the language used to express it."@en.
<http://purl.org/dc/terms/publisher> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link a bibliographic item to its publisher."@en.
<http://purl.org/dc/terms/references> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/dc/terms/relation> a <http://www.w3.org/2002/07/owl#ObjectProperty>.
<http://purl.org/dc/terms/rights> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe rights related to a bibliographic resource."@en.
<http://purl.org/dc/terms/subject> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the subject of a bibliographic resource."@en.
<http://purl.org/ontology/bibo/affirmedBy> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/LegalDecision>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/LegalDecision>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/subsequentLegalDecision>.
<http://purl.org/ontology/bibo/annotates> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "annotates"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Note>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource>.
_:b0_genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid1.
_:b0_genid3 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid2.
<http://purl.org/ontology/bibo/authorList> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "list of authors"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/contributorList>;
<http://www.w3.org/2000/01/rdf-schema#range> _:b0_genid3.
<http://purl.org/ontology/bibo/citedBy> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "cited by"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/ontology/bibo/cites>.
<http://purl.org/ontology/bibo/cites> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "cites"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/references>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Document>.
_:b0_genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid4.
_:b0_genid6 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid5.
<http://purl.org/ontology/bibo/contributorList> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "list of contributors"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> _:b0_genid6.
<http://purl.org/ontology/bibo/court> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "court"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/LegalDocument>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Organization>.
<http://purl.org/ontology/bibo/degree> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "degree"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2004/02/skos/core#editorialNote> "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."@en;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Thesis>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/ThesisDegree>.
<http://purl.org/ontology/bibo/director> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "director";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/AudioVisualDocument>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>.
_:b0_genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid7.
_:b0_genid9 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid8.
<http://purl.org/ontology/bibo/distributor> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "distributor"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid9.
_:b0_genid10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid10.
_:b0_genid12 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid11.
<http://purl.org/ontology/bibo/editor> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "editor";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid12.
_:b0_genid13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid13.
_:b0_genid15 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid14.
<http://purl.org/ontology/bibo/editorList> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "list of editors"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/contributorList>;
<http://www.w3.org/2000/01/rdf-schema#range> _:b0_genid15.
<http://purl.org/ontology/bibo/interviewee> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "interviewee";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>.
<http://purl.org/ontology/bibo/interviewer> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "interviewer";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Agent>.
_:b0_genid16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid16.
_:b0_genid18 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid17.
<http://purl.org/ontology/bibo/issuer> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "issuer";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/publisher>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid18.
<http://purl.org/ontology/bibo/organizer> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "organizer"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>.
_:b0_genid19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid19.
_:b0_genid21 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid20.
<http://purl.org/ontology/bibo/owner> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "owner"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid21.
<http://purl.org/ontology/bibo/performer> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "performer";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Performance>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>.
<http://purl.org/ontology/bibo/presentedAt> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "presented at"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/NET/c4dm/event.owl#produced_in>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Event>.
<http://purl.org/ontology/bibo/presents> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "presents"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/NET/c4dm/event.owl#product>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Event>;
<http://www.w3.org/2002/07/owl#inverseOf> <http://purl.org/ontology/bibo/presentedAt>.
_:b0_genid22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid22.
_:b0_genid24 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid23.
<http://purl.org/ontology/bibo/producer> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "producer"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid24.
<http://purl.org/ontology/bibo/recipient> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "recipient";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/PersonalCommunicationDocument>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>.
<http://purl.org/ontology/bibo/reproducedIn> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/isPartOf>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>.
<http://purl.org/ontology/bibo/reversedBy> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/LegalDecision>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/LegalDecision>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/subsequentLegalDecision>.
<http://purl.org/ontology/bibo/reviewOf> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "review of"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource>.
<http://purl.org/ontology/bibo/status> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "status"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2004/02/skos/core#editorialNote> "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."@en;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/DocumentStatus>.
<http://purl.org/ontology/bibo/subsequentLegalDecision> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/isReferencedBy>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/LegalDecision>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/LegalDecision>.
<http://purl.org/ontology/bibo/transcriptOf> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "transcript of"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/relation>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Resource>.
<http://purl.org/ontology/bibo/translationOf> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "translation of"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/isVersionOf>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>.
_:b0_genid25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid25.
_:b0_genid27 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid26.
<http://purl.org/ontology/bibo/translator> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "translator";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/contributor>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid27.
<http://www.w3.org/1999/02/22-rdf-syntax-ns#value> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the content of a bibo:Document and othr bibliographic resouces.\n\nWe suggest to use this property instead of the deprecated \"bibo:content\" one."@en.
<http://xmlns.com/foaf/0.1/based_near> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link an agent, related to bibliographic things, to a place where it is based near: can be a city, a monument, a building, etc."@en.
<http://xmlns.com/foaf/0.1/depiction> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link an agent with an image that depict it."@en.
<http://xmlns.com/foaf/0.1/homepage> a <http://www.w3.org/2002/07/owl#ObjectProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to link an agent to its homepage (which is a web page accessible using a URL)."@en.
<http://prismstandard.org/namespaces/1.2/basic/doi> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/doi>.
<http://prismstandard.org/namespaces/1.2/basic/eIssn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/eissn>.
<http://prismstandard.org/namespaces/1.2/basic/edition> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/edition>.
<http://prismstandard.org/namespaces/1.2/basic/endingPage> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/pageEnd>.
<http://prismstandard.org/namespaces/1.2/basic/isbn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/isbn>.
<http://prismstandard.org/namespaces/1.2/basic/issn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/issn>.
<http://prismstandard.org/namespaces/1.2/basic/issue> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/issue>.
<http://prismstandard.org/namespaces/1.2/basic/number> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/locator>.
<http://prismstandard.org/namespaces/1.2/basic/startingPage> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/pageStart>.
<http://prismstandard.org/namespaces/1.2/basic/volume> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2002/07/owl#equivalentProperty> <http://purl.org/ontology/bibo/volume>.
<http://purl.org/dc/terms/created> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the creation date of a bibliographic item"@en;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date>.
<http://purl.org/dc/terms/date> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Use to link a bibliographic item to the date of an event. Check dcterms:created and other for proper specializations for this property"@en.
<http://purl.org/dc/terms/issued> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe the issue date of a bibliographic resource"@en;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/date>.
<http://purl.org/ontology/bibo/abstract> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "abstract";
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://www.w3.org/2000/01/rdf-schema#Resource>.
<http://purl.org/ontology/bibo/argued> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "date argued"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/LegalDocument>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid28 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid28.
_:b0_genid30 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid29.
<http://purl.org/ontology/bibo/asin> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid30.
<http://purl.org/ontology/bibo/chapter> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "chapter"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/BookSection>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid31 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid31.
_:b0_genid33 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid32.
<http://purl.org/ontology/bibo/coden> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid33.
<http://purl.org/ontology/bibo/content> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "content"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2002/07/owl#deprecated> true;
<http://www.w3.org/2004/02/skos/core#historyNote> "bibo:content has been deprecated; we recommend to use \"rdf:value\" for this purpose. Here is the rational behind this choice: http://www.w3.org/TR/2004/REC-rdf-primer-20040210/#rdfvalue"@en;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid34 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid34.
_:b0_genid36 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid35.
<http://purl.org/ontology/bibo/doi> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid36.
_:b0_genid37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid38 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid37.
_:b0_genid39 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid38.
<http://purl.org/ontology/bibo/eanucc13> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid39.
<http://purl.org/ontology/bibo/edition> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "edition"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/eissn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid41 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid40.
_:b0_genid42 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid41.
<http://purl.org/ontology/bibo/gtin14> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid42.
_:b0_genid43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid44 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid43.
_:b0_genid45 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid44.
<http://purl.org/ontology/bibo/handle> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid45.
_:b0_genid46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid47 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid46.
_:b0_genid48 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid47.
<http://purl.org/ontology/bibo/identifier> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid48.
<http://purl.org/ontology/bibo/isbn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>.
_:b0_genid49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid49.
_:b0_genid51 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid50.
<http://purl.org/ontology/bibo/isbn10> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/isbn>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid51.
_:b0_genid52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid53 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid52.
_:b0_genid54 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid53.
<http://purl.org/ontology/bibo/isbn13> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/isbn>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid54.
<http://purl.org/ontology/bibo/issn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/issue> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "issue"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Issue>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid55 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid56 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid55.
_:b0_genid57 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid56.
<http://purl.org/ontology/bibo/lccn> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid57.
<http://purl.org/ontology/bibo/locator> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "locator"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/numPages> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "number of pages"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/numVolumes> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "number of volumes"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/number> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "number"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid58 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid59 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid58.
_:b0_genid60 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid59.
<http://purl.org/ontology/bibo/oclcnum> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid60.
<http://purl.org/ontology/bibo/pageEnd> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "page end"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/pageStart> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "page start"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/pages> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "pages"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid61 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid62 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid61.
_:b0_genid63 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid62.
<http://purl.org/ontology/bibo/pmid> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid63.
<http://purl.org/ontology/bibo/prefixName> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "prefix name"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Agent>.
<http://purl.org/ontology/bibo/section> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "section"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable";
<http://www.w3.org/2004/02/skos/core#example> "Di Rado, Alicia. 1995. Trekking through college: Classes explore\nmodern society using the world of Star trek. Los Angeles Times, March\n15, sec. A, p. 3."@en;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/shortDescription> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://purl.org/ontology/bibo/shortTitle> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "short title"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
_:b0_genid64 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid65 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid64.
_:b0_genid66 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid65.
<http://purl.org/ontology/bibo/sici> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid66.
<http://purl.org/ontology/bibo/suffixName> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "suffix name"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> <http://xmlns.com/foaf/0.1/Agent>.
_:b0_genid67 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid68 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid67.
_:b0_genid69 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid68.
<http://purl.org/ontology/bibo/upc> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid69.
_:b0_genid70 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid71 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid70.
_:b0_genid72 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid71.
<http://purl.org/ontology/bibo/uri> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "uri"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/identifier>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>;
<http://www.w3.org/2000/01/rdf-schema#domain> _:b0_genid72.
<http://purl.org/ontology/bibo/volume> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2000/01/rdf-schema#label> "volume"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable";
<http://www.w3.org/2000/01/rdf-schema#domain> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/ontology/bibo/locator>;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal>.
<http://schemas.talis.com/2005/address/schema#localityName> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to name the locality of a publisher, an author, etc."@en.
<http://xmlns.com/foaf/0.1/family_name> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "This is the property we choose to use to describe the family name of a person related to a bibliographic resource."@en.
<http://xmlns.com/foaf/0.1/givenname> a <http://www.w3.org/2002/07/owl#DatatypeProperty>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "This is the property we choose to describe the given name of a Person related to a bibliographic resource. This is the first name of a person."@en.
<http://xmlns.com/foaf/0.1/name> a <http://www.w3.org/2002/07/owl#DatatypeProperty>.
<http://purl.org/NET/c4dm/event.owl#Event> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Used to describe bibliographic related events such as conferences, hearing, etc."@en.
<http://purl.org/dc/terms/Agent> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#equivalentClass> <http://xmlns.com/foaf/0.1/Agent>;
<http://www.w3.org/2004/02/skos/core#editorialNote> "BIBO assert that a dcterms:Agent is an equivalent class to foaf:Agent.\nThis means that all the individuals belonging to the foaf:Agent class\nalso belongs to the dcterms:Agent class. This way, dcterms:contributor\ncan be used on foaf:Person, foaf:Organization, foaf:Agent and foaf:Group.\nEven 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."@en.
<http://purl.org/ontology/bibo/AcademicArticle> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Academic Article"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Article>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Article> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Article"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/AudioDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "audio document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/AudioVisualDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "audio-visual document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Bill> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Bill"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Legislation>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Book> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Book"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/BookSection> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Book Section"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/DocumentPart>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Brief> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Brief"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/LegalCaseDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Chapter> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Chapter"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/BookSection>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
_:b0_genid73 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid74 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Legislation>.
<http://purl.org/ontology/bibo/Code> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Code"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Periodical>, _:b0_genid73, _:b0_genid74;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid75 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Document>.
_:b0_genid76 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
<http://purl.org/ontology/bibo/CollectedDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Collected Document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>, _:b0_genid75, _:b0_genid76;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid77 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil>.
_:b0_genid78 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://purl.org/ontology/bibo/Collection>;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0_genid77.
_:b0_genid79 a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2002/07/owl#unionOf> _:b0_genid78.
_:b0_genid80 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> _:b0_genid79.
<http://purl.org/ontology/bibo/Collection> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Collection"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> _:b0_genid80;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Conference> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Conference"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid81 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid82 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/LegalDocument>.
<http://purl.org/ontology/bibo/CourtReporter> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Court Reporter"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Periodical>, _:b0_genid81, _:b0_genid82;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Document> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Document"@en;
<http://www.w3.org/2002/07/owl#equivalentClass> <http://xmlns.com/foaf/0.1/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid83 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/isPartOf>;
<http://www.w3.org/2002/07/owl#maxCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
<http://purl.org/ontology/bibo/DocumentPart> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "document part"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>, _:b0_genid83;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/DocumentStatus> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Document Status"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/EditedBook> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Edited Book"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/CollectedDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Email> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "EMail"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/PersonalCommunicationDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Event> a <http://www.w3.org/2002/07/owl#Class>.
<http://purl.org/ontology/bibo/Excerpt> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Excerpt"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/DocumentPart>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Film> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Film"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/AudioVisualDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Hearing> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Hearing"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Image> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Image"@en;
<http://www.w3.org/2002/07/owl#equivalentClass> <http://xmlns.com/foaf/0.1/Image>;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Interview> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Interview"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid84 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid85 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Article>.
<http://purl.org/ontology/bibo/Issue> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Issue"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/CollectedDocument>, _:b0_genid84, _:b0_genid85;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid86 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid87 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Issue>.
<http://purl.org/ontology/bibo/Journal> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Journal"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Periodical>, _:b0_genid86, _:b0_genid87;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/LegalCaseDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Legal Case Document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/LegalDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/LegalDecision> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Decision"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/LegalCaseDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/LegalDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Legal Document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Legislation> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Legislation"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/LegalDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Letter> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Letter"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/PersonalCommunicationDocument>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid88 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid89 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Issue>.
<http://purl.org/ontology/bibo/Magazine> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Magazine"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Periodical>, _:b0_genid88, _:b0_genid89;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Manual> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Manual"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Manuscript> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Manuscript"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Map> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Map"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Image>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
_:b0_genid90 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Book>.
<http://purl.org/ontology/bibo/MultiVolumeBook> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Multivolume Book"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Collection>, _:b0_genid90;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid91 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid92 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Issue>.
<http://purl.org/ontology/bibo/Newspaper> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Newspaper"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Periodical>, _:b0_genid91, _:b0_genid92;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Note> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Note"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Patent> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Patent"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Performance> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Performance"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
_:b0_genid93 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid94 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Issue>.
<http://purl.org/ontology/bibo/Periodical> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Periodical"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Collection>, _:b0_genid93, _:b0_genid94;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/PersonalCommunication> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Personal Communication"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/NET/c4dm/event.owl#Event>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/PersonalCommunicationDocument> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Personal Communication Document"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Proceedings> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Proceedings"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Book>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Quote> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Quote"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Excerpt>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/ReferenceSource> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Reference Source"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Report> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Report"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
_:b0_genid95 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Document>.
<http://purl.org/ontology/bibo/Series> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Series"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Collection>, _:b0_genid95;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Slide> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Slide"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/DocumentPart>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
_:b0_genid96 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Slide>.
<http://purl.org/ontology/bibo/Slideshow> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Slideshow"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>, _:b0_genid96;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Specification> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Specification"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing".
<http://purl.org/ontology/bibo/Standard> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Standard"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Specification>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Statute> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Statute"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Legislation>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Thesis> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Thesis"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/ThesisDegree> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Thesis degree"@en;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "stable".
<http://purl.org/ontology/bibo/Webpage> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Webpage"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Document>;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
_:b0_genid97 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger>.
_:b0_genid98 a <http://www.w3.org/2002/07/owl#Restriction>;
<http://www.w3.org/2002/07/owl#onProperty> <http://purl.org/dc/terms/hasPart>;
<http://www.w3.org/2002/07/owl#allValuesFrom> <http://purl.org/ontology/bibo/Webpage>.
<http://purl.org/ontology/bibo/Website> a <http://www.w3.org/2002/07/owl#Class>;
<http://www.w3.org/2000/01/rdf-schema#label> "Website"@en;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://purl.org/ontology/bibo/Collection>, _:b0_genid97, _:b0_genid98;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> "http://purl.org/ontology/bibo/"^^<http://www.w3.org/2001/XMLSchema#anyURI>;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable".
<http://purl.org/ontology/bibo/Workshop> a <http://www.w3.org/2002/07/owl#Class>;