forked from Daniel-KM/Omeka-plugin-PBCoreElementSet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelements.php
More file actions
803 lines (697 loc) · 26.7 KB
/
elements.php
File metadata and controls
803 lines (697 loc) · 26.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
<?php
$elementSetMetadata = array(
'name' => 'CAVPP_PBCore',
'description' => "CAVPP custom metadata element set, based on PBCore (a metadata standard for audiovisual media developed by the public broadcasting community. See http://www.pbcore.org/documentation/)",
'record_type' => 'Item',
);
$elements = array(
//////////// Descriptive / Admin Metadata ///////////
// Institution. Maps to <pbcoreCollection collectionSource>
array(
'label' => 'Institution',
'name' => 'Institution',
/* 'description' => 'Name of Institution.', */
'data_type' => 'Tiny Text',
),
// Institution URL. Maps to <pbcoreCollection collectionRef>
array(
'label' => 'Institution URL',
'name' => 'Institution URL',
/* 'description' => 'Institution\'s website.', */
'data_type' => 'Tiny Text',
),
// Institution Call # (identifier type). Maps to <pbcoreIdentifier identifierType="Call Number">
array(
'label' => 'Institution Call Number',
'name' => 'Institution Call Number',
/* 'description' => 'Institution\'s unique identifier (call number, acquisition number, shelf code).', */
'data_type' => 'Tiny Text',
),
// Item title. Maps to <pbcoreTitle titleType="Main">
array(
'label' => 'Title',
'name' => 'Title',
/* 'description' => 'Main Title. Use brackets for supplied titles.', */
'data_type' => 'Tiny Text',
),
// Additional Title. Maps to <pbcoreTitle titleType="Summary">
array(
'label' => 'Additional Title',
'name' => 'Additional Title',
/* 'description' =>'Additional Title.', */
'data_type' => 'Tiny Text',
'_refines' => 'Title',
),
// Series Title. Maps to <pbcoreTitle titleType="Series">
array(
'label' => 'Series Title',
'name' => 'Series Title',
/* 'description' =>'If applicable, the larger series to which the episode or piece contributed.', */
'data_type' => 'Tiny Text',
'_refines' => 'Title',
),
// Label. Maps to <pbcoreTitle titleType="Label">.
array(
'label' => 'Label',
'name' => 'Label',
/* 'description' => 'CAVPP: Please provide a cataloging note here.', */
'data_type' => 'Tiny Text',
'_refines' => 'Title',
),
// Description. Maps to <pbcoreDescription descriptionType="Abstract">
array(
'label' => 'Description or Content Summary',
'name' => 'Description or Content Summary',
/* 'description' => 'Uses free-form text to report abstracts, or summaries about the intellectual content of a media item you are cataloging. The information may be in the form of a paragraph giving an individual program description or brief content reviews.', */
),
// Extension: Important to CA history. Maps to <pbcoreExtension> -- need detailed mapping
array(
'label' => 'Why is this important to California history?',
'name' => 'Why is this important to California history?',
/* 'description' => 'CAVPP: Please provide a cataloging note here.', */
),
// Date Created. Maps to <pbcoreAssetDate dateType="created">.
array(
'label' => 'Date Created',
'name' => 'Date Created',
/* 'description' => 'The original date that the media item was created. In the case of raw interviews, the date on which the interview was conducted. Format: YYYY-MM-DD', */
'data_type' => 'Tiny Text',
),
// Date Published. Maps to <pbcoreAssetDate dateType="published">
array(
'label' => 'Date Published',
'name' => 'Date Published',
/* 'description' => 'CAVPP: Please provide cataloging note here. Format: YYYY-MM-DD', */
'data_type' => 'Tiny Text',
),
// Extension: Country of Creation. Maps to extension -->
array(
'label' => 'Country of Creation',
'name' => 'Country of Creation',
/* 'description' => 'CAVPP: Please provide cataloging note here.', */
'data_type' => 'Tiny Text',
),
// Creators (dropdown list?)
// // Director
array(
'label' => 'Creator - Director',
'name' => 'Creator - Director',
/* 'description' => 'Director. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Interviewer
array(
'label' => 'Creator - Interviewer',
'name' => 'Creator - Interviewer',
/* 'description' => 'Interviewer. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Performer
array(
'label' => 'Creator - Performer',
'name' => 'Creator - Performer',
/* 'description' => 'Performer. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Producer
array(
'label' => 'Creator - Producer',
'name' => 'Creator - Producer',
/* 'description' => 'Producer. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Writer
array(
'label' => 'Creator - Writer',
'name' => 'Creator - Writer',
/* 'description' => 'Writer. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// Contributors
// // Camera
array(
'label' => 'Contributor: Camera',
'name' => 'Contributor: Camera',
/* 'description' => 'Camera technician. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Cast
array(
'label' => 'Contributor - Cast',
'name' => 'Contributor - Cast',
/* 'description' => 'Cast member. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Editor
array(
'label' => 'Contributor - Editor',
'name' => 'Contributor - Editor',
/* 'description' => 'Editor. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Interviewee
array(
'label' => 'Contributor - Interviewee',
'name' => 'Contributor - Interviewee',
/* 'description' => 'The person(s) being interviewed. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Music
array(
'label' => 'Contributor - Music',
'name' => 'Contributor - Music',
/* 'description' => 'Music technician. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Sound
array(
'label' => 'Contributor - Sound',
'name' => 'Contributor - Sound',
/* 'description' => 'Sound technician. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Speaker
array(
'label' => 'Contributor - Speaker',
'name' => 'Contributor - Speaker',
/* 'description' => 'Speaker. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// Publishers
// // Publisher
array(
'label' => 'Publisher - Publisher',
'name' => 'Publisher - Publisher',
/* 'description' => 'Publisher. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// // Distributor
array(
'label' => 'Publisher - Distributor',
'name' => 'Publisher - Distributor',
/* 'description' => 'Distributor. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// Copyright Statement. Maps to <pbcoreRightsSummary><rightsSummary>.
array(
'label' => 'Copyright Statement',
'name' => 'Copyright Statement',
/* 'description' => 'Information about rights to the media item. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.', */
),
// Language
array(
'label' => 'Language',
'name' => 'Language',
/* 'description' => 'Language.', */
'data_type' => 'Tiny Text',
),
// Subject Topic
array(
'label' => 'Subject Topic',
'name' => 'Subject Topic',
/* 'description' => 'Language.', */
'data_type' => 'Tiny Text',
),
// Subject Entity
array(
'label' => 'Subject Entity',
'name' => 'Subject Entity',
/* 'description' => 'Subject Entity. (For personal names use "LastName, FirstName MiddleName, Suffix").', */
'data_type' => 'Tiny Text',
),
// Spatial Coverage
array(
'label' => 'Spatial Coverage',
'name' => 'Spatial Coverage',
/* 'description' => 'Spatial Coverage.', */
'data_type' => 'Tiny Text',
),
// Temporal Coverage
array(
'label' => 'Temporal Coverage',
'name' => 'Temporal Coverage',
/* 'description' => 'Temporal Coverage. Format: YYYY-MM-DD', */
'data_type' => 'Tiny Text',
),
// Genre
array(
'label' => 'Genre',
'name' => 'Genre',
/* 'description' => 'Genre.', */
'data_type' => 'Tiny Text',
),
// Cataloger Notes
array(
'label' => 'Cataloger Notes',
'name' => 'Cataloger Notes',
/* 'description' => 'Cataloger Notes.', */
),
// Additional Descriptive Notes for Work
array(
'label' => 'Additional Descriptive Notes for Work',
'name' => 'Additional Descriptive Notes for Work',
/* 'description' => 'Additional Descriptive Notes for Work.', */
),
// Additional Technical Notes for Work
array(
'label' => 'Additional Technical Notes for Work',
'name' => 'Additional Technical Notes for Work',
/* 'description' => 'Additional Technical Notes for Work.', */
),
//Collection Guide Title
array(
'label' => 'Collection Guide Title',
'name' => 'Collection Guide Title',
/* 'description' => 'Collection Guide Title.', */
'data_type' => 'Tiny Text',
),
// Collection Guide URL
array(
'label' => 'Collection Guide URL',
'name' => 'Collection Guide URL',
/* 'description' => 'Collection Guide URL.', */
'data_type' => 'Tiny Text',
),
// Physical Asset - Part Of
array(
'label' => 'Physical Asset - Part Of',
'name' => 'Physical Asset - Part Of',
/* 'description' => 'Collection Guide URL.', */
'data_type' => 'Tiny Text',
),
//Identifiers
// // Internet Archive URL
array(
'label' => 'Internet Archive URL',
'name' => 'Internet Archive URL',
/* 'description' => 'Internet Archive URL.', */
'data_type' => 'Tiny Text',
),
// // Object Identifier
array(
'label' => 'Object Identifier',
'name' => 'Object Identifier',
/* 'description' => 'Object Identifier.', */
'data_type' => 'Tiny Text',
),
// // Project Identifier
array(
'label' => 'Project Identifier',
'name' => 'Project Identifier',
/* 'description' => 'Project Identifier.', */
'data_type' => 'Tiny Text',
),
// Asset Type
array(
'label' => 'Asset Type',
'name' => 'Asset Type',
/* 'description' => 'Asset Type.', */
'data_type' => 'Tiny Text',
),
// Object ARK
array(
'label' => 'Object ARK',
'name' => 'Object ARK',
/* 'description' => 'Object ARK.', */
'data_type' => 'Tiny Text',
),
// Institution ARK
array(
'label' => 'Institution ARK',
'name' => 'Institution ARK',
/* 'description' => 'Institution ARK.', */
'data_type' => 'Tiny Text',
),
// CAVPP Quality Control Notes
array(
'label' => 'CAVPP Quality Control Notes',
'name' => 'CAVPP Quality Control Notes',
/* 'description' => 'CAVPP Quality Control Notes.', */
),
// Partner Quality Control Notes
array(
'label' => 'Partner Quality Control Notes',
'name' => 'Partner Quality Control Notes',
/* 'description' => 'Partner Quality Control Notes.', */
),
///////////// Item Type Metadata //////////////
// Moving Image and Sound sources
// Generation
array(
'label' => 'Generation (original copy)',
'name' => 'Generation (original copy)',
/* 'description' => 'Generation.', */
'data_type' => 'Tiny Text',
),
// Format
array(
'label' => 'Format (original copy)',
'name' => 'Format (original copy)',
/* 'description' => 'Format.', */
'data_type' => 'Tiny Text',
),
// Extent
array(
'label' => 'Extent (original copy)',
'name' => 'Extent (original copy)',
/* 'description' => 'Extent.', */
'data_type' => 'Tiny Text',
),
// Duration
array(
'label' => 'Duration (original copy)',
'name' => 'Duration (original copy)',
/* 'description' => 'Duration.', */
'data_type' => 'Tiny Text',
),
// Running Speed
array(
'label' => 'Running Speed (original copy)',
'name' => 'Running Speed (original copy)',
/* 'description' => 'Running Speed.', */
'data_type' => 'Tiny Text',
),
// Timecode Content Begins
array(
'label' => 'Timecode Content Begins (original copy)',
'name' => 'Timecode Content Begins (original copy)',
/* 'description' => 'Timecode Content Begins.', */
'data_type' => 'Tiny Text',
),
// Track Standard
array(
'label' => 'Track Standard (original copy)',
'name' => 'Track Standard (original copy)',
/* 'description' => 'Track Standard.', */
'data_type' => 'Tiny Text',
),
// Channel Configuration
array(
'label' => 'Channel Configuration (original copy)',
'name' => 'Channel Configuration (original copy)',
/* 'description' => 'Channel Configuration.', */
'data_type' => 'Tiny Text',
),
// Stock Manufacturer
array(
'label' => 'Stock Manufacturer (original copy)',
'name' => 'Stock Manufacturer (original copy)',
/* 'description' => 'Stock Manufacturer.', */
'data_type' => 'Tiny Text',
),
// Base Type
array(
'label' => 'Base Type (original copy)',
'name' => 'Base Type (original copy)',
/* 'description' => 'Base Type.', */
'data_type' => 'Tiny Text',
),
// Transcript
array(
'label' => 'Transcript (original copy)',
'name' => 'Transcript (original copy)',
/* 'description' => 'Transcript.', */
),
// Moving Image Only Sources
// Silent or Sound
array(
'label' => 'Silent or Sound (original copy)',
'name' => 'Silent or Sound (original copy)',
/* 'description' => 'Silent or Sound.', */
'data_type' => 'Tiny Text',
),
// Color and/or Black and White
array(
'label' => 'Color and/or Black and White (original copy)',
'name' => 'Color and/or Black and White (original copy)',
/* 'description' => 'Color and/or Black and White.', */
'data_type' => 'Tiny Text',
),
// Aspect Ratio
array(
'label' => 'Aspect Ratio (original copy)',
'name' => 'Aspect Ratio (original copy)',
/* 'description' => 'Aspect Ratio.', */
'data_type' => 'Tiny Text',
),
// Subtitles
array(
'label' => 'Subtitles (original copy)',
'name' => 'Subtitles (original copy)',
/* 'description' => 'Subtitles.', */
'data_type' => 'Tiny Text',
),
// Intertitles
array(
'label' => 'Intertitles (original copy)',
'name' => 'Intertitles (original copy)',
/* 'description' => 'Intertitles.', */
'data_type' => 'Tiny Text',
),
// Closed Captions
array(
'label' => 'Closed Captions (original copy)',
'name' => 'Closed Captions (original copy)',
/* 'description' => 'Closed Captions.', */
'data_type' => 'Tiny Text',
),
//////// Technical Vendor Metadata //////////////
// // Digital File Identifier(s)
array(
'label' => 'Digital File Identifier(s) (vendor copy)',
'name' => 'Digital File Identifier(s) (vendor copy)',
/* 'description' => 'Digital File Identifier(s).', */
'data_type' => 'Tiny Text',
),
// // Creation Date
array(
'label' => 'Creation Date (vendor copy)',
'name' => 'Creation Date (vendor copy)',
/* 'description' => 'Creation Date.', */
'data_type' => 'Tiny Text',
),
// // Frame Size
array(
'label' => 'Frame Size (vendor copy)',
'name' => 'Frame Size (vendor copy)',
/* 'description' => 'Frame Size.', */
'data_type' => 'Tiny Text',
),
// // File Extension
array(
'label' => 'File Extension (vendor copy)',
'name' => 'File Extension (vendor copy)',
/* 'description' => 'File Extension.', */
'data_type' => 'Tiny Text',
),
// // Standard and File Wrapper
array(
'label' => 'Standard and File Wrapper (vendor copy)',
'name' => 'Standard and File Wrapper (vendor copy)',
/* 'description' => 'Standard and File Wrapper.', */
'data_type' => 'Tiny Text',
),
// // File Location
array(
'label' => 'File Location (vendor copy)',
'name' => 'File Location (vendor copy)',
/* 'description' => 'File Location.', */
'data_type' => 'Tiny Text',
),
// // Media Type
array(
'label' => 'Media Type (vendor copy)',
'name' => 'Media Type (vendor copy)',
/* 'description' => 'Media Type.', */
'data_type' => 'Tiny Text',
),
// // Generation
array(
'label' => 'Generations (vendor copy)',
'name' => 'Generations (vendor copy)',
/* 'description' => 'Generation.', */
'data_type' => 'Tiny Text',
),
// // Preservation Filesize
array(
'label' => 'Preservation Filesize',
'name' => 'Preservation Filesize',
/* 'description' => 'Preservation Filesize.', */
'data_type' => 'Tiny Text',
),
// // Access Filesize
array(
'label' => 'Access Filesize',
'name' => 'Access Filesize',
/* 'description' => 'Access Filesize.', */
'data_type' => 'Tiny Text',
),
// // Duration
array(
'label' => 'Duration (vendor copy)',
'name' => 'Duration (vendor copy)',
/* 'description' => 'Duration.', */
'data_type' => 'Tiny Text',
),
// // Colors
array(
'label' => 'Colors (vendor copy)',
'name' => 'Colors (vendor copy)',
/* 'description' => 'Colors.', */
'data_type' => 'Tiny Text',
),
// // Tracks
array(
'label' => 'Tracks (vendor copy)',
'name' => 'Tracks (vendor copy)',
/* 'description' => 'Tracks.', */
'data_type' => 'Tiny Text',
),
// // Channel Configuration
array(
'label' => 'Channel Configuration (vendor copy)',
'name' => 'Channel Configuration (vendor copy)',
/* 'description' => 'Channel Configuration.', */
'data_type' => 'Tiny Text',
),
// // Track Type
array(
'label' => 'Track Type (vendor copy)',
'name' => 'Track Type (vendor copy)',
/* 'description' => 'Track Type.', */
'data_type' => 'Tiny Text',
),
// // Encoder
array(
'label' => 'Encoder (vendor copy)',
'name' => 'Encoder (vendor copy)',
/* 'description' => 'Encoder.', */
'data_type' => 'Tiny Text',
),
// // Sampling Rate (preservation copy)
array(
'label' => 'Sampling Rate (preservation copy)',
'name' => 'Sampling Rate (preservation copy)',
/* 'description' => 'Sampling Rate (preservation copy).', */
'data_type' => 'Tiny Text',
),
// // Data Rate (preservation copy)
array(
'label' => 'Data Rate (preservation copy)',
'name' => 'Data Rate (preservation copy)',
/* 'description' => 'Data Rate (preservation copy).', */
'data_type' => 'Tiny Text',
),
// // Frame Rate (preservation copy)
array(
'label' => 'Frame Rate (preservation copy)',
'name' => 'Frame Rate (preservation copy)',
/* 'description' => 'Frame Rate (preservation copy).', */
'data_type' => 'Tiny Text',
),
// // Bit Depth (preservation copy)
array(
'label' => 'Bit Depth (preservation copy)',
'name' => 'Bit Depth (preservation copy)',
/* 'description' => 'Bit Depth (preservation copy).', */
'data_type' => 'Tiny Text',
),
// // Data Compression (preservation copy)
array(
'label' => 'Data Compression (preservation copy)',
'name' => 'Data Compression (preservation copy)',
/* 'description' => 'Data Compression (preservation copy).', */
'data_type' => 'Tiny Text',
),
// // Sampling Rate (access copy)
array(
'label' => 'Sampling Rate (access copy)',
'name' => 'Sampling Rate (access copy)',
/* 'description' => 'Sampling Rate (access copy).', */
'data_type' => 'Tiny Text',
),
// // Data Rate (access copy)
array(
'label' => 'Data Rate (access copy)',
'name' => 'Data Rate (access copy)',
/* 'description' => 'Data Rate (access copy).', */
'data_type' => 'Tiny Text',
),
// // Frame Rate (access copy)
array(
'label' => 'Frame Rate (access copy)',
'name' => 'Frame Rate (access copy)',
/* 'description' => 'Frame Rate (access copy).', */
'data_type' => 'Tiny Text',
),
// // Bit Depth (access copy)
array(
'label' => 'Bit Depth (access copy)',
'name' => 'Bit Depth (access copy)',
/* 'description' => 'Bit Depth (access copy).', */
'data_type' => 'Tiny Text',
),
// // Data Compression (access copy)
array(
'label' => 'Data Compression (access copy)',
'name' => 'Data Compression (access copy)',
/* 'description' => 'Data Compression (access copy).', */
'data_type' => 'Tiny Text',
),
//Relationship/Transfer/Vendor/Creation Date
array(
'label' => 'Relationship/Transfer/Vendor/Creation Date',
'name' => 'Relationship/Transfer/Vendor/Creation Date',
/* 'description' => 'Relationship/Transfer/Vendor/Creation Date.', */
'data_type' => 'Tiny Text',
),
//Preservation File Identifier/MD5/MD5 Date
array(
'label' => 'Preservation File Identifier/MD5/MD5 Date',
'name' => 'Preservation File Identifier/MD5/MD5 Date',
/* 'description' => 'Preservation File Identifier/MD5/MD5 Date.', */
'data_type' => 'Tiny Text',
),
//Access File Identifier/MD5/MD5 Date
array(
'label' => 'Access File Identifier/MD5/MD5 Date',
'name' => 'Access File Identifier/MD5/MD5 Date',
/* 'description' => 'Access File Identifier/MD5/MD5 Date.', */
'data_type' => 'Tiny Text',
),
//Creating Application/Version
array(
'label' => 'Creating Application/Version (vendor copy)',
'name' => 'Creating Application/Version (vendor copy)',
/* 'description' => 'Creating Application/Version (vendor copy).', */
'data_type' => 'Tiny Text',
),
//Source Deck Manufacturer/Model
array(
'label' => 'Source Deck Manufacturer/Model (vendor copy)',
'name' => 'Source Deck Manufacturer/Model (vendor copy)',
/* 'description' => 'Source Deck Manufacturer/Model (vendor copy).', */
'data_type' => 'Tiny Text',
),
//Digitizer Manufacturer/Model
array(
'label' => 'Digitizer Manufacturer/Model (vendor copy)',
'name' => 'Digitizer Manufacturer/Model (vendor copy)',
/* 'description' => 'Digitizer Manufacturer/Model (vendor copy).', */
'data_type' => 'Tiny Text',
),
//Technical Evaluation Report
array(
'label' => 'Technical Evaluation Report',
'name' => 'Technical Evaluation Report',
/* 'description' => 'Technical Evaluation Report.', */
'data_type' => 'Tiny Text',
),
//Vendor Quality Control Notes
array(
'label' => 'Vendor Quality Control Notes',
'name' => 'Vendor Quality Control Notes',
/* 'description' => 'Vendor Quality Control.', */
'data_type' => 'Tiny Text',
),
);