rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/bibframe.rb
CHANGED
@@ -7,8 +7,7 @@ module RDF::Vocab
|
|
7
7
|
# # Vocabulary for <http://bibframe.org/vocab/>
|
8
8
|
# class Bibframe < RDF::StrictVocabulary
|
9
9
|
# end
|
10
|
-
|
11
|
-
|
10
|
+
Bibframe = Class.new(RDF::StrictVocabulary("http://bibframe.org/vocab/")) do
|
12
11
|
# Ontology definition
|
13
12
|
ontology :"http://bibframe.org/vocab/",
|
14
13
|
"dc:modified": "2014-12-10T20:23:05.638677Z".freeze,
|
data/lib/rdf/vocab/bibo.rb
CHANGED
@@ -5,9 +5,504 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://purl.org/ontology/bibo/>
|
8
|
+
# #
|
9
|
+
# # The Bibliographic Ontology
|
10
|
+
# #
|
11
|
+
# # The Bibliographic Ontology describes bibliographic things on the semantic Web in RDF. This ontology can be used as a citation ontology, as a document classification ontology, or simply as a way to describe any kind of document in RDF. It has been inspired by many existing document description metadata formats, and can be used as a common ground for converting other bibliographic data sources.
|
12
|
+
# # @version http://purl.org/ontology/bibo/1.3/
|
8
13
|
# class BIBO < RDF::StrictVocabulary
|
14
|
+
# # A scholarly academic article, typically published in a journal.
|
15
|
+
# # @return [RDF::Vocabulary::Term]
|
16
|
+
# attr_reader :AcademicArticle
|
17
|
+
#
|
18
|
+
# # A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine.
|
19
|
+
# # @return [RDF::Vocabulary::Term]
|
20
|
+
# attr_reader :Article
|
21
|
+
#
|
22
|
+
# # An audio document; aka record.
|
23
|
+
# # @return [RDF::Vocabulary::Term]
|
24
|
+
# attr_reader :AudioDocument
|
25
|
+
#
|
26
|
+
# # An audio-visual document; film, video, and so forth.
|
27
|
+
# # @return [RDF::Vocabulary::Term]
|
28
|
+
# attr_reader :AudioVisualDocument
|
29
|
+
#
|
30
|
+
# # Draft legislation presented for discussion to a legal body.
|
31
|
+
# # @return [RDF::Vocabulary::Term]
|
32
|
+
# attr_reader :Bill
|
33
|
+
#
|
34
|
+
# # A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers.
|
35
|
+
# # @return [RDF::Vocabulary::Term]
|
36
|
+
# attr_reader :Book
|
37
|
+
#
|
38
|
+
# # A section of a book.
|
39
|
+
# # @return [RDF::Vocabulary::Term]
|
40
|
+
# attr_reader :BookSection
|
41
|
+
#
|
42
|
+
# # A written argument submitted to a court.
|
43
|
+
# # @return [RDF::Vocabulary::Term]
|
44
|
+
# attr_reader :Brief
|
45
|
+
#
|
46
|
+
# # A chapter of a book.
|
47
|
+
# # @return [RDF::Vocabulary::Term]
|
48
|
+
# attr_reader :Chapter
|
49
|
+
#
|
50
|
+
# # A collection of statutes.
|
51
|
+
# # @return [RDF::Vocabulary::Term]
|
52
|
+
# attr_reader :Code
|
53
|
+
#
|
54
|
+
# # A document that simultaneously contains other documents.
|
55
|
+
# # @return [RDF::Vocabulary::Term]
|
56
|
+
# attr_reader :CollectedDocument
|
57
|
+
#
|
58
|
+
# # A collection of Documents or Collections
|
59
|
+
# # @return [RDF::Vocabulary::Term]
|
60
|
+
# attr_reader :Collection
|
61
|
+
#
|
62
|
+
# # A meeting for consultation or discussion.
|
63
|
+
# # @return [RDF::Vocabulary::Term]
|
64
|
+
# attr_reader :Conference
|
65
|
+
#
|
66
|
+
# # A collection of legal cases.
|
67
|
+
# # @return [RDF::Vocabulary::Term]
|
68
|
+
# attr_reader :CourtReporter
|
69
|
+
#
|
70
|
+
# # A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information.
|
71
|
+
# # @return [RDF::Vocabulary::Term]
|
72
|
+
# attr_reader :Document
|
73
|
+
#
|
74
|
+
# # a distinct part of a larger document or collected document.
|
75
|
+
# # @return [RDF::Vocabulary::Term]
|
76
|
+
# attr_reader :DocumentPart
|
77
|
+
#
|
78
|
+
# # The status of the publication of a document.
|
79
|
+
# # @return [RDF::Vocabulary::Term]
|
80
|
+
# attr_reader :DocumentStatus
|
81
|
+
#
|
82
|
+
# # An edited book.
|
83
|
+
# # @return [RDF::Vocabulary::Term]
|
84
|
+
# attr_reader :EditedBook
|
85
|
+
#
|
86
|
+
# # A written communication addressed to a person or organization and transmitted electronically.
|
87
|
+
# # @return [RDF::Vocabulary::Term]
|
88
|
+
# attr_reader :Email
|
89
|
+
#
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :Event
|
92
|
+
#
|
93
|
+
# # A passage selected from a larger work.
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :Excerpt
|
96
|
+
#
|
97
|
+
# # aka movie.
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :Film
|
100
|
+
#
|
101
|
+
# # An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :Hearing
|
104
|
+
#
|
105
|
+
# # A document that presents visual or diagrammatic information.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :Image
|
108
|
+
#
|
109
|
+
# # A formalized discussion between two or more people.
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :Interview
|
112
|
+
#
|
113
|
+
# # something that is printed or published and distributed, esp. a given number of a periodical
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :Issue
|
116
|
+
#
|
117
|
+
# # A periodical of scholarly journal Articles.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :Journal
|
120
|
+
#
|
121
|
+
# # A document accompanying a legal case.
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :LegalCaseDocument
|
124
|
+
#
|
125
|
+
# # A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law.
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :LegalDecision
|
128
|
+
#
|
129
|
+
# # A legal document; for example, a court decision, a brief, and so forth.
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :LegalDocument
|
132
|
+
#
|
133
|
+
# # A legal document proposing or enacting a law or a group of laws.
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :Legislation
|
136
|
+
#
|
137
|
+
# # A written or printed communication addressed to a person or organization and usually transmitted by mail.
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :Letter
|
140
|
+
#
|
141
|
+
# # A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports.
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :Magazine
|
144
|
+
#
|
145
|
+
# # A small reference book, especially one giving instructions.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :Manual
|
148
|
+
#
|
149
|
+
# # An unpublished Document, which may also be submitted to a publisher for publication.
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :Manuscript
|
152
|
+
#
|
153
|
+
# # A graphical depiction of geographic features.
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :Map
|
156
|
+
#
|
157
|
+
# # A loose, thematic, collection of Documents, often Books.
|
158
|
+
# # @return [RDF::Vocabulary::Term]
|
159
|
+
# attr_reader :MultiVolumeBook
|
160
|
+
#
|
161
|
+
# # A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising.
|
162
|
+
# # @return [RDF::Vocabulary::Term]
|
163
|
+
# attr_reader :Newspaper
|
164
|
+
#
|
165
|
+
# # Notes or annotations about a resource.
|
166
|
+
# # @return [RDF::Vocabulary::Term]
|
167
|
+
# attr_reader :Note
|
168
|
+
#
|
169
|
+
# # A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years.
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :Patent
|
172
|
+
#
|
173
|
+
# # A public performance.
|
174
|
+
# # @return [RDF::Vocabulary::Term]
|
175
|
+
# attr_reader :Performance
|
176
|
+
#
|
177
|
+
# # A group of related documents issued at regular intervals.
|
178
|
+
# # @return [RDF::Vocabulary::Term]
|
179
|
+
# attr_reader :Periodical
|
180
|
+
#
|
181
|
+
# # A communication between an agent and one or more specific recipients.
|
182
|
+
# # @return [RDF::Vocabulary::Term]
|
183
|
+
# attr_reader :PersonalCommunication
|
184
|
+
#
|
185
|
+
# # A personal communication manifested in some document.
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :PersonalCommunicationDocument
|
188
|
+
#
|
189
|
+
# # A compilation of documents published from an event, such as a conference.
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :Proceedings
|
192
|
+
#
|
193
|
+
# # An excerpted collection of words.
|
194
|
+
# # @return [RDF::Vocabulary::Term]
|
195
|
+
# attr_reader :Quote
|
196
|
+
#
|
197
|
+
# # A document that presents authoritative reference information, such as a dictionary or encylopedia .
|
198
|
+
# # @return [RDF::Vocabulary::Term]
|
199
|
+
# attr_reader :ReferenceSource
|
200
|
+
#
|
201
|
+
# # A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc..
|
202
|
+
# # @return [RDF::Vocabulary::Term]
|
203
|
+
# attr_reader :Report
|
204
|
+
#
|
205
|
+
# # A loose, thematic, collection of Documents, often Books.
|
206
|
+
# # @return [RDF::Vocabulary::Term]
|
207
|
+
# attr_reader :Series
|
208
|
+
#
|
209
|
+
# # A slide in a slideshow
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :Slide
|
212
|
+
#
|
213
|
+
# # A presentation of a series of slides, usually presented in front of an audience with written text and images.
|
214
|
+
# # @return [RDF::Vocabulary::Term]
|
215
|
+
# attr_reader :Slideshow
|
216
|
+
#
|
217
|
+
# # A document describing a specification.
|
218
|
+
# # @return [RDF::Vocabulary::Term]
|
219
|
+
# attr_reader :Specification
|
220
|
+
#
|
221
|
+
# # A document describing a standard: a specification organized through a standards body.
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :Standard
|
224
|
+
#
|
225
|
+
# # A bill enacted into law.
|
226
|
+
# # @return [RDF::Vocabulary::Term]
|
227
|
+
# attr_reader :Statute
|
228
|
+
#
|
229
|
+
# # A document created to summarize research findings associated with the completion of an academic degree.
|
230
|
+
# # @return [RDF::Vocabulary::Term]
|
231
|
+
# attr_reader :Thesis
|
232
|
+
#
|
233
|
+
# # The academic degree of a Thesis
|
234
|
+
# # @return [RDF::Vocabulary::Term]
|
235
|
+
# attr_reader :ThesisDegree
|
236
|
+
#
|
237
|
+
# # A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print.
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :Webpage
|
240
|
+
#
|
241
|
+
# # A group of Webpages accessible on the Web.
|
242
|
+
# # @return [RDF::Vocabulary::Term]
|
243
|
+
# attr_reader :Website
|
244
|
+
#
|
245
|
+
# # A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc.
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :Workshop
|
248
|
+
#
|
249
|
+
# # A summary of the resource.
|
250
|
+
# # @return [RDF::Vocabulary::Term]
|
251
|
+
# attr_reader :abstract
|
252
|
+
#
|
253
|
+
# # A legal decision that affirms a ruling.
|
254
|
+
# # @return [RDF::Vocabulary::Term]
|
255
|
+
# attr_reader :affirmedBy
|
256
|
+
#
|
257
|
+
# # Critical or explanatory note for a Document.
|
258
|
+
# # @return [RDF::Vocabulary::Term]
|
259
|
+
# attr_reader :annotates
|
260
|
+
#
|
261
|
+
# # The date on which a legal case is argued before a court. Date is of format xsd:date
|
262
|
+
# # @return [RDF::Vocabulary::Term]
|
263
|
+
# attr_reader :argued
|
264
|
+
#
|
265
|
+
# # @return [RDF::Vocabulary::Term]
|
266
|
+
# attr_reader :asin
|
267
|
+
#
|
268
|
+
# # An ordered list of authors. Normally, this list is seen as a priority list that order authors by importance.
|
269
|
+
# # @return [RDF::Vocabulary::Term]
|
270
|
+
# attr_reader :authorList
|
271
|
+
#
|
272
|
+
# # An chapter number
|
273
|
+
# # @return [RDF::Vocabulary::Term]
|
274
|
+
# attr_reader :chapter
|
275
|
+
#
|
276
|
+
# # Relates a document to another document that cites the first document.
|
277
|
+
# # @return [RDF::Vocabulary::Term]
|
278
|
+
# attr_reader :citedBy
|
279
|
+
#
|
280
|
+
# # Relates a document to another document that is cited by the first document as reference, comment, review, quotation or for another purpose.
|
281
|
+
# # @return [RDF::Vocabulary::Term]
|
282
|
+
# attr_reader :cites
|
283
|
+
#
|
284
|
+
# # @return [RDF::Vocabulary::Term]
|
285
|
+
# attr_reader :coden
|
286
|
+
#
|
287
|
+
# # This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property.
|
288
|
+
# # @return [RDF::Vocabulary::Term]
|
289
|
+
# attr_reader :content
|
290
|
+
#
|
291
|
+
# # An ordered list of contributors. Normally, this list is seen as a priority list that order contributors by importance.
|
292
|
+
# # @return [RDF::Vocabulary::Term]
|
293
|
+
# attr_reader :contributorList
|
294
|
+
#
|
295
|
+
# # A court associated with a legal document; for example, that which issues a decision.
|
296
|
+
# # @return [RDF::Vocabulary::Term]
|
297
|
+
# attr_reader :court
|
298
|
+
#
|
299
|
+
# # The thesis degree.
|
300
|
+
# # @return [RDF::Vocabulary::Term]
|
301
|
+
# attr_reader :degree
|
302
|
+
#
|
303
|
+
# # A Film director.
|
304
|
+
# # @return [RDF::Vocabulary::Term]
|
305
|
+
# attr_reader :director
|
306
|
+
#
|
307
|
+
# # Distributor of a document or a collection of documents.
|
308
|
+
# # @return [RDF::Vocabulary::Term]
|
309
|
+
# attr_reader :distributor
|
310
|
+
#
|
311
|
+
# # @return [RDF::Vocabulary::Term]
|
312
|
+
# attr_reader :doi
|
313
|
+
#
|
314
|
+
# # @return [RDF::Vocabulary::Term]
|
315
|
+
# attr_reader :eanucc13
|
316
|
+
#
|
317
|
+
# # The name defining a special edition of a document. Normally its a literal value composed of a version number and words.
|
318
|
+
# # @return [RDF::Vocabulary::Term]
|
319
|
+
# attr_reader :edition
|
320
|
+
#
|
321
|
+
# # A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication.
|
322
|
+
# # @return [RDF::Vocabulary::Term]
|
323
|
+
# attr_reader :editor
|
324
|
+
#
|
325
|
+
# # An ordered list of editors. Normally, this list is seen as a priority list that order editors by importance.
|
326
|
+
# # @return [RDF::Vocabulary::Term]
|
327
|
+
# attr_reader :editorList
|
328
|
+
#
|
329
|
+
# # @return [RDF::Vocabulary::Term]
|
330
|
+
# attr_reader :eissn
|
331
|
+
#
|
332
|
+
# # @return [RDF::Vocabulary::Term]
|
333
|
+
# attr_reader :gtin14
|
334
|
+
#
|
335
|
+
# # @return [RDF::Vocabulary::Term]
|
336
|
+
# attr_reader :handle
|
337
|
+
#
|
338
|
+
# # @return [RDF::Vocabulary::Term]
|
339
|
+
# attr_reader :identifier
|
340
|
+
#
|
341
|
+
# # An agent that is interviewed by another agent.
|
342
|
+
# # @return [RDF::Vocabulary::Term]
|
343
|
+
# attr_reader :interviewee
|
344
|
+
#
|
345
|
+
# # An agent that interview another agent.
|
346
|
+
# # @return [RDF::Vocabulary::Term]
|
347
|
+
# attr_reader :interviewer
|
348
|
+
#
|
349
|
+
# # @return [RDF::Vocabulary::Term]
|
350
|
+
# attr_reader :isbn
|
351
|
+
#
|
352
|
+
# # @return [RDF::Vocabulary::Term]
|
353
|
+
# attr_reader :isbn10
|
354
|
+
#
|
355
|
+
# # @return [RDF::Vocabulary::Term]
|
356
|
+
# attr_reader :isbn13
|
357
|
+
#
|
358
|
+
# # @return [RDF::Vocabulary::Term]
|
359
|
+
# attr_reader :issn
|
360
|
+
#
|
361
|
+
# # An issue number
|
362
|
+
# # @return [RDF::Vocabulary::Term]
|
363
|
+
# attr_reader :issue
|
364
|
+
#
|
365
|
+
# # An entity responsible for issuing often informally published documents such as press releases, reports, etc.
|
366
|
+
# # @return [RDF::Vocabulary::Term]
|
367
|
+
# attr_reader :issuer
|
368
|
+
#
|
369
|
+
# # @return [RDF::Vocabulary::Term]
|
370
|
+
# attr_reader :lccn
|
371
|
+
#
|
372
|
+
# # A description (often numeric) that locates an item within a containing document or collection.
|
373
|
+
# # @return [RDF::Vocabulary::Term]
|
374
|
+
# attr_reader :locator
|
375
|
+
#
|
376
|
+
# # The number of pages contained in a document
|
377
|
+
# # @return [RDF::Vocabulary::Term]
|
378
|
+
# attr_reader :numPages
|
379
|
+
#
|
380
|
+
# # The number of volumes contained in a collection of documents (usually a series, periodical, etc.).
|
381
|
+
# # @return [RDF::Vocabulary::Term]
|
382
|
+
# attr_reader :numVolumes
|
383
|
+
#
|
384
|
+
# # A generic item or document number. Not to be confused with issue number.
|
385
|
+
# # @return [RDF::Vocabulary::Term]
|
386
|
+
# attr_reader :number
|
387
|
+
#
|
388
|
+
# # @return [RDF::Vocabulary::Term]
|
389
|
+
# attr_reader :oclcnum
|
390
|
+
#
|
391
|
+
# # The organizer of an event; includes conference organizers, but also government agencies or other bodies that are responsible for conducting hearings.
|
392
|
+
# # @return [RDF::Vocabulary::Term]
|
393
|
+
# attr_reader :organizer
|
394
|
+
#
|
395
|
+
# # Owner of a document or a collection of documents.
|
396
|
+
# # @return [RDF::Vocabulary::Term]
|
397
|
+
# attr_reader :owner
|
398
|
+
#
|
399
|
+
# # Ending page number within a continuous page range.
|
400
|
+
# # @return [RDF::Vocabulary::Term]
|
401
|
+
# attr_reader :pageEnd
|
402
|
+
#
|
403
|
+
# # Starting page number within a continuous page range.
|
404
|
+
# # @return [RDF::Vocabulary::Term]
|
405
|
+
# attr_reader :pageStart
|
406
|
+
#
|
407
|
+
# # A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties.
|
408
|
+
# # @return [RDF::Vocabulary::Term]
|
409
|
+
# attr_reader :pages
|
410
|
+
#
|
411
|
+
# # @return [RDF::Vocabulary::Term]
|
412
|
+
# attr_reader :performer
|
413
|
+
#
|
414
|
+
# # @return [RDF::Vocabulary::Term]
|
415
|
+
# attr_reader :pmid
|
416
|
+
#
|
417
|
+
# # The prefix of a name
|
418
|
+
# # @return [RDF::Vocabulary::Term]
|
419
|
+
# attr_reader :prefixName
|
420
|
+
#
|
421
|
+
# # Relates a document to an event; for example, a paper to a conference.
|
422
|
+
# # @return [RDF::Vocabulary::Term]
|
423
|
+
# attr_reader :presentedAt
|
424
|
+
#
|
425
|
+
# # Relates an event to associated documents; for example, conference to a paper.
|
426
|
+
# # @return [RDF::Vocabulary::Term]
|
427
|
+
# attr_reader :presents
|
428
|
+
#
|
429
|
+
# # Producer of a document or a collection of documents.
|
430
|
+
# # @return [RDF::Vocabulary::Term]
|
431
|
+
# attr_reader :producer
|
432
|
+
#
|
433
|
+
# # An agent that receives a communication document.
|
434
|
+
# # @return [RDF::Vocabulary::Term]
|
435
|
+
# attr_reader :recipient
|
436
|
+
#
|
437
|
+
# # The resource in which another resource is reproduced.
|
438
|
+
# # @return [RDF::Vocabulary::Term]
|
439
|
+
# attr_reader :reproducedIn
|
440
|
+
#
|
441
|
+
# # A legal decision that reverses a ruling.
|
442
|
+
# # @return [RDF::Vocabulary::Term]
|
443
|
+
# attr_reader :reversedBy
|
444
|
+
#
|
445
|
+
# # Relates a review document to a reviewed thing (resource, item, etc.).
|
446
|
+
# # @return [RDF::Vocabulary::Term]
|
447
|
+
# attr_reader :reviewOf
|
448
|
+
#
|
449
|
+
# # A section number
|
450
|
+
# # @return [RDF::Vocabulary::Term]
|
451
|
+
# attr_reader :section
|
452
|
+
#
|
453
|
+
# # @return [RDF::Vocabulary::Term]
|
454
|
+
# attr_reader :shortDescription
|
455
|
+
#
|
456
|
+
# # The abbreviation of a title.
|
457
|
+
# # @return [RDF::Vocabulary::Term]
|
458
|
+
# attr_reader :shortTitle
|
459
|
+
#
|
460
|
+
# # @return [RDF::Vocabulary::Term]
|
461
|
+
# attr_reader :sici
|
462
|
+
#
|
463
|
+
# # The publication status of (typically academic) content.
|
464
|
+
# # @return [RDF::Vocabulary::Term]
|
465
|
+
# attr_reader :status
|
466
|
+
#
|
467
|
+
# # A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).
|
468
|
+
# # @return [RDF::Vocabulary::Term]
|
469
|
+
# attr_reader :subsequentLegalDecision
|
470
|
+
#
|
471
|
+
# # The suffix of a name
|
472
|
+
# # @return [RDF::Vocabulary::Term]
|
473
|
+
# attr_reader :suffixName
|
474
|
+
#
|
475
|
+
# # Relates a document to some transcribed original.
|
476
|
+
# # @return [RDF::Vocabulary::Term]
|
477
|
+
# attr_reader :transcriptOf
|
478
|
+
#
|
479
|
+
# # Relates a translated document to the original document.
|
480
|
+
# # @return [RDF::Vocabulary::Term]
|
481
|
+
# attr_reader :translationOf
|
482
|
+
#
|
483
|
+
# # A person who translates written document from one language to another.
|
484
|
+
# # @return [RDF::Vocabulary::Term]
|
485
|
+
# attr_reader :translator
|
486
|
+
#
|
487
|
+
# # @return [RDF::Vocabulary::Term]
|
488
|
+
# attr_reader :upc
|
489
|
+
#
|
490
|
+
# # Universal Resource Identifier of a document
|
491
|
+
# # @return [RDF::Vocabulary::Term]
|
492
|
+
# attr_reader :uri
|
493
|
+
#
|
494
|
+
# # A volume number
|
495
|
+
# # @return [RDF::Vocabulary::Term]
|
496
|
+
# attr_reader :volume
|
497
|
+
#
|
498
|
+
# # @return [RDF::Vocabulary::Term]
|
499
|
+
# attr_reader :bdarcus
|
500
|
+
#
|
501
|
+
# # @return [RDF::Vocabulary::Term]
|
502
|
+
# attr_reader :fgiasson
|
503
|
+
#
|
9
504
|
# end
|
10
|
-
|
505
|
+
BIBO = Class.new(RDF::StrictVocabulary("http://purl.org/ontology/bibo/")) do
|
11
506
|
|
12
507
|
# Ontology definition
|
13
508
|
ontology :"http://purl.org/ontology/bibo/",
|
@@ -19,70 +514,70 @@ module RDF::Vocab
|
|
19
514
|
|
20
515
|
# Class definitions
|
21
516
|
term :AcademicArticle,
|
22
|
-
comment:
|
517
|
+
comment: "A scholarly academic article, typically published in a journal.".freeze,
|
23
518
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
24
519
|
label: "Academic Article".freeze,
|
25
520
|
subClassOf: "bibo:Article".freeze,
|
26
521
|
type: "owl:Class".freeze,
|
27
522
|
"vs:term_status": "stable".freeze
|
28
523
|
term :Article,
|
29
|
-
comment:
|
524
|
+
comment: "A written composition in prose, usually nonfiction, on a specific topic, forming an independent part of a book or other publication, as a newspaper or magazine.".freeze,
|
30
525
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
31
526
|
label: "Article".freeze,
|
32
527
|
subClassOf: "bibo:Document".freeze,
|
33
528
|
type: "owl:Class".freeze,
|
34
529
|
"vs:term_status": "stable".freeze
|
35
530
|
term :AudioDocument,
|
36
|
-
comment:
|
531
|
+
comment: "An audio document; aka record.".freeze,
|
37
532
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
38
533
|
label: "audio document".freeze,
|
39
534
|
subClassOf: "bibo:Document".freeze,
|
40
535
|
type: "owl:Class".freeze,
|
41
536
|
"vs:term_status": "stable".freeze
|
42
537
|
term :AudioVisualDocument,
|
43
|
-
comment:
|
538
|
+
comment: "An audio-visual document; film, video, and so forth.".freeze,
|
44
539
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
45
540
|
label: "audio-visual document".freeze,
|
46
541
|
subClassOf: "bibo:Document".freeze,
|
47
542
|
type: "owl:Class".freeze,
|
48
543
|
"vs:term_status": "stable".freeze
|
49
544
|
term :Bill,
|
50
|
-
comment:
|
545
|
+
comment: "Draft legislation presented for discussion to a legal body.".freeze,
|
51
546
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
52
547
|
label: "Bill".freeze,
|
53
548
|
subClassOf: "bibo:Legislation".freeze,
|
54
549
|
type: "owl:Class".freeze,
|
55
550
|
"vs:term_status": "stable".freeze
|
56
551
|
term :Book,
|
57
|
-
comment:
|
552
|
+
comment: "A written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers.".freeze,
|
58
553
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
59
554
|
label: "Book".freeze,
|
60
555
|
subClassOf: "bibo:Document".freeze,
|
61
556
|
type: "owl:Class".freeze,
|
62
557
|
"vs:term_status": "stable".freeze
|
63
558
|
term :BookSection,
|
64
|
-
comment:
|
559
|
+
comment: "A section of a book.".freeze,
|
65
560
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
66
561
|
label: "Book Section".freeze,
|
67
562
|
subClassOf: "bibo:DocumentPart".freeze,
|
68
563
|
type: "owl:Class".freeze,
|
69
564
|
"vs:term_status": "unstable".freeze
|
70
565
|
term :Brief,
|
71
|
-
comment:
|
566
|
+
comment: "A written argument submitted to a court.".freeze,
|
72
567
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
73
568
|
label: "Brief".freeze,
|
74
569
|
subClassOf: "bibo:LegalCaseDocument".freeze,
|
75
570
|
type: "owl:Class".freeze,
|
76
571
|
"vs:term_status": "unstable".freeze
|
77
572
|
term :Chapter,
|
78
|
-
comment:
|
573
|
+
comment: "A chapter of a book.".freeze,
|
79
574
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
80
575
|
label: "Chapter".freeze,
|
81
576
|
subClassOf: "bibo:BookSection".freeze,
|
82
577
|
type: "owl:Class".freeze,
|
83
578
|
"vs:term_status": "unstable".freeze
|
84
579
|
term :Code,
|
85
|
-
comment:
|
580
|
+
comment: "A collection of statutes.".freeze,
|
86
581
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
87
582
|
label: "Code".freeze,
|
88
583
|
subClassOf: ["bibo:Periodical".freeze, term(
|
@@ -97,7 +592,7 @@ module RDF::Vocab
|
|
97
592
|
type: "owl:Class".freeze,
|
98
593
|
"vs:term_status": "stable".freeze
|
99
594
|
term :CollectedDocument,
|
100
|
-
comment:
|
595
|
+
comment: "A document that simultaneously contains other documents.".freeze,
|
101
596
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
102
597
|
label: "Collected Document".freeze,
|
103
598
|
subClassOf: ["bibo:Document".freeze, term(
|
@@ -112,7 +607,7 @@ module RDF::Vocab
|
|
112
607
|
type: "owl:Class".freeze,
|
113
608
|
"vs:term_status": "stable".freeze
|
114
609
|
term :Collection,
|
115
|
-
comment:
|
610
|
+
comment: "A collection of Documents or Collections".freeze,
|
116
611
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
117
612
|
label: "Collection".freeze,
|
118
613
|
subClassOf: term(
|
@@ -126,14 +621,14 @@ module RDF::Vocab
|
|
126
621
|
type: "owl:Class".freeze,
|
127
622
|
"vs:term_status": "stable".freeze
|
128
623
|
term :Conference,
|
129
|
-
comment:
|
624
|
+
comment: "A meeting for consultation or discussion.".freeze,
|
130
625
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
131
626
|
label: "Conference".freeze,
|
132
627
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
133
628
|
type: "owl:Class".freeze,
|
134
629
|
"vs:term_status": "stable".freeze
|
135
630
|
term :CourtReporter,
|
136
|
-
comment:
|
631
|
+
comment: "A collection of legal cases.".freeze,
|
137
632
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
138
633
|
label: "Court Reporter".freeze,
|
139
634
|
subClassOf: ["bibo:Periodical".freeze, term(
|
@@ -148,14 +643,14 @@ module RDF::Vocab
|
|
148
643
|
type: "owl:Class".freeze,
|
149
644
|
"vs:term_status": "stable".freeze
|
150
645
|
term :Document,
|
151
|
-
comment:
|
646
|
+
comment: "A document (noun) is a bounded physical representation of body of information designed with the capacity (and usually intent) to communicate. A document may manifest symbolic, diagrammatic or sensory-representational information.".freeze,
|
152
647
|
equivalentClass: "foaf:Document".freeze,
|
153
648
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
154
649
|
label: "Document".freeze,
|
155
650
|
type: "owl:Class".freeze,
|
156
651
|
"vs:term_status": "stable".freeze
|
157
652
|
term :DocumentPart,
|
158
|
-
comment:
|
653
|
+
comment: "a distinct part of a larger document or collected document.".freeze,
|
159
654
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
160
655
|
label: "document part".freeze,
|
161
656
|
subClassOf: ["bibo:Document".freeze, term(
|
@@ -166,20 +661,20 @@ module RDF::Vocab
|
|
166
661
|
type: "owl:Class".freeze,
|
167
662
|
"vs:term_status": "unstable".freeze
|
168
663
|
term :DocumentStatus,
|
169
|
-
comment:
|
664
|
+
comment: "The status of the publication of a document.".freeze,
|
170
665
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
171
666
|
label: "Document Status".freeze,
|
172
667
|
type: "owl:Class".freeze,
|
173
668
|
"vs:term_status": "stable".freeze
|
174
669
|
term :EditedBook,
|
175
|
-
comment:
|
670
|
+
comment: "An edited book.".freeze,
|
176
671
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
177
672
|
label: "Edited Book".freeze,
|
178
673
|
subClassOf: "bibo:CollectedDocument".freeze,
|
179
674
|
type: "owl:Class".freeze,
|
180
675
|
"vs:term_status": "stable".freeze
|
181
676
|
term :Email,
|
182
|
-
comment:
|
677
|
+
comment: "A written communication addressed to a person or organization and transmitted electronically.".freeze,
|
183
678
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
184
679
|
label: "EMail".freeze,
|
185
680
|
subClassOf: "bibo:PersonalCommunicationDocument".freeze,
|
@@ -188,28 +683,28 @@ module RDF::Vocab
|
|
188
683
|
term :Event,
|
189
684
|
type: "owl:Class".freeze
|
190
685
|
term :Excerpt,
|
191
|
-
comment:
|
686
|
+
comment: "A passage selected from a larger work.".freeze,
|
192
687
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
193
688
|
label: "Excerpt".freeze,
|
194
689
|
subClassOf: "bibo:DocumentPart".freeze,
|
195
690
|
type: "owl:Class".freeze,
|
196
691
|
"vs:term_status": "stable".freeze
|
197
692
|
term :Film,
|
198
|
-
comment:
|
693
|
+
comment: "aka movie.".freeze,
|
199
694
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
200
695
|
label: "Film".freeze,
|
201
696
|
subClassOf: "bibo:AudioVisualDocument".freeze,
|
202
697
|
type: "owl:Class".freeze,
|
203
698
|
"vs:term_status": "stable".freeze
|
204
699
|
term :Hearing,
|
205
|
-
comment:
|
700
|
+
comment: "An instance or a session in which testimony and arguments are presented, esp. before an official, as a judge in a lawsuit.".freeze,
|
206
701
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
207
702
|
label: "Hearing".freeze,
|
208
703
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
209
704
|
type: "owl:Class".freeze,
|
210
705
|
"vs:term_status": "stable".freeze
|
211
706
|
term :Image,
|
212
|
-
comment:
|
707
|
+
comment: "A document that presents visual or diagrammatic information.".freeze,
|
213
708
|
equivalentClass: "foaf:Image".freeze,
|
214
709
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
215
710
|
label: "Image".freeze,
|
@@ -217,14 +712,14 @@ module RDF::Vocab
|
|
217
712
|
type: "owl:Class".freeze,
|
218
713
|
"vs:term_status": "stable".freeze
|
219
714
|
term :Interview,
|
220
|
-
comment:
|
715
|
+
comment: "A formalized discussion between two or more people.".freeze,
|
221
716
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
222
717
|
label: "Interview".freeze,
|
223
718
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
224
719
|
type: "owl:Class".freeze,
|
225
720
|
"vs:term_status": "stable".freeze
|
226
721
|
term :Issue,
|
227
|
-
comment:
|
722
|
+
comment: "something that is printed or published and distributed, esp. a given number of a periodical".freeze,
|
228
723
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
229
724
|
label: "Issue".freeze,
|
230
725
|
subClassOf: ["bibo:CollectedDocument".freeze, term(
|
@@ -239,7 +734,7 @@ module RDF::Vocab
|
|
239
734
|
type: "owl:Class".freeze,
|
240
735
|
"vs:term_status": "stable".freeze
|
241
736
|
term :Journal,
|
242
|
-
comment:
|
737
|
+
comment: "A periodical of scholarly journal Articles.".freeze,
|
243
738
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
244
739
|
label: "Journal".freeze,
|
245
740
|
subClassOf: ["bibo:Periodical".freeze, term(
|
@@ -254,42 +749,42 @@ module RDF::Vocab
|
|
254
749
|
type: "owl:Class".freeze,
|
255
750
|
"vs:term_status": "stable".freeze
|
256
751
|
term :LegalCaseDocument,
|
257
|
-
comment:
|
752
|
+
comment: "A document accompanying a legal case.".freeze,
|
258
753
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
259
754
|
label: "Legal Case Document".freeze,
|
260
755
|
subClassOf: "bibo:LegalDocument".freeze,
|
261
756
|
type: "owl:Class".freeze,
|
262
757
|
"vs:term_status": "unstable".freeze
|
263
758
|
term :LegalDecision,
|
264
|
-
comment:
|
759
|
+
comment: "A document containing an authoritative determination (as a decree or judgment) made after consideration of facts or law.".freeze,
|
265
760
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
266
761
|
label: "Decision".freeze,
|
267
762
|
subClassOf: "bibo:LegalCaseDocument".freeze,
|
268
763
|
type: "owl:Class".freeze,
|
269
764
|
"vs:term_status": "unstable".freeze
|
270
765
|
term :LegalDocument,
|
271
|
-
comment:
|
766
|
+
comment: "A legal document; for example, a court decision, a brief, and so forth.".freeze,
|
272
767
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
273
768
|
label: "Legal Document".freeze,
|
274
769
|
subClassOf: "bibo:Document".freeze,
|
275
770
|
type: "owl:Class".freeze,
|
276
771
|
"vs:term_status": "stable".freeze
|
277
772
|
term :Legislation,
|
278
|
-
comment:
|
773
|
+
comment: "A legal document proposing or enacting a law or a group of laws.".freeze,
|
279
774
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
280
775
|
label: "Legislation".freeze,
|
281
776
|
subClassOf: "bibo:LegalDocument".freeze,
|
282
777
|
type: "owl:Class".freeze,
|
283
778
|
"vs:term_status": "unstable".freeze
|
284
779
|
term :Letter,
|
285
|
-
comment:
|
780
|
+
comment: "A written or printed communication addressed to a person or organization and usually transmitted by mail.".freeze,
|
286
781
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
287
782
|
label: "Letter".freeze,
|
288
783
|
subClassOf: "bibo:PersonalCommunicationDocument".freeze,
|
289
784
|
type: "owl:Class".freeze,
|
290
785
|
"vs:term_status": "stable".freeze
|
291
786
|
term :Magazine,
|
292
|
-
comment:
|
787
|
+
comment: "A periodical of magazine Articles. A magazine is a publication that is issued periodically, usually bound in a paper cover, and typically contains essays, stories, poems, etc., by many writers, and often photographs and drawings, frequently specializing in a particular subject or area, as hobbies, news, or sports.".freeze,
|
293
788
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
294
789
|
label: "Magazine".freeze,
|
295
790
|
subClassOf: ["bibo:Periodical".freeze, term(
|
@@ -304,28 +799,28 @@ module RDF::Vocab
|
|
304
799
|
type: "owl:Class".freeze,
|
305
800
|
"vs:term_status": "stable".freeze
|
306
801
|
term :Manual,
|
307
|
-
comment:
|
802
|
+
comment: "A small reference book, especially one giving instructions.".freeze,
|
308
803
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
309
804
|
label: "Manual".freeze,
|
310
805
|
subClassOf: "bibo:Document".freeze,
|
311
806
|
type: "owl:Class".freeze,
|
312
807
|
"vs:term_status": "unstable".freeze
|
313
808
|
term :Manuscript,
|
314
|
-
comment:
|
809
|
+
comment: "An unpublished Document, which may also be submitted to a publisher for publication.".freeze,
|
315
810
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
316
811
|
label: "Manuscript".freeze,
|
317
812
|
subClassOf: "bibo:Document".freeze,
|
318
813
|
type: "owl:Class".freeze,
|
319
814
|
"vs:term_status": "stable".freeze
|
320
815
|
term :Map,
|
321
|
-
comment:
|
816
|
+
comment: "A graphical depiction of geographic features.".freeze,
|
322
817
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
323
818
|
label: "Map".freeze,
|
324
819
|
subClassOf: "bibo:Image".freeze,
|
325
820
|
type: "owl:Class".freeze,
|
326
821
|
"vs:term_status": "unstable".freeze
|
327
822
|
term :MultiVolumeBook,
|
328
|
-
comment:
|
823
|
+
comment: "A loose, thematic, collection of Documents, often Books.".freeze,
|
329
824
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
330
825
|
label: "Multivolume Book".freeze,
|
331
826
|
subClassOf: ["bibo:Collection".freeze, term(
|
@@ -336,7 +831,7 @@ module RDF::Vocab
|
|
336
831
|
type: "owl:Class".freeze,
|
337
832
|
"vs:term_status": "stable".freeze
|
338
833
|
term :Newspaper,
|
339
|
-
comment:
|
834
|
+
comment: "A periodical of documents, usually issued daily or weekly, containing current news, editorials, feature articles, and usually advertising.".freeze,
|
340
835
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
341
836
|
label: "Newspaper".freeze,
|
342
837
|
subClassOf: ["bibo:Periodical".freeze, term(
|
@@ -351,28 +846,28 @@ module RDF::Vocab
|
|
351
846
|
type: "owl:Class".freeze,
|
352
847
|
"vs:term_status": "stable".freeze
|
353
848
|
term :Note,
|
354
|
-
comment:
|
849
|
+
comment: "Notes or annotations about a resource.".freeze,
|
355
850
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
356
851
|
label: "Note".freeze,
|
357
852
|
subClassOf: "bibo:Document".freeze,
|
358
853
|
type: "owl:Class".freeze,
|
359
854
|
"vs:term_status": "stable".freeze
|
360
855
|
term :Patent,
|
361
|
-
comment:
|
856
|
+
comment: "A document describing the exclusive right granted by a government to an inventor to manufacture, use, or sell an invention for a certain number of years.".freeze,
|
362
857
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
363
858
|
label: "Patent".freeze,
|
364
859
|
subClassOf: "bibo:Document".freeze,
|
365
860
|
type: "owl:Class".freeze,
|
366
861
|
"vs:term_status": "stable".freeze
|
367
862
|
term :Performance,
|
368
|
-
comment:
|
863
|
+
comment: "A public performance.".freeze,
|
369
864
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
370
865
|
label: "Performance".freeze,
|
371
866
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
372
867
|
type: "owl:Class".freeze,
|
373
868
|
"vs:term_status": "unstable".freeze
|
374
869
|
term :Periodical,
|
375
|
-
comment:
|
870
|
+
comment: "A group of related documents issued at regular intervals.".freeze,
|
376
871
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
377
872
|
label: "Periodical".freeze,
|
378
873
|
subClassOf: ["bibo:Collection".freeze, term(
|
@@ -387,49 +882,49 @@ module RDF::Vocab
|
|
387
882
|
type: "owl:Class".freeze,
|
388
883
|
"vs:term_status": "stable".freeze
|
389
884
|
term :PersonalCommunication,
|
390
|
-
comment:
|
885
|
+
comment: "A communication between an agent and one or more specific recipients.".freeze,
|
391
886
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
392
887
|
label: "Personal Communication".freeze,
|
393
888
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
394
889
|
type: "owl:Class".freeze,
|
395
890
|
"vs:term_status": "stable".freeze
|
396
891
|
term :PersonalCommunicationDocument,
|
397
|
-
comment:
|
892
|
+
comment: "A personal communication manifested in some document.".freeze,
|
398
893
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
399
894
|
label: "Personal Communication Document".freeze,
|
400
895
|
subClassOf: "bibo:Document".freeze,
|
401
896
|
type: "owl:Class".freeze,
|
402
897
|
"vs:term_status": "stable".freeze
|
403
898
|
term :Proceedings,
|
404
|
-
comment:
|
899
|
+
comment: "A compilation of documents published from an event, such as a conference.".freeze,
|
405
900
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
406
901
|
label: "Proceedings".freeze,
|
407
902
|
subClassOf: "bibo:Book".freeze,
|
408
903
|
type: "owl:Class".freeze,
|
409
904
|
"vs:term_status": "unstable".freeze
|
410
905
|
term :Quote,
|
411
|
-
comment:
|
906
|
+
comment: "An excerpted collection of words.".freeze,
|
412
907
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
413
908
|
label: "Quote".freeze,
|
414
909
|
subClassOf: "bibo:Excerpt".freeze,
|
415
910
|
type: "owl:Class".freeze,
|
416
911
|
"vs:term_status": "stable".freeze
|
417
912
|
term :ReferenceSource,
|
418
|
-
comment:
|
913
|
+
comment: "A document that presents authoritative reference information, such as a dictionary or encylopedia .".freeze,
|
419
914
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
420
915
|
label: "Reference Source".freeze,
|
421
916
|
subClassOf: "bibo:Document".freeze,
|
422
917
|
type: "owl:Class".freeze,
|
423
918
|
"vs:term_status": "unstable".freeze
|
424
919
|
term :Report,
|
425
|
-
comment:
|
920
|
+
comment: "A document describing an account or statement describing in detail an event, situation, or the like, usually as the result of observation, inquiry, etc..".freeze,
|
426
921
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
427
922
|
label: "Report".freeze,
|
428
923
|
subClassOf: "bibo:Document".freeze,
|
429
924
|
type: "owl:Class".freeze,
|
430
925
|
"vs:term_status": "stable".freeze
|
431
926
|
term :Series,
|
432
|
-
comment:
|
927
|
+
comment: "A loose, thematic, collection of Documents, often Books.".freeze,
|
433
928
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
434
929
|
label: "Series".freeze,
|
435
930
|
subClassOf: ["bibo:Collection".freeze, term(
|
@@ -440,14 +935,14 @@ module RDF::Vocab
|
|
440
935
|
type: "owl:Class".freeze,
|
441
936
|
"vs:term_status": "stable".freeze
|
442
937
|
term :Slide,
|
443
|
-
comment:
|
938
|
+
comment: "A slide in a slideshow".freeze,
|
444
939
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
445
940
|
label: "Slide".freeze,
|
446
941
|
subClassOf: "bibo:DocumentPart".freeze,
|
447
942
|
type: "owl:Class".freeze,
|
448
943
|
"vs:term_status": "unstable".freeze
|
449
944
|
term :Slideshow,
|
450
|
-
comment:
|
945
|
+
comment: "A presentation of a series of slides, usually presented in front of an audience with written text and images.".freeze,
|
451
946
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
452
947
|
label: "Slideshow".freeze,
|
453
948
|
subClassOf: ["bibo:Document".freeze, term(
|
@@ -458,48 +953,48 @@ module RDF::Vocab
|
|
458
953
|
type: "owl:Class".freeze,
|
459
954
|
"vs:term_status": "stable".freeze
|
460
955
|
term :Specification,
|
461
|
-
comment:
|
956
|
+
comment: "A document describing a specification.".freeze,
|
462
957
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
463
958
|
label: "Specification".freeze,
|
464
959
|
subClassOf: "bibo:Document".freeze,
|
465
960
|
type: "owl:Class".freeze,
|
466
961
|
"vs:term_status": "testing".freeze
|
467
962
|
term :Standard,
|
468
|
-
comment:
|
963
|
+
comment: "A document describing a standard: a specification organized through a standards body.".freeze,
|
469
964
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
470
965
|
label: "Standard".freeze,
|
471
966
|
subClassOf: "bibo:Specification".freeze,
|
472
967
|
type: "owl:Class".freeze,
|
473
968
|
"vs:term_status": "stable".freeze
|
474
969
|
term :Statute,
|
475
|
-
comment:
|
970
|
+
comment: "A bill enacted into law.".freeze,
|
476
971
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
477
972
|
label: "Statute".freeze,
|
478
973
|
subClassOf: "bibo:Legislation".freeze,
|
479
974
|
type: "owl:Class".freeze,
|
480
975
|
"vs:term_status": "stable".freeze
|
481
976
|
term :Thesis,
|
482
|
-
comment:
|
977
|
+
comment: "A document created to summarize research findings associated with the completion of an academic degree.".freeze,
|
483
978
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
484
979
|
label: "Thesis".freeze,
|
485
980
|
subClassOf: "bibo:Document".freeze,
|
486
981
|
type: "owl:Class".freeze,
|
487
982
|
"vs:term_status": "stable".freeze
|
488
983
|
term :ThesisDegree,
|
489
|
-
comment:
|
984
|
+
comment: "The academic degree of a Thesis".freeze,
|
490
985
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
491
986
|
label: "Thesis degree".freeze,
|
492
987
|
type: "owl:Class".freeze,
|
493
988
|
"vs:term_status": "stable".freeze
|
494
989
|
term :Webpage,
|
495
|
-
comment:
|
990
|
+
comment: "A web page is an online document available (at least initially) on the world wide web. A web page is written first and foremost to appear on the web, as distinct from other online resources such as books, manuscripts or audio documents which use the web primarily as a distribution mechanism alongside other more traditional methods such as print.".freeze,
|
496
991
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
497
992
|
label: "Webpage".freeze,
|
498
993
|
subClassOf: "bibo:Document".freeze,
|
499
994
|
type: "owl:Class".freeze,
|
500
995
|
"vs:term_status": "unstable".freeze
|
501
996
|
term :Website,
|
502
|
-
comment:
|
997
|
+
comment: "A group of Webpages accessible on the Web.".freeze,
|
503
998
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
504
999
|
label: "Website".freeze,
|
505
1000
|
subClassOf: ["bibo:Collection".freeze, term(
|
@@ -514,7 +1009,7 @@ module RDF::Vocab
|
|
514
1009
|
type: "owl:Class".freeze,
|
515
1010
|
"vs:term_status": "unstable".freeze
|
516
1011
|
term :Workshop,
|
517
|
-
comment:
|
1012
|
+
comment: "A seminar, discussion group, or the like, that emphasizes zxchange of ideas and the demonstration and application of techniques, skills, etc.".freeze,
|
518
1013
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
519
1014
|
label: "Workshop".freeze,
|
520
1015
|
subClassOf: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
@@ -523,7 +1018,7 @@ module RDF::Vocab
|
|
523
1018
|
|
524
1019
|
# Property definitions
|
525
1020
|
property :abstract,
|
526
|
-
comment:
|
1021
|
+
comment: "A summary of the resource.".freeze,
|
527
1022
|
domain: "rdfs:Resource".freeze,
|
528
1023
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
529
1024
|
label: "abstract".freeze,
|
@@ -531,14 +1026,14 @@ module RDF::Vocab
|
|
531
1026
|
type: "owl:DatatypeProperty".freeze,
|
532
1027
|
"vs:term_status": "stable".freeze
|
533
1028
|
property :affirmedBy,
|
534
|
-
comment:
|
1029
|
+
comment: "A legal decision that affirms a ruling.".freeze,
|
535
1030
|
domain: "bibo:LegalDecision".freeze,
|
536
1031
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
537
1032
|
range: "bibo:LegalDecision".freeze,
|
538
1033
|
subPropertyOf: "bibo:subsequentLegalDecision".freeze,
|
539
1034
|
type: "owl:ObjectProperty".freeze
|
540
1035
|
property :annotates,
|
541
|
-
comment:
|
1036
|
+
comment: "Critical or explanatory note for a Document.".freeze,
|
542
1037
|
domain: "bibo:Note".freeze,
|
543
1038
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
544
1039
|
label: "annotates".freeze,
|
@@ -547,7 +1042,7 @@ module RDF::Vocab
|
|
547
1042
|
type: "owl:ObjectProperty".freeze,
|
548
1043
|
"vs:term_status": "stable".freeze
|
549
1044
|
property :argued,
|
550
|
-
comment:
|
1045
|
+
comment: "The date on which a legal case is argued before a court. Date is of format xsd:date".freeze,
|
551
1046
|
domain: "bibo:LegalDocument".freeze,
|
552
1047
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
553
1048
|
label: "date argued".freeze,
|
@@ -563,7 +1058,7 @@ module RDF::Vocab
|
|
563
1058
|
subPropertyOf: "bibo:identifier".freeze,
|
564
1059
|
type: "owl:DatatypeProperty".freeze
|
565
1060
|
property :authorList,
|
566
|
-
comment:
|
1061
|
+
comment: "An ordered list of authors. Normally, this list is seen as a priority list that order authors by importance.".freeze,
|
567
1062
|
domain: "bibo:Document".freeze,
|
568
1063
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
569
1064
|
label: "list of authors".freeze,
|
@@ -575,7 +1070,7 @@ module RDF::Vocab
|
|
575
1070
|
type: "owl:ObjectProperty".freeze,
|
576
1071
|
"vs:term_status": "stable".freeze
|
577
1072
|
property :chapter,
|
578
|
-
comment:
|
1073
|
+
comment: "An chapter number".freeze,
|
579
1074
|
domain: "bibo:BookSection".freeze,
|
580
1075
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
581
1076
|
label: "chapter".freeze,
|
@@ -584,8 +1079,7 @@ module RDF::Vocab
|
|
584
1079
|
type: "owl:DatatypeProperty".freeze,
|
585
1080
|
"vs:term_status": "unstable".freeze
|
586
1081
|
property :citedBy,
|
587
|
-
comment:
|
588
|
-
first document.).freeze,
|
1082
|
+
comment: "Relates a document to another document that cites the\nfirst document.".freeze,
|
589
1083
|
domain: "bibo:Document".freeze,
|
590
1084
|
inverseOf: "bibo:cites".freeze,
|
591
1085
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
@@ -594,9 +1088,7 @@ first document.).freeze,
|
|
594
1088
|
type: "owl:ObjectProperty".freeze,
|
595
1089
|
"vs:term_status": "unstable".freeze
|
596
1090
|
property :cites,
|
597
|
-
comment:
|
598
|
-
by the first document as reference, comment, review, quotation or for
|
599
|
-
another purpose.).freeze,
|
1091
|
+
comment: "Relates a document to another document that is cited\nby the first document as reference, comment, review, quotation or for\nanother purpose.".freeze,
|
600
1092
|
domain: "bibo:Document".freeze,
|
601
1093
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
602
1094
|
label: "cites".freeze,
|
@@ -613,7 +1105,7 @@ another purpose.).freeze,
|
|
613
1105
|
subPropertyOf: "bibo:identifier".freeze,
|
614
1106
|
type: "owl:DatatypeProperty".freeze
|
615
1107
|
property :content,
|
616
|
-
comment:
|
1108
|
+
comment: "This property is for a plain-text rendering of the content of a Document. While the plain-text content of an entire document could be described by this property.".freeze,
|
617
1109
|
domain: "bibo:Document".freeze,
|
618
1110
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
619
1111
|
label: "content".freeze,
|
@@ -623,7 +1115,7 @@ another purpose.).freeze,
|
|
623
1115
|
type: "owl:DatatypeProperty".freeze,
|
624
1116
|
"vs:term_status": "unstable".freeze
|
625
1117
|
property :contributorList,
|
626
|
-
comment:
|
1118
|
+
comment: "An ordered list of contributors. Normally, this list is seen as a priority list that order contributors by importance.".freeze,
|
627
1119
|
domain: "bibo:Document".freeze,
|
628
1120
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
629
1121
|
label: "list of contributors".freeze,
|
@@ -634,7 +1126,7 @@ another purpose.).freeze,
|
|
634
1126
|
type: "owl:ObjectProperty".freeze,
|
635
1127
|
"vs:term_status": "stable".freeze
|
636
1128
|
property :court,
|
637
|
-
comment:
|
1129
|
+
comment: "A court associated with a legal document; for example, that which issues a decision.".freeze,
|
638
1130
|
domain: "bibo:LegalDocument".freeze,
|
639
1131
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
640
1132
|
label: "court".freeze,
|
@@ -642,16 +1134,16 @@ another purpose.).freeze,
|
|
642
1134
|
type: "owl:ObjectProperty".freeze,
|
643
1135
|
"vs:term_status": "unstable".freeze
|
644
1136
|
property :degree,
|
645
|
-
comment:
|
1137
|
+
comment: "The thesis degree.".freeze,
|
646
1138
|
domain: "bibo:Thesis".freeze,
|
647
|
-
editorialNote:
|
1139
|
+
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.".freeze,
|
648
1140
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
649
1141
|
label: "degree".freeze,
|
650
1142
|
range: "bibo:ThesisDegree".freeze,
|
651
1143
|
type: "owl:ObjectProperty".freeze,
|
652
1144
|
"vs:term_status": "unstable".freeze
|
653
1145
|
property :director,
|
654
|
-
comment:
|
1146
|
+
comment: "A Film director.".freeze,
|
655
1147
|
domain: "bibo:AudioVisualDocument".freeze,
|
656
1148
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
657
1149
|
label: "director".freeze,
|
@@ -660,7 +1152,7 @@ another purpose.).freeze,
|
|
660
1152
|
type: "owl:ObjectProperty".freeze,
|
661
1153
|
"vs:term_status": "stable".freeze
|
662
1154
|
property :distributor,
|
663
|
-
comment:
|
1155
|
+
comment: "Distributor of a document or a collection of documents.".freeze,
|
664
1156
|
domain: term(
|
665
1157
|
type: "owl:Class".freeze,
|
666
1158
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -687,7 +1179,7 @@ another purpose.).freeze,
|
|
687
1179
|
subPropertyOf: "bibo:identifier".freeze,
|
688
1180
|
type: "owl:DatatypeProperty".freeze
|
689
1181
|
property :edition,
|
690
|
-
comment:
|
1182
|
+
comment: "The name defining a special edition of a document. Normally its a literal value composed of a version number and words.".freeze,
|
691
1183
|
domain: "bibo:Document".freeze,
|
692
1184
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
693
1185
|
label: "edition".freeze,
|
@@ -695,7 +1187,7 @@ another purpose.).freeze,
|
|
695
1187
|
type: "owl:DatatypeProperty".freeze,
|
696
1188
|
"vs:term_status": "stable".freeze
|
697
1189
|
property :editor,
|
698
|
-
comment:
|
1190
|
+
comment: "A person having managerial and sometimes policy-making responsibility for the editorial part of a publishing firm or of a newspaper, magazine, or other publication.".freeze,
|
699
1191
|
domain: term(
|
700
1192
|
type: "owl:Class".freeze,
|
701
1193
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -707,7 +1199,7 @@ another purpose.).freeze,
|
|
707
1199
|
type: "owl:ObjectProperty".freeze,
|
708
1200
|
"vs:term_status": "stable".freeze
|
709
1201
|
property :editorList,
|
710
|
-
comment:
|
1202
|
+
comment: "An ordered list of editors. Normally, this list is seen as a priority list that order editors by importance.".freeze,
|
711
1203
|
domain: "bibo:Document".freeze,
|
712
1204
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
713
1205
|
label: "list of editors".freeze,
|
@@ -747,7 +1239,7 @@ another purpose.).freeze,
|
|
747
1239
|
range: "rdfs:Literal".freeze,
|
748
1240
|
type: "owl:DatatypeProperty".freeze
|
749
1241
|
property :interviewee,
|
750
|
-
comment:
|
1242
|
+
comment: "An agent that is interviewed by another agent.".freeze,
|
751
1243
|
domain: "foaf:Agent".freeze,
|
752
1244
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
753
1245
|
label: "interviewee".freeze,
|
@@ -756,7 +1248,7 @@ another purpose.).freeze,
|
|
756
1248
|
type: "owl:ObjectProperty".freeze,
|
757
1249
|
"vs:term_status": "stable".freeze
|
758
1250
|
property :interviewer,
|
759
|
-
comment:
|
1251
|
+
comment: "An agent that interview another agent.".freeze,
|
760
1252
|
domain: "foaf:Agent".freeze,
|
761
1253
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
762
1254
|
label: "interviewer".freeze,
|
@@ -789,7 +1281,7 @@ another purpose.).freeze,
|
|
789
1281
|
subPropertyOf: "bibo:identifier".freeze,
|
790
1282
|
type: "owl:DatatypeProperty".freeze
|
791
1283
|
property :issue,
|
792
|
-
comment:
|
1284
|
+
comment: "An issue number".freeze,
|
793
1285
|
domain: "bibo:Issue".freeze,
|
794
1286
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
795
1287
|
label: "issue".freeze,
|
@@ -798,7 +1290,7 @@ another purpose.).freeze,
|
|
798
1290
|
type: "owl:DatatypeProperty".freeze,
|
799
1291
|
"vs:term_status": "stable".freeze
|
800
1292
|
property :issuer,
|
801
|
-
comment:
|
1293
|
+
comment: "An entity responsible for issuing often informally published documents such as press releases, reports, etc.".freeze,
|
802
1294
|
domain: term(
|
803
1295
|
type: "owl:Class".freeze,
|
804
1296
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -818,7 +1310,7 @@ another purpose.).freeze,
|
|
818
1310
|
subPropertyOf: "bibo:identifier".freeze,
|
819
1311
|
type: "owl:DatatypeProperty".freeze
|
820
1312
|
property :locator,
|
821
|
-
comment:
|
1313
|
+
comment: "A description (often numeric) that locates an item within a containing document or collection.".freeze,
|
822
1314
|
domain: "bibo:Document".freeze,
|
823
1315
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
824
1316
|
label: "locator".freeze,
|
@@ -826,7 +1318,7 @@ another purpose.).freeze,
|
|
826
1318
|
type: "owl:DatatypeProperty".freeze,
|
827
1319
|
"vs:term_status": "stable".freeze
|
828
1320
|
property :numPages,
|
829
|
-
comment:
|
1321
|
+
comment: "The number of pages contained in a document".freeze,
|
830
1322
|
domain: "bibo:Document".freeze,
|
831
1323
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
832
1324
|
label: "number of pages".freeze,
|
@@ -834,7 +1326,7 @@ another purpose.).freeze,
|
|
834
1326
|
type: "owl:DatatypeProperty".freeze,
|
835
1327
|
"vs:term_status": "stable".freeze
|
836
1328
|
property :numVolumes,
|
837
|
-
comment:
|
1329
|
+
comment: "The number of volumes contained in a collection of documents (usually a series, periodical, etc.).".freeze,
|
838
1330
|
domain: "bibo:Collection".freeze,
|
839
1331
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
840
1332
|
label: "number of volumes".freeze,
|
@@ -842,7 +1334,7 @@ another purpose.).freeze,
|
|
842
1334
|
type: "owl:DatatypeProperty".freeze,
|
843
1335
|
"vs:term_status": "stable".freeze
|
844
1336
|
property :number,
|
845
|
-
comment:
|
1337
|
+
comment: "A generic item or document number. Not to be confused with issue number.".freeze,
|
846
1338
|
domain: "bibo:Document".freeze,
|
847
1339
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
848
1340
|
label: "number".freeze,
|
@@ -858,7 +1350,7 @@ another purpose.).freeze,
|
|
858
1350
|
subPropertyOf: "bibo:identifier".freeze,
|
859
1351
|
type: "owl:DatatypeProperty".freeze
|
860
1352
|
property :organizer,
|
861
|
-
comment:
|
1353
|
+
comment: "The organizer of an event; includes conference organizers, but also government agencies or other bodies that are responsible for conducting hearings.".freeze,
|
862
1354
|
domain: "http://purl.org/NET/c4dm/event.owl#Event".freeze,
|
863
1355
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
864
1356
|
label: "organizer".freeze,
|
@@ -866,7 +1358,7 @@ another purpose.).freeze,
|
|
866
1358
|
type: "owl:ObjectProperty".freeze,
|
867
1359
|
"vs:term_status": "unstable".freeze
|
868
1360
|
property :owner,
|
869
|
-
comment:
|
1361
|
+
comment: "Owner of a document or a collection of documents.".freeze,
|
870
1362
|
domain: term(
|
871
1363
|
type: "owl:Class".freeze,
|
872
1364
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -877,7 +1369,7 @@ another purpose.).freeze,
|
|
877
1369
|
type: "owl:ObjectProperty".freeze,
|
878
1370
|
"vs:term_status": "unstable".freeze
|
879
1371
|
property :pageEnd,
|
880
|
-
comment:
|
1372
|
+
comment: "Ending page number within a continuous page range.".freeze,
|
881
1373
|
domain: "bibo:Document".freeze,
|
882
1374
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
883
1375
|
label: "page end".freeze,
|
@@ -886,7 +1378,7 @@ another purpose.).freeze,
|
|
886
1378
|
type: "owl:DatatypeProperty".freeze,
|
887
1379
|
"vs:term_status": "stable".freeze
|
888
1380
|
property :pageStart,
|
889
|
-
comment:
|
1381
|
+
comment: "Starting page number within a continuous page range.".freeze,
|
890
1382
|
domain: "bibo:Document".freeze,
|
891
1383
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
892
1384
|
label: "page start".freeze,
|
@@ -895,7 +1387,7 @@ another purpose.).freeze,
|
|
895
1387
|
type: "owl:DatatypeProperty".freeze,
|
896
1388
|
"vs:term_status": "stable".freeze
|
897
1389
|
property :pages,
|
898
|
-
comment:
|
1390
|
+
comment: "A string of non-contiguous page spans that locate a Document within a Collection. Example: 23-25, 34, 54-56. For continuous page ranges, use the pageStart and pageEnd properties.".freeze,
|
899
1391
|
domain: "bibo:Document".freeze,
|
900
1392
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
901
1393
|
label: "pages".freeze,
|
@@ -920,7 +1412,7 @@ another purpose.).freeze,
|
|
920
1412
|
subPropertyOf: "bibo:identifier".freeze,
|
921
1413
|
type: "owl:DatatypeProperty".freeze
|
922
1414
|
property :prefixName,
|
923
|
-
comment:
|
1415
|
+
comment: "The prefix of a name".freeze,
|
924
1416
|
domain: "foaf:Agent".freeze,
|
925
1417
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
926
1418
|
label: "prefix name".freeze,
|
@@ -928,7 +1420,7 @@ another purpose.).freeze,
|
|
928
1420
|
type: "owl:DatatypeProperty".freeze,
|
929
1421
|
"vs:term_status": "stable".freeze
|
930
1422
|
property :presentedAt,
|
931
|
-
comment:
|
1423
|
+
comment: "Relates a document to an event; for example, a paper to a conference.".freeze,
|
932
1424
|
domain: "bibo:Document".freeze,
|
933
1425
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
934
1426
|
label: "presented at".freeze,
|
@@ -937,7 +1429,7 @@ another purpose.).freeze,
|
|
937
1429
|
type: "owl:ObjectProperty".freeze,
|
938
1430
|
"vs:term_status": "unstable".freeze
|
939
1431
|
property :presents,
|
940
|
-
comment:
|
1432
|
+
comment: "Relates an event to associated documents; for example, conference to a paper.".freeze,
|
941
1433
|
domain: "bibo:Event".freeze,
|
942
1434
|
inverseOf: "bibo:presentedAt".freeze,
|
943
1435
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
@@ -947,7 +1439,7 @@ another purpose.).freeze,
|
|
947
1439
|
type: "owl:ObjectProperty".freeze,
|
948
1440
|
"vs:term_status": "unstable".freeze
|
949
1441
|
property :producer,
|
950
|
-
comment:
|
1442
|
+
comment: "Producer of a document or a collection of documents.".freeze,
|
951
1443
|
domain: term(
|
952
1444
|
type: "owl:Class".freeze,
|
953
1445
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -958,7 +1450,7 @@ another purpose.).freeze,
|
|
958
1450
|
type: "owl:ObjectProperty".freeze,
|
959
1451
|
"vs:term_status": "stable".freeze
|
960
1452
|
property :recipient,
|
961
|
-
comment:
|
1453
|
+
comment: "An agent that receives a communication document.".freeze,
|
962
1454
|
domain: "bibo:PersonalCommunicationDocument".freeze,
|
963
1455
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
964
1456
|
label: "recipient".freeze,
|
@@ -966,7 +1458,7 @@ another purpose.).freeze,
|
|
966
1458
|
type: "owl:ObjectProperty".freeze,
|
967
1459
|
"vs:term_status": "stable".freeze
|
968
1460
|
property :reproducedIn,
|
969
|
-
comment:
|
1461
|
+
comment: "The resource in which another resource is reproduced.".freeze,
|
970
1462
|
domain: "bibo:Document".freeze,
|
971
1463
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
972
1464
|
range: "bibo:Document".freeze,
|
@@ -974,14 +1466,14 @@ another purpose.).freeze,
|
|
974
1466
|
type: "owl:ObjectProperty".freeze,
|
975
1467
|
"vs:term_status": "unstable".freeze
|
976
1468
|
property :reversedBy,
|
977
|
-
comment:
|
1469
|
+
comment: "A legal decision that reverses a ruling.".freeze,
|
978
1470
|
domain: "bibo:LegalDecision".freeze,
|
979
1471
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
980
1472
|
range: "bibo:LegalDecision".freeze,
|
981
1473
|
subPropertyOf: "bibo:subsequentLegalDecision".freeze,
|
982
1474
|
type: "owl:ObjectProperty".freeze
|
983
1475
|
property :reviewOf,
|
984
|
-
comment:
|
1476
|
+
comment: "Relates a review document to a reviewed thing (resource, item, etc.).".freeze,
|
985
1477
|
domain: "bibo:Document".freeze,
|
986
1478
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
987
1479
|
label: "review of".freeze,
|
@@ -990,7 +1482,7 @@ another purpose.).freeze,
|
|
990
1482
|
type: "owl:ObjectProperty".freeze,
|
991
1483
|
"vs:term_status": "stable".freeze
|
992
1484
|
property :section,
|
993
|
-
comment:
|
1485
|
+
comment: "A section number".freeze,
|
994
1486
|
domain: "bibo:Document".freeze,
|
995
1487
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
996
1488
|
label: "section".freeze,
|
@@ -1004,7 +1496,7 @@ another purpose.).freeze,
|
|
1004
1496
|
range: "rdfs:Literal".freeze,
|
1005
1497
|
type: "owl:DatatypeProperty".freeze
|
1006
1498
|
property :shortTitle,
|
1007
|
-
comment:
|
1499
|
+
comment: "The abbreviation of a title.".freeze,
|
1008
1500
|
domain: "bibo:Document".freeze,
|
1009
1501
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1010
1502
|
label: "short title".freeze,
|
@@ -1020,23 +1512,23 @@ another purpose.).freeze,
|
|
1020
1512
|
subPropertyOf: "bibo:identifier".freeze,
|
1021
1513
|
type: "owl:DatatypeProperty".freeze
|
1022
1514
|
property :status,
|
1023
|
-
comment:
|
1515
|
+
comment: "The publication status of (typically academic) content.".freeze,
|
1024
1516
|
domain: "bibo:Document".freeze,
|
1025
|
-
editorialNote:
|
1517
|
+
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.".freeze,
|
1026
1518
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1027
1519
|
label: "status".freeze,
|
1028
1520
|
range: "bibo:DocumentStatus".freeze,
|
1029
1521
|
type: "owl:ObjectProperty".freeze,
|
1030
1522
|
"vs:term_status": "stable".freeze
|
1031
1523
|
property :subsequentLegalDecision,
|
1032
|
-
comment:
|
1524
|
+
comment: "A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).".freeze,
|
1033
1525
|
domain: "bibo:LegalDecision".freeze,
|
1034
1526
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1035
1527
|
range: "bibo:LegalDecision".freeze,
|
1036
1528
|
subPropertyOf: "dc:isReferencedBy".freeze,
|
1037
1529
|
type: "owl:ObjectProperty".freeze
|
1038
1530
|
property :suffixName,
|
1039
|
-
comment:
|
1531
|
+
comment: "The suffix of a name".freeze,
|
1040
1532
|
domain: "foaf:Agent".freeze,
|
1041
1533
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1042
1534
|
label: "suffix name".freeze,
|
@@ -1044,7 +1536,7 @@ another purpose.).freeze,
|
|
1044
1536
|
type: "owl:DatatypeProperty".freeze,
|
1045
1537
|
"vs:term_status": "stable".freeze
|
1046
1538
|
property :transcriptOf,
|
1047
|
-
comment:
|
1539
|
+
comment: "Relates a document to some transcribed original.".freeze,
|
1048
1540
|
domain: "bibo:Document".freeze,
|
1049
1541
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1050
1542
|
label: "transcript of".freeze,
|
@@ -1053,7 +1545,7 @@ another purpose.).freeze,
|
|
1053
1545
|
type: "owl:ObjectProperty".freeze,
|
1054
1546
|
"vs:term_status": "unstable".freeze
|
1055
1547
|
property :translationOf,
|
1056
|
-
comment:
|
1548
|
+
comment: "Relates a translated document to the original document.".freeze,
|
1057
1549
|
domain: "bibo:Document".freeze,
|
1058
1550
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1059
1551
|
label: "translation of".freeze,
|
@@ -1062,7 +1554,7 @@ another purpose.).freeze,
|
|
1062
1554
|
type: "owl:ObjectProperty".freeze,
|
1063
1555
|
"vs:term_status": "stable".freeze
|
1064
1556
|
property :translator,
|
1065
|
-
comment:
|
1557
|
+
comment: "A person who translates written document from one language to another.".freeze,
|
1066
1558
|
domain: term(
|
1067
1559
|
type: "owl:Class".freeze,
|
1068
1560
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -1082,7 +1574,7 @@ another purpose.).freeze,
|
|
1082
1574
|
subPropertyOf: "bibo:identifier".freeze,
|
1083
1575
|
type: "owl:DatatypeProperty".freeze
|
1084
1576
|
property :uri,
|
1085
|
-
comment:
|
1577
|
+
comment: "Universal Resource Identifier of a document".freeze,
|
1086
1578
|
domain: term(
|
1087
1579
|
type: "owl:Class".freeze,
|
1088
1580
|
unionOf: list("bibo:Collection".freeze, "bibo:Document".freeze)
|
@@ -1094,7 +1586,7 @@ another purpose.).freeze,
|
|
1094
1586
|
type: "owl:DatatypeProperty".freeze,
|
1095
1587
|
"vs:term_status": "stable".freeze
|
1096
1588
|
property :volume,
|
1097
|
-
comment:
|
1589
|
+
comment: "A volume number".freeze,
|
1098
1590
|
domain: "bibo:Document".freeze,
|
1099
1591
|
isDefinedBy: "http://purl.org/ontology/bibo/".freeze,
|
1100
1592
|
label: "volume".freeze,
|
@@ -1110,17 +1602,17 @@ another purpose.).freeze,
|
|
1110
1602
|
"rdfs:seeAlso": "http://purl.org/net/darcusb/info#me".freeze,
|
1111
1603
|
type: ["foaf:Person".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze]
|
1112
1604
|
term :"degrees/ma",
|
1113
|
-
comment:
|
1605
|
+
comment: "masters degree in arts".freeze,
|
1114
1606
|
label: "M.A.".freeze,
|
1115
1607
|
type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1116
1608
|
"vs:term_status": "stable".freeze
|
1117
1609
|
term :"degrees/ms",
|
1118
|
-
comment:
|
1610
|
+
comment: "masters degree in science".freeze,
|
1119
1611
|
label: "M.S.".freeze,
|
1120
1612
|
type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1121
1613
|
"vs:term_status": "stable".freeze
|
1122
1614
|
term :"degrees/phd",
|
1123
|
-
comment:
|
1615
|
+
comment: "PhD degree".freeze,
|
1124
1616
|
label: "PhD degree".freeze,
|
1125
1617
|
type: ["bibo:ThesisDegree".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1126
1618
|
"vs:term_status": "stable".freeze
|
@@ -1130,47 +1622,47 @@ another purpose.).freeze,
|
|
1130
1622
|
"rdfs:seeAlso": "http://fgiasson.com/me/".freeze,
|
1131
1623
|
type: ["foaf:Person".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze]
|
1132
1624
|
term :"status/accepted",
|
1133
|
-
comment:
|
1625
|
+
comment: "Accepted for publication after peer reviewing.".freeze,
|
1134
1626
|
label: "accepted".freeze,
|
1135
1627
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1136
1628
|
"vs:term_status": "stable".freeze
|
1137
1629
|
term :"status/draft",
|
1138
|
-
comment:
|
1630
|
+
comment: "Document drafted".freeze,
|
1139
1631
|
label: "draft".freeze,
|
1140
1632
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1141
1633
|
"vs:term_status": "stable".freeze
|
1142
1634
|
term :"status/forthcoming",
|
1143
|
-
comment:
|
1635
|
+
comment: "Document to be published".freeze,
|
1144
1636
|
label: "forthcoming".freeze,
|
1145
1637
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1146
1638
|
"vs:term_status": "stable".freeze
|
1147
1639
|
term :"status/legal",
|
1148
|
-
comment:
|
1640
|
+
comment: "Legal document".freeze,
|
1149
1641
|
label: "legal".freeze,
|
1150
1642
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1151
1643
|
"vs:term_status": "stable".freeze
|
1152
1644
|
term :"status/nonPeerReviewed",
|
1153
|
-
comment:
|
1645
|
+
comment: "A document that is not peer reviewed".freeze,
|
1154
1646
|
label: "non peer reviewed".freeze,
|
1155
1647
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1156
1648
|
"vs:term_status": "stable".freeze
|
1157
1649
|
term :"status/peerReviewed",
|
1158
|
-
comment:
|
1650
|
+
comment: "The process by which articles are chosen to be included in a refereed journal. An editorial board consisting of experts in the same field as the author review the article and decide if it is authoritative enough for publication.".freeze,
|
1159
1651
|
label: "peer reviewed".freeze,
|
1160
1652
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1161
1653
|
"vs:term_status": "stable".freeze
|
1162
1654
|
term :"status/published",
|
1163
|
-
comment:
|
1655
|
+
comment: "Published document".freeze,
|
1164
1656
|
label: "published".freeze,
|
1165
1657
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1166
1658
|
"vs:term_status": "stable".freeze
|
1167
1659
|
term :"status/rejected",
|
1168
|
-
comment:
|
1660
|
+
comment: "Rejected for publication after peer reviewing.".freeze,
|
1169
1661
|
label: "rejected".freeze,
|
1170
1662
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1171
1663
|
"vs:term_status": "stable".freeze
|
1172
1664
|
term :"status/unpublished",
|
1173
|
-
comment:
|
1665
|
+
comment: "Unpublished document".freeze,
|
1174
1666
|
label: "unpublished".freeze,
|
1175
1667
|
type: ["bibo:DocumentStatus".freeze, "owl:NamedIndividual".freeze, "owl:Thing".freeze],
|
1176
1668
|
"vs:term_status": "stable".freeze
|