-
Notifications
You must be signed in to change notification settings - Fork 2
/
bdo.ttl
4649 lines (4051 loc) · 157 KB
/
bdo.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
# imports: http://purl.bdrc.io/ontology/roles/ChineseMonastic/
# imports: http://purl.bdrc.io/ontology/roles/Creator/
# imports: http://purl.bdrc.io/ontology/schemes/core/ContentMethodScheme/
# imports: http://purl.bdrc.io/ontology/schemes/core/IdentifierScheme/
# imports: http://purl.bdrc.io/ontology/schemes/taxonomy/FEMCScheme/
# imports: http://purl.bdrc.io/ontology/schemes/taxonomy/TraditionsScheme/
# imports: http://purl.bdrc.io/ontology/translations/CoreBo/
# imports: http://purl.bdrc.io/ontology/translations/CoreZhHans/
# imports: http://purl.bdrc.io/ontology/types/Binding/
# imports: http://purl.bdrc.io/ontology/types/DateIndication/
# imports: http://purl.bdrc.io/ontology/types/Format/
# imports: http://purl.bdrc.io/ontology/types/Gender/
# imports: http://purl.bdrc.io/ontology/types/LangScript/
# imports: http://purl.bdrc.io/ontology/types/Language/
# imports: http://purl.bdrc.io/ontology/types/LineageType/
# imports: http://purl.bdrc.io/ontology/types/Material/
# imports: http://purl.bdrc.io/ontology/types/PaginationType/
# imports: http://purl.bdrc.io/ontology/types/PartType/
# imports: http://purl.bdrc.io/ontology/types/PlaceType/
# imports: http://purl.bdrc.io/ontology/types/PrintMethod/
# imports: http://purl.bdrc.io/ontology/types/Script/
# imports: http://purl.bdrc.io/ontology/types/Taxonomy/
# imports: http://purl.bdrc.io/ontology/types/Tradition/
# imports: http://purl.bdrc.io/ontology/types/Transliteration/
# imports: http://purl.bdrc.io/ontology/types/WorkType/
@prefix : <http://purl.bdrc.io/ontology/core/> .
@prefix adm: <http://purl.bdrc.io/ontology/admin/> .
@prefix bda: <http://purl.bdrc.io/admindata/> .
@prefix bdg: <http://purl.bdrc.io/graph/> .
@prefix bdo: <http://purl.bdrc.io/ontology/core/> .
@prefix bdr: <http://purl.bdrc.io/resource/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix iiif2: <http://iiif.io/api/presentation/2#> .
@prefix iiif3: <http://iiif.io/api/presentation/3#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://purl.bdrc.io/ontology/core/>
a owl:Ontology ;
rdfs:label "Buda core ontology"@en ;
rdfs:comment "This is the core buda ontology comprising classes, and properties with domains and ranges"@en ;
dct:license bda:LicenseCC0 ;
owl:imports
<http://purl.bdrc.io/ontology/roles/ChineseMonastic/> ,
<http://purl.bdrc.io/ontology/roles/Creator/> ,
<http://purl.bdrc.io/ontology/schemes/core/ContentMethodScheme/> ,
<http://purl.bdrc.io/ontology/schemes/core/IdentifierScheme/> ,
<http://purl.bdrc.io/ontology/schemes/taxonomy/FEMCScheme/> ,
<http://purl.bdrc.io/ontology/schemes/taxonomy/TraditionsScheme/> ,
<http://purl.bdrc.io/ontology/translations/CoreBo/> ,
<http://purl.bdrc.io/ontology/translations/CoreZhHans/> ,
<http://purl.bdrc.io/ontology/types/Binding/> ,
<http://purl.bdrc.io/ontology/types/DateIndication/> ,
<http://purl.bdrc.io/ontology/types/Format/> ,
<http://purl.bdrc.io/ontology/types/Gender/> ,
<http://purl.bdrc.io/ontology/types/LangScript/> ,
<http://purl.bdrc.io/ontology/types/Language/> ,
<http://purl.bdrc.io/ontology/types/LineageType/> ,
<http://purl.bdrc.io/ontology/types/Material/> ,
<http://purl.bdrc.io/ontology/types/PaginationType/> ,
<http://purl.bdrc.io/ontology/types/PartType/> ,
<http://purl.bdrc.io/ontology/types/PlaceType/> ,
<http://purl.bdrc.io/ontology/types/PrintMethod/> ,
<http://purl.bdrc.io/ontology/types/Script/> ,
<http://purl.bdrc.io/ontology/types/Taxonomy/> ,
<http://purl.bdrc.io/ontology/types/Tradition/> ,
<http://purl.bdrc.io/ontology/types/Transliteration/> ,
<http://purl.bdrc.io/ontology/types/WorkType/>
;
.
bdo:Agent
a owl:Class ;
rdfs:subClassOf bdo:Entity ;
rdfs:label "Agent"@en ;
adm:userTooltip "an entity that performs actions, e.g., creating works, teaching other agents, founding artificial places and so on"@en ;
.
bdo:AgentAsCreator
a owl:Class ;
rdfs:subClassOf bdo:AgentInRole ;
rdfs:label "creator"@en ;
adm:technicalComment ":AgentAsCreator has :role that is restricted to instances of :Creator (rdfs:subClassOf :Role)"@en ;
adm:userTooltip "An agent as creator establishes a given Agent performing some cretation rolw w.r.t. a Work"@en ;
.
bdo:AgentInRole
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "agent"@en ;
adm:technicalComment ":AgentInRole represents some :Agent performing an action in a particular :Role in a context represented by the subject and property that refer to the :AgenInRole"@en ;
adm:userTooltip "property linking an entity or event to the agents and roles they play"@en ;
.
bdo:Agents
a owl:Class ;
rdfs:label "Agents"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "The various sorts of agents represented in the ontology, such as Persons, Organizations and so on"@en ;
owl:unionOf (
bdo:Agent
foaf:Agent
) ;
.
bdo:AgentsOrAgentInRole
a owl:Class ;
owl:unionOf (
bdo:Agents
bdo:AgentInRole
) ;
.
bdo:AhistoricalAgent
a owl:Class ;
rdfs:subClassOf bdo:SingleAgent ;
rdfs:label "Ahistorical agent"@en ;
adm:userTooltip "An ahistorical agent may be a deity or other non-human agent that is said to exist outside of human history"@en ;
.
bdo:ArchivesCollection
a owl:Class ;
rdfs:subClassOf bdo:InstitutionalCollection ;
rdfs:label "Archives Collection"@en ;
adm:translationPriority "1"^^xsd:integer ;
adm:userTooltip "A collection maintained by a national archive"@en ;
.
bdo:AuthoredEvent
a owl:Class ;
rdfs:subClassOf bdo:WorkEvent ;
rdfs:label "Authored"@en ;
adm:userTooltip "The event of authoring a work"@en ;
.
bdo:BiblioEntity
a owl:Class ;
rdfs:subClassOf bdo:Entity ;
rdfs:label "BiblioEntity"@en ;
adm:technicalComment "Was Work, changed to align with Bibframe 2.0"@en ;
adm:userTooltip 'The :BiblioEntity Class models the descriptive metadata about a "book" in the BUDAverse.'@en ;
.
bdo:BibliographicalTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Bibliographic Title"@en ;
adm:catalogingConvention """This is the main title of a work, the title by which it is the most often known. If a work has only one title, it must be of type Bibliographic Title. There must be only one bibliographical title per work.
Title by which a Work is identified for cataloging purposes. There are three usages: (1) Title that is the main title of a Work based on Cover Title, Title Page Title. Spine Title, Colophon Title; (2) Title that is a known or popular abbreviation of the main title of a Work; (3) Title that is a collective convention used to collocate publications of an author that contains several Works (ex: gsung ‘bum)"""@en ;
adm:userTooltip "The main title of a work, the title by which it is the most often known."@en ;
.
bdo:Binding
rdfs:subClassOf bdo:Type ;
.
bdo:BundleInstance
a owl:Class ;
rdfs:subClassOf bdo:Instance ;
rdfs:label "bundle instance"@en ;
adm:userTooltip "An instance that is a bundle of unrelated instances that were not designed to be in the same package. It typically has no associated work."@en ;
.
bdo:CarvedEvent
a owl:Class ;
rdfs:subClassOf bdo:InstanceEvent ;
rdfs:label "Carved"@en ;
adm:userTooltip "The event of carving a work (in woodblocks, stone, etc.)"@en ;
.
bdo:ChineseDate
a owl:Class ;
rdfs:subClassOf bdo:Date ;
rdfs:label "Chinese date type"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "The class of DILA Chinese date individuals"@en ;
.
bdo:ChineseMonastic
rdfs:subClassOf bdo:Role ;
.
bdo:Collection
a owl:Class ;
rdfs:subClassOf bdo:Entity ;
rdfs:label "Collection"@en ;
adm:translationPriority "1"^^xsd:integer ;
adm:userTooltip "Designates a collection of Bibliographic entities"@en ;
.
bdo:ColophonTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Colophon Title"@en ;
adm:catalogingConvention "Title given in the colophon of a Work or text. Include when the title differs from the th full title or title page title"@en ;
adm:userTooltip "Title given in the colophon of a Work or text"@en ;
.
bdo:CompiledEvent
a owl:Class ;
rdfs:subClassOf bdo:InstanceEvent ;
rdfs:label "compiled"@en ;
adm:userTooltip "The event of compiling / editing a work (mostly collections)"@en ;
.
bdo:CompletedEvent
a owl:Class ;
rdfs:subClassOf bdo:WorkEvent ;
rdfs:label "completion"@en ;
adm:userTooltip "The event of completing a work"@en ;
.
bdo:ContentLocation
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "Content Location"@en ;
adm:technicalComment
"Parent facet of Work locations by page and folio. The XSD defn is located in common.xsd but is move to Work in the new ontology since that is a more appropriate location"@en ,
"The following explains the intent of splitting an Outline into chunks when outlining very large works. This is why there is a <o:location/> element spec'd in the outline.xsd; however, this feature has not been used in this manner but rather as a redundant marker of which work is being outlined. In the case that the Outline is the detail of a particular Text then the location typically will specify the Work and Volume (relative to 1) that contains the Outlined Text. Thus Locations on the sub-structure need only mention page, line and phrase"@en ,
"was :WorkLocation"@en
;
adm:userTooltip "The ContentLocation describes the Instance, Volume, Page and so on at which something of interest occurs, e.g., the beginning or end of a Work that is contained in another Work; or a reference to the source of a Lineage"@en ;
.
bdo:ContentMethod
rdfs:subClassOf bdo:Type ;
.
bdo:CopyEvent
a owl:Class ;
rdfs:subClassOf bdo:InstanceEvent ;
rdfs:label "copied"@en ;
adm:userTooltip "An event of copying a work by some means such as manual enscribing, photocopying, etc."@en ;
.
bdo:CopyrightPageTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Copyright page Title"@en ;
adm:catalogingConvention
"""The Copyright Page Title is found on the Cataloging in Publication (CIP) when present. The CIP is typically on the verso of the Title Page in Western publications and often at the end for Chinese pubications. The title should be entered in the language and script as it appears in the original publication - which for Chinese publications is typically zh-hans. The Library of COngress standard for the Title in the CIP is that it includes the title and any subtitle from the title page so for Western materials this data element is redundant with the full :WorkTitlePageTitle and can be ignored for cataloging. For Chinese materials, especially Tibetan publications, the CIP title is typically distinct from that which appears on the Title Page and hence this data can be helpful in distinguishing the Work from others.
In general include the use Copyright Page Title when it differs from the bibliographical title."""@en ,
"use for the title on the copyright page when it differs from the bibliographical title."@en
;
adm:userTooltip "Title appearing on the copyright page of a Work, if present."@en ;
rdfs:seeAlso <https://www.loc.gov/publish/cip/news/lccn_art.html> ;
.
bdo:Corporation
a owl:Class ;
rdfs:subClassOf bdo:Organization ;
rdfs:label "Corporation"@en ;
adm:technicalComment "The Names of individual Corporations are represented by rdfs:label"@en ;
adm:userTooltip "Corporation defines important social institutions. For instance in Tibet those that (1) owned land and (2) had members. Examples include families and monastic institutions"@en ;
.
bdo:CorporationMember
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "member"@en ;
adm:technicalComment """Describes a member of the subject Corporation by indicating the :Person that is a member and the :CorporationMemberType of the :Person:
bdr:Czzzz a :Corporation ;
:corporationHasMember
[ a :CorporationMemberByBlood ;
:corporationMember bdr:Pyyyyy ] ,
[ a CorporationMemberByMarriage ;
:corporationMember bdr:Pxxxxx ] ."""@en ;
adm:userTooltip "A member of an organization based on some attributes of the "@en ;
.
bdo:CorporationMemberByBlood
a owl:Class ;
rdfs:subClassOf bdo:CorporationMember ;
rdfs:label "Member by blood"@en ;
adm:userTooltip "A member of an organization by kinship"@en ;
.
bdo:CorporationMemberByMarriage
a owl:Class ;
rdfs:subClassOf bdo:CorporationMember ;
rdfs:label "Member by marriage"@en ;
adm:userTooltip "A member of an organization by marriage"@en ;
.
bdo:CorporationMemberMonastic
a owl:Class ;
rdfs:subClassOf bdo:CorporationMember ;
rdfs:label "Monastic member"@en ;
adm:userTooltip "An member of a monastic organization"@en ;
.
bdo:CoverTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Cover Title"@en ;
adm:userTooltip "Title printed on the cover of a Work or text as issued"@en ;
.
bdo:Creator
rdfs:subClassOf bdo:Role ;
.
bdo:Date
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "Date type"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "The type of various sorts of date individuals such as DILA's Chinese date individuals - see subclass bdo:ChineseDateType"@en ;
.
bdo:DateIndication
rdfs:subClassOf bdo:Type ;
.
bdo:DigitalInstance
a owl:Class ;
rdfs:subClassOf bdo:Instance ;
rdfs:label "Digital instance"@en ;
.
bdo:EnscribedEvent
a owl:Class ;
rdfs:subClassOf bdo:InstanceEvent ;
rdfs:label "enscribed"@en ;
adm:userTooltip "An event of preparing a written manuscript of a Work"@en ;
.
bdo:EntitiesOrFacets
a owl:Class ;
rdfs:label "entity or facet"@en ;
rdfs:comment "class of various resources that may have :Note attached"@en ;
adm:translationPriority "2"^^xsd:integer ;
owl:unionOf (
bdo:Entity
bdo:Facet
bdo:IIIFEntity
) ;
.
bdo:Entity
a owl:Class ;
rdfs:label "Entity"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "Entities are the principle types or concepts in the BDRC ontology. Individuals of type subclass of :Entity will correspond to distinct individuals in the domain of discourse of BDRC, such as Persons, Places, and Works."@en ;
.
bdo:Era
rdfs:subClassOf bdo:Type ;
.
bdo:Etext
a owl:Class ;
rdfs:subClassOf bdo:BiblioEntity ;
rdfs:label "eText"@en ;
adm:technicalComment """The :Etext :Entity represents a searchable Unicode text file (\"eText\"). In BUDA, eTexts are comprised of a base layer + at least one archival annotation layer, plus other annotation layers for different uses. The base layer is a raw Unicode text file. The base layer contains Unicode text and line breaks that form a coordinate system. The coordinate system includes a sequence number, position of start character and end character. The coordinate system is defined in the archival annotation layer.
The RDF representation of :Etext is derived from the base layer, a graph definining the coordinate system :EtextNonPaginated or :EtextPaginate, and a graph for the :ItemEtext that references the volume of the :ItemEtext.
There will also be information such as a URI to the original source file, if applicable. For Tibetan, these typically are Sambhota Word or Tibet Doc files.
The reference to the containing :ItemEtext is a URI formed by appending the volume index to the :ItemEtext URI, like:
:eTextInVolume bdr:I1KG443_003/volume/3
This URI refers to a volume blank node contained in the referenced Item.
Search chunks in the :Etext are derived from the original Unicode eText stream by breaking the stream at such locations to minimize the likelihood that the likely search terms will be broken across chunk boundaries. In Tibetan this is achieved by breaking the stream after the nearest shad codepoint following something like 300 tsegs. This assumes that most searches will not extend beyond a phrase boundary delimited by a shad (note there are actually a family of codepoints that count as shad in the Tibetan Unicode plane).
Each chunk is a blank node containing the chunk id - which is a virtual id serving only to order the sequence of contents to reassemble the original eText content, like:
[ a EtextChunk ;
:eTextChunk 3 ;
:chunkContents \". . . the text contained in chunk 3 . . .\" ]
If the chunk is from an OCR'd text, then there is additional information indicating the starting chunk and character, and ending chunk and character for each page in the :ItemImageAsset from which the OCR'd material was derived. For example,
[ a EtextPage ; :slice 46 ;
:sliceStartChunk 43 ;
:sliceStartChar 17 ;
:sliceEndChunk 44 ;
:sliceEndChar 138 ]
The character counts are in terms of Unicode codepoints in whatever representation is used, typically, UTF-8."""@en ;
bdo:inferSubTree "true"^^xsd:boolean ;
.
bdo:EtextChunk
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "eText chunk"@en ;
adm:userTooltip "A unit of searchable etext"@en ;
.
bdo:EtextInstance
a owl:Class ;
rdfs:subClassOf bdo:DigitalInstance ;
rdfs:label "eText instance"@en ;
adm:technicalComment
""":ItemEtext represent the :Etext items in the archive (i.e the actual digital files).
There are two subclasses of :ItemEtext. (1) :ItemEtextNonPaginated and (2) :ItemEtextPaginated. These are characterized by the presence or lack of pagination information maintained in the :ItemEtext. OCR is considered ItemEtextPaginated and manual input saved in RTF format considered :ItemEtextNonPaginated. These are distinguished because there are different stuctural characteristics in the :ItemEtext.
An :ItemEtext typically will represent an entire published Work. There won't be an Etext item for each :Volume within the Work. This is because we generally want to track the entire published Work as a single entity and will use the Work :partOf Work statements along with additional statements to link an individual Etext back to a Work part."""@en ,
"Was ItemEtext, changed to align with Bibframe 2.0"@en
;
adm:userTooltip "An Instance consisting of some form of searchable text"@en ;
rdfs:seeAlso bdo:Etext ;
.
bdo:EtextLine
a owl:Class ;
rdfs:subClassOf bdo:EtextSlice ;
rdfs:label "line"@en ;
rdfs:comment "An indication of correpondance with a line of text of a physical/image asset. Lines are counted from 1."@en ;
adm:userTooltip "indicates a line of text in a corresponding digitized image of a Work"@en ;
.
bdo:EtextNonPaginated
a owl:Class ;
rdfs:subClassOf bdo:Etext ;
rdfs:label "Non Paginated Etext"@en ;
adm:userTooltip "An etext without any associated pagination information corresponding to digitized images of a Work"@en ;
owl:deprecated "true"^^xsd:boolean ;
.
bdo:EtextPage
a owl:Class ;
rdfs:subClassOf bdo:EtextSlice ;
rdfs:label "page"@en ;
adm:userTooltip "An indication of correspondence with a page of a physical/image page."@en ;
.
bdo:EtextPaginated
a owl:Class ;
rdfs:subClassOf bdo:Etext ;
rdfs:label "Paginated Etext"@en ;
adm:userTooltip "An etext with associated pagination information corresponding to digitized images of a Work"@en ;
owl:deprecated "true"^^xsd:boolean ;
.
bdo:EtextRef
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "etext"@en ;
adm:technicalComment "Used as a reference from a :VolumeEtextAsset to a particular :Etext, via :eTextResource, and indicating the position, :seqNum, of the :Etext in the volume."@en ;
adm:userTooltip "links an etext volume to its various etexts (often 1)"@en ;
owl:deprecated "true"^^xsd:boolean ;
.
bdo:EtextSlice
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "slice"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "A slice of text is a character range, used to identify portions of an Etext for any purpose: correspondence with original pages, lines, etc."@en ;
.
bdo:EtextVolume
a owl:Class ;
rdfs:subClassOf bdo:Volume ;
rdfs:label "Etext Volume"@en ;
.
bdo:Event
a owl:Class ;
rdfs:subClassOf owl:Thing ;
rdfs:label "Event"@en ;
adm:technicalComment "Class of all the various event classes in the ontology: PersonEvent, PlaceEvent, LineageReceived, etc"@en ;
adm:userTooltip "The class of the various sorts of events: Persons, Places, Works, and Lineages"@en ;
.
bdo:Facet
a owl:Class ;
rdfs:label "Facet"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip ":Facets are essentially n-ary relations that apply to one or more Resources. Facets are compound features or properties of Resources."@en ;
.
bdo:FullTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Full Title"@en ;
adm:catalogingConvention """Title on the first page of the text of the Tibetan traditional Pecha format.
Often the Title Page Title for a publication of a reproduction that includes prefatory material distinct from the main Tibetan content is different from the Tibetan title that appears on the first page of the content. See for instance, bdr:W22505"""@en ;
adm:userTooltip "Title on the first page of the text of the Tibetan traditional Pecha format."@en ;
.
bdo:Gender
rdfs:subClassOf bdo:Type ;
.
bdo:GeneralNote
a owl:Class ;
rdfs:subClassOf bdo:Note ;
rdfs:label "General note"@en ;
adm:userTooltip "A general note contains non-specific information about some resource"@en ;
.
bdo:HalfTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Half Title"@en ;
adm:catalogingConvention "Title of a publication appearing on a page or folio preceding the title page. Include when present as a distinguishing item of information. The half title page may be missing from later reproductions of a work, Typically the half title is the main title w/o additional subtitling."@en ;
adm:userTooltip "Title of a publication appearing on a page or folio preceding the title page."@en ;
.
bdo:IIIF2Or3Collection
a owl:Class ;
rdfs:label "iiif v2 or v3 collection"@en ;
adm:translationPriority "2"^^xsd:integer ;
owl:unionOf (
iiif2:Collection
iiif3:Collection
) ;
.
bdo:IIIF2Or3Manifest
a owl:Class ;
rdfs:label "iiif v2 or v3 manifest"@en ;
adm:translationPriority "2"^^xsd:integer ;
owl:unionOf (
iiif2:Manifest
iiif3:Manifest
) ;
.
bdo:IIIFCollection
a owl:Class ;
rdfs:subClassOf bdo:IIIFEntity ;
rdfs:label "IIIF Collection"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "can be v2.1.* or v3.0.*"@en ;
.
bdo:IIIFEntity
a owl:Class ;
.
bdo:IIIFManifest
a owl:Class ;
rdfs:subClassOf bdo:IIIFEntity ;
rdfs:label "IIIF Manifest"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "can be v2.1.* or v3.0.*"@en ;
.
bdo:ISBN
a rdfs:Datatype ;
rdfs:label "ISBN"@en ;
adm:technicalComment "The regex is does not take into account opitional blank, ' ', or dash, '-', chars separating the various groups. Also there is no spec for calculating the check digit"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "International Standard Book Number"@en ;
bdo:dataTypeExpression "^(97(8|9))?\\d{9}(\\d|X)$"^^xsd:string ;
rdfs:isDefinedBy <https://www.isbn-international.org/sites/default/files/ISBN%20Manual%202012%20-corr.pdf> ;
.
bdo:ImageGroup
a owl:Class ;
rdfs:subClassOf bdo:Volume ;
rdfs:label "Image Group"@en ;
adm:technicalComment """Each :ImageGroup represents a group of images. Most of the time these would correspond to volumes / bundles.
Alternatively, a :ImageGroup may have an :hasManifest property that identifies an :IIIFManifest resource. This will typically occur when the images associated with the :ImageGroup are served from a third-party IIIF server."""@en ;
adm:userTooltip "Represents a scanned or otherwise digitized set of page images."@en ;
.
bdo:ImageInstance
a owl:Class ;
rdfs:subClassOf bdo:DigitalInstance ;
rdfs:label "Image Instance (Scans)"@en ;
adm:technicalComment "A digitized set of pages, one per page (folio side), produced by document scanning, digital photography. The resulting set of assets in :ItemImageAsset are images in a wide variety of archival and derivative formats."@en ;
adm:userTooltip "An item comprised of digitized images of the pages of a Work"@en ;
.
bdo:IncipitTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Incipit Title"@en ;
adm:userTooltip "the title as given, inline, at the beginning of the text"@en ;
.
bdo:Instance
a owl:Class ;
rdfs:subClassOf bdo:BiblioEntity ;
rdfs:label "Instance (Version)"@en ;
adm:technicalComment
"Was PublishedWork, changed to align with Bibframe 2.0"@en ,
"Was Work, changed to align with Bibframe 2.0"@en
;
adm:userTooltip "An expression of a work, for instance a particular published form."@en ;
bdo:inferSubTree "true"^^xsd:boolean ;
.
bdo:InstanceEvent
a owl:Class ;
rdfs:subClassOf bdo:Event ;
rdfs:label "Instance Event"@en ;
adm:technicalComment "An event associated with the production of an :Instance. Event information is gathered from colophons and publication data presented in the publishede form of texts"@en ;
adm:userTooltip "An event associated with the production of an Instance."@en ;
.
bdo:InstitutionalCollection
a owl:Class ;
rdfs:subClassOf bdo:Collection ;
rdfs:label "Institutional Collection"@en ;
adm:translationPriority "1"^^xsd:integer ;
adm:userTooltip "A collection maintained by an institution"@en ;
.
bdo:IntegerOrString
a rdfs:Datatype ;
owl:equivalentClass [
a rdfs:Datatype ;
owl:unionOf (
xsd:integer
xsd:string
) ;
] ;
.
bdo:Item
a owl:Class ;
rdfs:subClassOf bdo:BiblioEntity ;
rdfs:label "Item"@en ;
adm:technicalComment ":Item captures the structural and administrative metadata associated with a digital or physical asset. While this ontology is primarily concerned with digital assets of texts, :Item could easily be extended to other types of digital assets such as audio and video; as well as physical assets, such as the physical holdings of libraries."@en ;
adm:userTooltip "An Item captures structural and administrative metadata associated with a digital or physical asset"@en ;
bdo:inferSubTree "true"^^xsd:boolean ;
.
bdo:ItemMicrofilmAsset
a owl:Class ;
rdfs:subClassOf bdo:ItemPhysicalAsset ;
rdfs:label "Item microfilm asset"@en ;
adm:userTooltip "An :ItemMicrofilmAsset describes the physical microfilm from which the associated Instance was digitized."@en ;
.
bdo:ItemPhysicalAsset
a owl:Class ;
rdfs:subClassOf bdo:Item ;
rdfs:label "Physical item"@en ;
adm:userTooltip "A item comprised of a physical volume or volumes."@en ;
.
bdo:LCCN
a rdfs:Datatype ;
rdfs:label "LCCN"^^xsd:string ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "Library of Congress Control Number"@en ;
bdo:dataTypeExpression "[[a-z]|[[a-z][a-z]|dd]|[a-z][[a-z][a-z]|dd]|[a-z][a-z]dd]dddddddd"^^xsd:string ;
rdfs:isDefinedBy <http://www.loc.gov/marc/lccn-namespace.html> ;
owl:equivalentClass xsd:string ;
.
bdo:LCCallNumber
a rdfs:Datatype ;
rdfs:label "LCCallNum"@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "Library of Congress Call Number"@en ;
bdo:dataTypeExpression <https://gist.github.com/kurtraschke/560162> ;
rdfs:isDefinedBy <https://www.loc.gov/aba/publications/FreeCSM/freecsm.html> ;
rdfs:seeAlso <https://www.loc.gov/catdir/cpso/lcco/> ;
.
bdo:Label
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "Label"@en ;
.
bdo:LangScript
rdfs:subClassOf bdo:Type ;
.
bdo:Language
rdfs:subClassOf bdo:Type ;
.
bdo:Lineage
a owl:Class ;
rdfs:subClassOf bdo:Entity ;
rdfs:label "Lineage"@en ;
adm:catalogingConvention """Lineages represent information about how a particular text or group of texts or perhaps purely oral transmission has been passed from one individual to another. The Tibetan genres, gsan yig and thob yig.
Lineage transmissions capture the relationship between lineage holders, sets of texts and the places and dates where/when the lineage was transferred from one holder to another."""@en ;
adm:technicalComment
"""Example:
bdr:L8LS15684 a :Lineage ; :status bdr:StatusReleased ;
rdfs:label \"mngon rtogs rgyan gyi 'grel pa don gsal gyi brgyud pa/\"@bo-x-ewts ;
:lineageType bdr:LineageLung ;
:lineageObject bdr:W21662 ;
:lineageObject bdr:T36 ;
:lineageLocation [ a :ContentLocation ;
:contentLocationPage \"131\" ;
:contentLocationVolume \"1\" ;
:contentLocationWork bdr:W1KG16278 ]
:lineageHolder [ a :LineageHolder ;
:lineageWho bdr:T10MS11142 ]
:lineageHolder [ a :LineageHolder ;
:lineageWho bdr:T681 ;
:lineageReceived [ a :LineageReceived ;
:lineageFrom bdr:T10MS11142 ]
]
:lineageHolder [ a :LineageHolder ;
:lineageWho bdr:P6117 ;
:lineageReceived [ a :LineageReceived ;
:lineageFrom bdr:T681 ]
]"""@en ,
"Names are represented by rdfs:label"@en
;
adm:userTooltip "A (transmission) lineage is a collectiomn of sequences of lineage holders passing a lineage through time"@en ;
rdfs:seeAlso <https://link.springer.com/article/10.1023%2FA%3A1004844115222?LI=true> ;
.
bdo:LineageEvent
a owl:Class ;
rdfs:subClassOf bdo:Event ;
rdfs:label "Event"@en ;
adm:technicalComment '''Each :LineageReceived describes another :LineageHolder from whom the current :LineageHolder received the :Lineage transmission. Typically there is a unique :LineageHolder from whom the :Lineage is received but two or more are possible.
For example,
bdr:Lwwww a :Lineage ;
:lineageHolder
[ a :LineageHolder ;
:lineageWho bdr:Paaaa ;
:lineageReceived
[ a :LineageReceived ;
:lineageFrom bdr:Pbbbb ;
:lineageSite bdr:Gdddd ;
:onOrAbout "134u" ] ;
:lineageWork bdr:Wcccc ]'''@en ;
adm:userTooltip "An event associated with the transmission of a lineage, such as giving/receiving an empowerment or oral transmission, and so on"@en ;
rdfs:seeAlso bdo:LineageHolder ;
.
bdo:LineageHolder
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "lineage holder"@en ;
adm:technicalComment '''A :LineageHolder describes a :Person or other :Entity (i.e., a deity or mythical being) that was/is considered to be the authoritative transmitter of a :Lineage.
Usually the holder received the :Lineage from some other entity but there is a "first" holder who counts as the original holder of the :Lineage.
A holder may create/author one or more Works concerning the Lineage and these are included with the holder as well as the, usually unique, prior holder of the lineage who transmitted it on to the current holder.
The :LineageReceived records the entity from whom the :Lineage was received, as well as the :Place where the :Lineage was transmitted to the current holder and the circa of the transmission if known.
For example,
bdr:Lwwww a :Lineage ;
:lineageHolder
[ a :LineageHolder ;
:lineageWho bdr:Paaaa ;
:lineageReceived
[ a :LineageReceived ;
:lineageFrom bdr:Pbbbb ;
:lineageSite bdr:Gdddd ;
:onOrAbout 134u ] ;
:lineageWork bdr:Wcccc ]'''@en ;
adm:userTooltip "A lineage holder is a Person that is considered to be an authoritative conveyer of a transmission lineage"@en ;
.
bdo:LineageType
rdfs:subClassOf bdo:Type ;
.
bdo:Material
rdfs:subClassOf bdo:Type ;
.
bdo:MonasticCollection
a owl:Class ;
rdfs:subClassOf bdo:InstitutionalCollection ;
rdfs:label "Monastic Collection"@en ;
adm:translationPriority "1"^^xsd:integer ;
adm:userTooltip "A collection maintained by a monastery"@en ;
.
bdo:NoColophon
a rdfs:Datatype ;
rdfs:label "no colophon"@en ;
adm:catalogingConvention "Used to indicated that a Work has no colophon vs a Work for which the colophon has not been recorded in the metadata."@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "Indicates that a Work has no colophon"@en ;
.
bdo:Note
a owl:Class ;
rdfs:subClassOf bdo:Facet ;
rdfs:label "Note"@en ;
adm:userTooltip "A comment about the subject resource, possibly with a source Work and a location in the Work"@en ;
.
bdo:OPFOCRBatch
a owl:DatatypeProperty ;
rdfs:label "OCR batch"@en ;
.
bdo:OPFOCRSoftware
a owl:DatatypeProperty ;
rdfs:label "OCR software"@en ;
.
bdo:OPFOCRSource
a owl:DatatypeProperty ;
rdfs:label "Source for the OCR"@en ;
.
bdo:OPFOCRTimeStamp
a owl:DatatypeProperty ;
rdfs:label "OCR date"@en ;
.
bdo:OPFOCRWordMeanConfidenceIndex
a owl:DatatypeProperty ;
rdfs:label "Mean OCR confidence index"@en ;
.
bdo:OPFOCRWordMedianConfidenceIndex
a owl:DatatypeProperty ;
rdfs:label "Median OCR confidence index"@en ;
.
bdo:ObjectType
a owl:Class ;
rdfs:subClassOf bdo:Type ;
rdfs:label "print type"@en ;
adm:catalogingConvention "ObjectType describes how the witness came to be. For example, it could have been written by the author, an Autograph; it could have been printed from wood blocks, a BlockPrint; it could have been OCR'd from some other witness; and so on."@en ;
adm:translationPriority "2"^^xsd:integer ;
adm:userTooltip "Print type indicates the form of the Work such as blockprint, palm-leaf, manuscript, and so on"@en ;
.
bdo:Organization
a owl:Class ;
rdfs:subClassOf bdo:Agent ;
rdfs:label "organization"@en ;
adm:catalogingConvention """An :Organization is a collection of agents that may be considered act in concert as a single agent, e.g., the kashag or the dzogchen protectors taken together: Ekazati, Rahulla, and Dorje Drollo
An administrative organization is one that is not a subject of the domain of discourse. For example, the British Library's Endangered Archives Programme (EAP) is an administrative organization and the sde dge par khang can be considered an :Organization since it is an entity within the domain of Asian Buddhism."""@en ;
adm:userTooltip "An organization is a collection of agents organized as a single entity such as a monastery, governing body, and so on"@en ;
.
bdo:OriginalCopyEvent
a owl:Class ;
rdfs:subClassOf bdo:InstanceEvent ;
rdfs:label "Originally copied"@en ;
adm:userTooltip "An event of originally copying the text. Happens in some contexts (ex: Burmese), where manuscripts can have an attributed original scribe (acring somewhat as an editor) even though the physical copy we have is a copy of the 'original' copy."@en ;
.
bdo:OriginatedEvent
a owl:Class ;
rdfs:subClassOf bdo:WorkEvent ;
rdfs:label "originated"@en ;
adm:userTooltip "The event of origin of a work"@en ;
.
bdo:OtherTitle
a owl:Class ;
rdfs:subClassOf bdo:Title ;
rdfs:label "Other Title"@en ;
adm:catalogingConvention "when a work is known by different titles, the main one is recorded by :WorkBibliographicalTitle and the others with :WorkOtherTitle. This should mainly be used with abstract works."@en ;
adm:userTooltip "Title that a work is known by other than one of the defined title types"@en ;
.
bdo:Outline
a owl:Class ;
rdfs:subClassOf bdo:Entity ;
rdfs:label "Outline"@en ;
.
bdo:PaginationType
rdfs:subClassOf bdo:Type ;
.
bdo:PartType
rdfs:subClassOf bdo:Type ;
.
bdo:Person
a owl:Class ;
rdfs:subClassOf bdo:SingleAgent ;
rdfs:label "Person"@en ;
adm:catalogingConvention "A Person resource tracks biographical metadata such as kinship relations, birth and death dates, administrative offices and seats held, important events and known name variants. Instances of Person resources are not created for a-historical or quasi-historical personages, including legendary and mythical figures. Deities are defined as Topics."@en ;
adm:technicalComment "names are represented via bdo:PersonName"@en ;
adm:userTooltip "A Person resource tracks biographical metadata such as names/titles, kinship relations, birth and death events, and so on"@en ;
.
bdo:PersonAffiliation
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Affiliation"@en ;
adm:userTooltip "Event indicating the Person becoming affiliated with a lineage or organization"@en ;
.
bdo:PersonAssumesOffice
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Assumes office"@en ;
adm:userTooltip "Event indicating a Person assuming an office such as Professor, Postmaster or General"@en ;
.
bdo:PersonAssumesSeat
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Assumes seat"@en ;
adm:userTooltip "Event indicating a Person assuming a seat such as Secretary to the Kashag"@en ;
.
bdo:PersonBirth
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Birth"@en ;
adm:userTooltip "Birth Event for a Person"@en ;
.
bdo:PersonBodhisattvaVowName
a owl:Class ;
rdfs:subClassOf bdo:PersonName ;
rdfs:label "Bodhisattva vow name"@en ;
adm:userTooltip "The name received by the Person upon taking their Bodhisattva vows"@en ;
.
bdo:PersonCommonName
a owl:Class ;
rdfs:subClassOf bdo:PersonName ;
rdfs:label "Common Name"@en ;
adm:userTooltip "The name by which a Person is commonly known"@en ;
.
bdo:PersonCorporateName
a owl:Class ;
rdfs:subClassOf bdo:PersonName ;
rdfs:label "Organization Position Name"@en ;
adm:userTooltip "Name by which a Person is known by virtue of their position within an Organization"@en ;
.
bdo:PersonDeath
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Death"@en ;
adm:userTooltip "Death Event for a Person"@en ;
.
bdo:PersonDivorce
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Divorce"@en ;
adm:userTooltip "Event occurring upon a divorce of the person"@en ;
.
bdo:PersonDonorName
a owl:Class ;
rdfs:subClassOf bdo:PersonName ;
rdfs:label "Donor name"@en ;
adm:userTooltip "Monastic name associated with the name of the donor who sponsored a monastery of residence. This is specific to a few socio linguistic contexts, such as the Burmese one."@en ;
.
bdo:PersonEvent
a owl:Class ;
rdfs:subClassOf bdo:Event ;
rdfs:label "Person Event"@en ;
adm:technicalComment """A Person Event describes place, date and other relevant information related to some significant event such as ordination, marriage, birth, death and so on.
The type of event is represented as a subclass of :PersonEvent"""@en ;
adm:userTooltip "An Event associated with the Person such as birth, death, ordination, and so on"@en ;
.
bdo:PersonEventNotSpecified
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Unspecified Event"@en ;
adm:userTooltip "An otherwise unspecified type of Person Event"@en ;
.
bdo:PersonFamilyName
a owl:Class ;
rdfs:subClassOf bdo:PersonName ;
rdfs:label "Family Name"@en ;
adm:userTooltip "The name of a Person's family. Surname"@en ;
.
bdo:PersonFinalOrdination
a owl:Class ;
rdfs:subClassOf bdo:PersonEvent ;
rdfs:label "Final Ordination"@en ;
adm:userTooltip "The Event of a Person receiving their final ordination"@en ;
.