forked from omeka/plugin-ItemRelations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformal_vocabularies.php
606 lines (605 loc) · 26.2 KB
/
formal_vocabularies.php
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
<?php
/**
* Item Relations
* @copyright Copyright 2010-2014 Roy Rosenzweig Center for History and New Media
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU GPLv3
*/
return $formalVocabularies = array(
array(
'name' => 'Dublin Core',
'description' => 'Relations defined by DCMI Metadata Terms: http://dublincore.org/documents/dcmi-terms/',
'namespace_prefix' => 'dcterms',
'namespace_uri' => 'http://purl.org/dc/terms/',
'properties' => array(
array(
'local_part' => 'relation',
'label' => 'Relation',
'description' => 'A related resource.'
),
array(
'local_part' => 'conformsTo',
'label' => 'Conforms To',
'description' => 'An established standard to which the described resource conforms.'
),
array(
'local_part' => 'hasFormat',
'label' => 'Has Format',
'description' => 'A related resource that is substantially the same as the pre-existing described resource, but in another format.'
),
array(
'local_part' => 'hasPart',
'label' => 'Has Part',
'description' => 'A related resource that is included either physically or logically in the described resource.'
),
array(
'local_part' => 'hasVersion',
'label' => 'Has Version',
'description' => 'A related resource that is a version, edition, or adaptation of the described resource.'
),
array(
'local_part' => 'isFormatOf',
'label' => 'Is Format Of',
'description' => 'A related resource that is substantially the same as the described resource, but in another format.'
),
array(
'local_part' => 'isPartOf',
'label' => 'Is Part Of',
'description' => 'A related resource in which the described resource is physically or logically included.'
),
array(
'local_part' => 'isReferencedBy',
'label' => 'Is Referenced By',
'description' => 'A related resource that references, cites, or otherwise points to the described resource.'
),
array(
'local_part' => 'isReplacedBy',
'label' => 'Is Replaced By',
'description' => 'A related resource that supplants, displaces, or supersedes the described resource.'
),
array(
'local_part' => 'isRequiredBy',
'label' => 'Is Required By',
'description' => 'A related resource that requires the described resource to support its function, delivery, or coherence.'
),
array(
'local_part' => 'isVersionOf',
'label' => 'Is Version Of',
'description' => 'A related resource of which the described resource is a version, edition, or adaptation.'
),
array(
'local_part' => 'references',
'label' => 'References',
'description' => 'A related resource that is referenced, cited, or otherwise pointed to by the described resource.'
),
array(
'local_part' => 'replaces',
'label' => 'Replaces',
'description' => 'A related resource that is supplanted, displaced, or superseded by the described resource.'
),
array(
'local_part' => 'requires',
'label' => 'Requires',
'description' => 'A related resource that is required by the described resource to support its function, delivery, or coherence.'
),
array(
'local_part' => 'source',
'label' => 'Source',
'description' => 'A related resource from which the described resource is derived.'
),
array(
'local_part' => 'abstract',
'label' => 'Abstract',
'description' => 'A summary of the resource.'
),
array(
'local_part' => 'accessRights',
'label' => 'Access Rights',
'description' => 'Information about who can access the resource or an indication of its security status.'
),
array(
'local_part' => 'accrualMethod',
'label' => 'Accrual Method',
'description' => 'The method by which items are added to a collection.'
),
array(
'local_part' => 'accrualPeriodicity',
'label' => 'Accrual Periodicity',
'description' => 'The frequency with which items are added to a collection.'
),
array(
'local_part' => 'accrualPolicy',
'label' => 'Accrual Policy',
'description' => 'The policy governing the addition of items to a collection.'
),
array(
'local_part' => 'audience',
'label' => 'Audience',
'description' => 'A class of entity for whom the resource is intended or useful.'
),
array(
'local_part' => 'contributor',
'label' => 'Contributor',
'description' => 'An entity responsible for making contributions to the resource.'
),
array(
'local_part' => 'coverage',
'label' => 'Coverage',
'description' => 'The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.'
),
array(
'local_part' => 'creator',
'label' => 'Creator',
'description' => 'An entity primarily responsible for making the resource.'
),
array(
'local_part' => 'description',
'label' => 'Description',
'description' => 'An account of the resource.'
),
array(
'local_part' => 'educationLevel',
'label' => 'Audience Education Level',
'description' => 'A class of entity, defined in terms of progression through an educational or training context, for which the described resource is intended.'
),
array(
'local_part' => 'extent',
'label' => 'Extent',
'description' => 'The size or duration of the resource.'
),
array(
'local_part' => 'format',
'label' => 'Format',
'description' => 'The file format, physical medium, or dimensions of the resource.'
),
array(
'local_part' => 'instructionalMethod',
'label' => 'Instructional Method',
'description' => 'A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.'
),
array(
'local_part' => 'language',
'label' => 'Language',
'description' => 'A language of the resource.'
),
array(
'local_part' => 'license',
'label' => 'License',
'description' => 'A legal document giving official permission to do something with the resource.'
),
array(
'local_part' => 'mediator',
'label' => 'Mediator',
'description' => 'An entity that mediates access to the resource and for whom the resource is intended or useful.'
),
array(
'local_part' => 'medium',
'label' => 'Medium',
'description' => 'The material or physical carrier of the resource.'
),
array(
'local_part' => 'provenance',
'label' => 'Provenance',
'description' => 'A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.'
),
array(
'local_part' => 'publisher',
'label' => 'Publisher',
'description' => 'An entity responsible for making the resource available.'
),
array(
'local_part' => 'rights',
'label' => 'Rights',
'description' => 'Information about rights held in and over the resource.'
),
array(
'local_part' => 'rightsHolder',
'label' => 'Rights Holder',
'description' => 'A person or organization owning or managing rights over the resource.'
),
array(
'local_part' => 'spatial',
'label' => 'Spatial Coverage',
'description' => 'Spatial characteristics of the resource.'
),
array(
'local_part' => 'subject',
'label' => 'Subject',
'description' => 'The topic of the resource.'
),
array(
'local_part' => 'tableOfContents',
'label' => 'Table Of Contents',
'description' => 'A list of subunits of the resource.'
),
array(
'local_part' => 'temporal',
'label' => 'Temporal Coverage',
'description' => 'Temporal characteristics of the resource.'
),
array(
'local_part' => 'type',
'label' => 'Type',
'description' => 'The nature or genre of the resource.'
),
)
),
array(
'name' => 'BIBO',
'description' => 'Relations defined by the Bibliographic Ontology (BIBO): http://bibotools.googlecode.com/svn/bibo-ontology/trunk/doc/index.html',
'namespace_prefix' => 'bibo',
'namespace_uri' => 'http://purl.org/ontology/bibo/',
'properties' => array(
array(
'local_part' => 'annotates',
'label' => 'annotates',
'description' => 'Critical or explanatory note for a Document.'
),
array(
'local_part' => 'citedBy',
'label' => 'cited by',
'description' => 'Relates a document to another document that cites the first document.'
),
array(
'local_part' => 'cites',
'label' => 'cites',
'description' => 'Relates a document to another document that is cited by the first document as reference, comment, review, quotation or for another purpose.'
),
array(
'local_part' => 'reviewOf',
'label' => 'review of',
'description' => 'Relates a review document to a reviewed thing (resource, item, etc.).'
),
array(
'local_part' => 'reproducedIn',
'label' => 'reproduced in',
'description' => 'The resource in which another resource is reproduced.'
),
array(
'local_part' => 'affirmedBy',
'label' => 'affirmed by',
'description' => 'A legal decision that affirms a ruling.'
),
array(
'local_part' => 'reversedBy',
'label' => 'reversed by',
'description' => 'A legal decision that reverses a ruling.'
),
array(
'local_part' => 'subsequentLegalDecision',
'label' => 'subsequent legal decision',
'description' => 'A legal decision on appeal that takes action on a case (affirming it, reversing it, etc.).'
),
array(
'local_part' => 'transcriptOf',
'label' => 'transcript of',
'description' => 'Relates a document to some transcribed original.'
),
array(
'local_part' => 'translationOf',
'label' => 'translation of',
'description' => 'Relates a translated document to the original document.'
),
)
),
array(
'name' => 'FOAF',
'description' => 'Relations defined by the Friend of a Friend vocabulary (FOAF): http://xmlns.com/foaf/spec/',
'namespace_prefix' => 'foaf',
'namespace_uri' => 'http://xmlns.com/foaf/0.1/',
'properties' => array(
array(
'local_part' => 'based_near',
'label' => 'based near',
'description' => 'A location that something is based near, for some broadly human notion of near.'
),
array(
'local_part' => 'depiction',
'label' => 'depiction',
'description' => 'A depiction of some thing.'
),
array(
'local_part' => 'depicts',
'label' => 'depicts',
'description' => 'A thing depicted in this representation.'
),
array(
'local_part' => 'fundedBy',
'label' => 'funded by',
'description' => 'An organization funding a project or person.'
),
array(
'local_part' => 'img',
'label' => 'image',
'description' => 'An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one\'s photo on a homepage).'
),
array(
'local_part' => 'isPrimaryTopicOf',
'label' => 'is primary topic of',
'description' => 'A document that this thing is the primary topic of.'
),
array(
'local_part' => 'knows',
'label' => 'knows',
'description' => 'A person known by this person (indicating some level of reciprocated interaction between the parties).'
),
array(
'local_part' => 'logo',
'label' => 'logo',
'description' => 'A logo representing some thing.'
),
array(
'local_part' => 'made',
'label' => 'made',
'description' => 'Something that was made by this agent.'
),
array(
'local_part' => 'maker',
'label' => 'maker',
'description' => 'An agent that made this thing.'
),
array(
'local_part' => 'member',
'label' => 'member',
'description' => 'Indicates a member of a Group.'
),
array(
'local_part' => 'page',
'label' => 'page',
'description' => 'A page or document about this thing.'
),
array(
'local_part' => 'primaryTopic',
'label' => 'primary topic',
'description' => 'The primary topic of some page or document.'
),
array(
'local_part' => 'thumbnail',
'label' => 'thumbnail',
'description' => 'A derived thumbnail image.'
),
)
),
array(
'name' => 'FRBR',
'description' => 'Relations defined by the Functional Requirements for Bibliographic Records (FRBR): http://vocab.org/frbr/core.html',
'namespace_prefix' => 'frbr',
'namespace_uri' => 'http://purl.org/vocab/frbr/core#',
'properties' => array(
array(
'local_part' => 'abridgement',
'label' => 'abridgement',
'description' => 'A property representing an abridgment of an expression.'
),
array(
'local_part' => 'abridgementOf',
'label' => 'abridgement of',
'description' => 'A property representing an expression that is abridged.'
),
array(
'local_part' => 'adaption',
'label' => 'adaption',
'description' => 'A property representing an adaption of a work or expression.'
),
array(
'local_part' => 'adaptionOf',
'label' => 'adaption of',
'description' => 'A property representing a work or expression that is adapted.'
),
array(
'local_part' => 'alternate',
'label' => 'alternate',
'description' => 'A property representing an alternative to a manifestation.'
),
array(
'local_part' => 'alternateOf',
'label' => 'alternate of',
'description' => 'A property representing a manifestation that is alternated.'
),
array(
'local_part' => 'arrangement',
'label' => 'arrangement',
'description' => 'A property representing an arrangement of an expression.'
),
array(
'local_part' => 'arrangementOf',
'label' => 'arrangement of',
'description' => 'A property representing an expression that is arranged.'
),
array(
'local_part' => 'complement',
'label' => 'complement',
'description' => 'A property representing a complement to a work or expression.'
),
array(
'local_part' => 'complementOf',
'label' => 'complement of',
'description' => 'A property representing a work or expression that is complemented.'
),
array(
'local_part' => 'creator',
'label' => 'creator',
'description' => 'A property representing an entity in some way responsible for the creation of a work.'
),
array(
'local_part' => 'creatorOf',
'label' => 'creator of',
'description' => 'A property representing a work that was in some way created by of an entity.'
),
array(
'local_part' => 'embodiment',
'label' => 'embodiment',
'description' => 'A property representing a manifestation that embodies an expression.'
),
array(
'local_part' => 'embodimentOf',
'label' => 'embodiment of',
'description' => 'A property representing an expression that is embodied by a manifestation.'
),
array(
'local_part' => 'exemplar',
'label' => 'exemplar',
'description' => 'A property representing an item that is an exemplar of a manifestation.'
),
array(
'local_part' => 'exemplarOf',
'label' => 'exemplar of',
'description' => 'A property representing the manifestation that is exemplified by a item.'
),
array(
'local_part' => 'imitation',
'label' => 'imitation',
'description' => 'A property representing an imitation of a work or expression.'
),
array(
'local_part' => 'imitationOf',
'label' => 'imitation of',
'description' => 'A property representing a work or expression that is imitated.'
),
array(
'local_part' => 'owner',
'label' => 'owner',
'description' => 'A property representing an entity that owns an item.'
),
array(
'local_part' => 'ownerOf',
'label' => 'owner of',
'description' => 'A property representing an item that is in some way owned an entity.'
),
array(
'local_part' => 'part',
'label' => 'part',
'description' => 'A property representing a part of an endeavour.'
),
array(
'local_part' => 'partOf',
'label' => 'part of',
'description' => 'A property representing an endeavour incorporating an endeavour.'
),
array(
'local_part' => 'producer',
'label' => 'producer',
'description' => 'A property representing an entity in some way responsible for producing a manifestation.'
),
array(
'local_part' => 'producerOf',
'label' => 'producer of',
'description' => 'A property representing a manifestation that was in some way produced an entity.'
),
array(
'local_part' => 'realization',
'label' => 'realization',
'description' => 'A property representing an expression that is an intellectual or artistic realization of a work.'
),
array(
'local_part' => 'realizationOf',
'label' => 'realization of',
'description' => 'A property representing the work that has been realized by an expression.'
),
array(
'local_part' => 'realizer',
'label' => 'realizer',
'description' => 'A property representing an entity in some way responsible for realizing an expression.'
),
array(
'local_part' => 'realizerOf',
'label' => 'realizer of',
'description' => 'A property representing an expression that was in some way realized by an entity.'
),
array(
'local_part' => 'reconfiguration',
'label' => 'reconfiguration',
'description' => 'A property representing a recongifuration of an item.'
),
array(
'local_part' => 'reconfigurationOf',
'label' => 'reconfiguration of',
'description' => 'A property representing an item that is reconfigured.'
),
array(
'local_part' => 'relatedEndeavour',
'label' => 'related endeavour',
'description' => 'A property representing another endeavour that is related in some way to an endeavour.'
),
array(
'local_part' => 'reproduction',
'label' => 'reproduction',
'description' => 'A property representing a reproduction of a manifestation or item.'
),
array(
'local_part' => 'reproductionOf',
'label' => 'reproduction of',
'description' => 'A property representing a manifestation or item that is reproduced.'
),
array(
'local_part' => 'responsibleEntity',
'label' => 'responsible entity',
'description' => 'A property representing an entity in some way responsible for an endeavour.'
),
array(
'local_part' => 'responsibleEntityOf',
'label' => 'responsible entity of',
'description' => 'A property representing an endeavour that is the responsibility of an entity.'
),
array(
'local_part' => 'revision',
'label' => 'revision',
'description' => 'A property representing a revision of an expression.'
),
array(
'local_part' => 'revisionOf',
'label' => 'revision of',
'description' => 'A property representing an expression that is revised.'
),
array(
'local_part' => 'successor',
'label' => 'successor',
'description' => 'A property representing a successor to a work or expression.'
),
array(
'local_part' => 'successorOf',
'label' => 'successor of',
'description' => 'A property representing a work or expression that is succeeded.'
),
array(
'local_part' => 'summarization',
'label' => 'summarization',
'description' => 'A property representing a summarization of a work or expression.'
),
array(
'local_part' => 'summarizationOf',
'label' => 'summarization of',
'description' => 'A property representing a work or expression that is summarized.'
),
array(
'local_part' => 'supplement',
'label' => 'supplement',
'description' => 'A property representing a supplement to a work or expression.'
),
array(
'local_part' => 'supplementOf',
'label' => 'supplement of',
'description' => 'A property representing a work or expression that is supplemented.'
),
array(
'local_part' => 'transformation',
'label' => 'transformation',
'description' => 'A property representing a transformation of a work or expression.'
),
array(
'local_part' => 'transformationOf',
'label' => 'transformation of',
'description' => 'A property representing a work or expression that is transformed.'
),
array(
'local_part' => 'translation',
'label' => 'translation',
'description' => 'A property representing a translation of an expression.'
),
array(
'local_part' => 'translationOf',
'label' => 'translation of',
'description' => 'A property representing an expression that is translated.'
),
)
),
);