-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata_dictionary.html
More file actions
1201 lines (1198 loc) · 62.6 KB
/
Copy pathmetadata_dictionary.html
File metadata and controls
1201 lines (1198 loc) · 62.6 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
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<table border="1" cellspacing="0" cellpadding="10">
<tbody>
<tr>
<td width="920"><a name="Top"></a>
<h4>Descriptive Metadata</h4>
<p><a href="#Title">Title</a> | <a href="#AlternativeTitle">Alternative Title</a> | <a href="#Creator">Creator</a> | <a href="#Contributor">Contributor</a> | <a href="#Publisher">Publisher</a> | <a href="#PlaceOfCreation">Place of Creation</a> | <a href="#DateISO">Date (ISO 8601)</a> | <a href="#Date">Date</a> | <a href="#Description">Description</a> | <a href="#Caption">Caption</a> | <a href="#Inscription">Inscription</a> | <a href="#Donor">Donor</a> | <a href="#SubjectTopical">Subject.Topical</a> | <a href="#SubjectName">Subject.Name</a> | <a href="#SubjectTimePeriod">Subject.Time Period</a> | <a href="#SubjectGeographic">Subject.Geographic</a> | <a href="#GeographicCoordinates">Geographic Coordinates</a> | <a href="#Genre">Genre</a> | <a href="#Language">Language</a> | <a href="#LanguageCode">Language Code (ISO 639.2)</a> | <a href="#PhysicalDescription">Physical Description</a> | <a href="#Type">Type (DCMI)</a> | <a href="#Format">Format (IMT)</a> | <a href="#OriginalItemExtent">Original Item Extent</a></p>
<hr />
<h4>Administrative Metadata</h4>
<p><a href="#OriginalItemLocation">Original Item Location</a> | <a href="#OriginalItemURL">Original Item URL</a> | <a href="#OriginalCollection">Original Collection</a> | <a href="#OriginalCollectionURL">Original Collection URL</a> | <a href="#DigitalCollection">Digital Collection</a> | <a href="#DigitalCollectionURL">Digital Collection URL</a> | <a href="#Repository">Repository</a> | <a href="#RepositoryURL">Repository URL</a> | <a href="#UseAndReproduction">Use and Reproduction</a> | <a href="#Transcript">Transcript</a></p>
</td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<td width="920"> </td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0" cellpadding="5">
<tbody>
<tr style="background-color: #f1f1f1;">
<td style="text-align: center;" valign="top">
<h6><strong>Label</strong></h6>
</td>
<td style="text-align: center;" valign="top">
<h6><strong>Definition</strong></h6>
</td>
<td style="text-align: center;" valign="top">
<h6><strong>Input Rules</strong></h6>
</td>
<td style="text-align: center;" valign="top">
<h6><strong>CONTENTdm Settings</strong></h6>
</td>
<td style="text-align: center;" valign="top">
<h6><strong>Crosswalk</strong></h6>
</td>
</tr>
<tr style="background-color: #c1c1c1;">
<td colspan="5" valign="top" width="920">
<h5>Descriptive Metadata</h5>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================TITLE============================ -->
<tr>
<td valign="top"><a name="Title"></a>
<p style="text-align: center;"><strong>Title</strong></p>
</td>
<td valign="top">
<p>"The name given to the resource. Typically, a Title will be a name by which the resource is formally known." (<a href="http://purl.org/dc/elements/1.1/title" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p><strong>Letter</strong>: Letter from [sender] to [recipient] regarding [subject]</p>
<p>The subject statement at the end is optional. If included, Metadata Specialists should utilize a variety of words for "regarding," such as: about, concerning, in reference to, etc.</p>
<p><strong>Serials (e.g. newsletters)</strong>: [title of newsletter], Vol. [volume number], No. [issue number], [issue] date]</p>
<p>If volume and/or issue numbers are in Roman numbers, Use Arabic numerals (e.g. 1, 2, 3...) in titles and repeat title with Roman numerals in Alternative Title field.</p>
<p><strong>Book</strong>: title from the catalog record</p>
<p><strong>Other formats</strong>: Devise a brief descriptive title that uniquely identifies the resource (e.g. names of persons, corporate bodies, objects, activities, and events).</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Letter from Minnie Fisher Cunningham to Ella Pomeroy</li>
<li>Breakthrough, Vol. 1, No. 3, March 1976</li>
<li>General Emiliano Zapata and his staff</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Title<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> Yes<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/title" target="_blank">Title</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd245.html" target="_blank">245 $a</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd245.html" target="_blank">245 $b</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ====================================================ALTERNATIVETITLE================ -->
<tr>
<td valign="top"><a name="AlternativeTitle"></a>
<p style="text-align: center;"><strong>Alternative Title</strong></p>
</td>
<td valign="top">
<p>"An alternative name for the resource." (<a href="http://purl.org/dc/terms/alternative" target="_blank">DCMI</a>)</p>
<p>Use this field for books or other items that have an alternative title listed in the catalog record.</p>
</td>
<td valign="top">
<p>Alternative title from the catalog record. Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLE</em></p>
<p>"Americae pars quarta, sive, Insignis & admiranda historia de reperta primùm Occidentalis India à Christophoro Columbo anno M. CCCCXCII / scripta ab Hieronymo Bezono... qui istic an[n]is XIIII. versatus dilige[n]ter omnia observavit ; addita ad singula ferè capita, non contemnenda scholia in quibus agitur de earum etiam gentium idolatria ; accessit praeterea illarum regionum tabula chorographica ; omnia elegantibus figuris in aes incisis expressa à Theodoro de Bry Leodiens, cive Francofortensi."
</td>
<td valign="top">
<p><em>DC Map:</em> Title-Alternative<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/alternative" target="_blank">Alternative</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd246.html" target="_blank">246</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================CREATOR========================== -->
<tr>
<td valign="top"><a name="Creator"></a>
<p style="text-align: center;"><strong>Creator</strong></p>
</td>
<td valign="top">
<p>"An entity primarily responsible for making the content of the resource. Examples of a Creator include a person, an organization, or a service. Typically the name of the Creator should be used to indicate the entity." (<a href="http://purl.org/dc/elements/1.1/creator" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>The entity should be expressed using an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://id.loc.gov/authorities/names.html" target="_blank">Library of Congress Name Authorities (LCNAF)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li>Local</li>
</ol>
<p><strong>Local:</strong> [Last Name], [First Name], [Middle Initial]<br />(if applicable) [Suffix], (if needed) [year of birth]-[year of death]</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Doe, Jane A.</li>
<li>Doe, J. A. (Jane Apple)</li>
<li>Doe, Jane A., 1882-1982</li>
<li>Doe, John, Jr.</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Creator<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/creator" target="_blank">Creator</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd100.html" target="_blank">100 1#</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd110.html" target="_blank">110 2#</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd111.html" target="_blank">111 1#</a><br /><a title="700" href="http://www.loc.gov/marc/bibliographic/concise/bd700.html" target="_blank">700</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd710.html" target="_blank">710</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd711.html" target="_blank">711</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================CONTRIBUTOR====================== -->
<tr>
<td valign="top"><a name="Contributor"></a>
<p style="text-align: center;"><strong>Contributor</strong></p>
</td>
<td valign="top">
<p>"An entity responsible for making contributions to the content of the resource. Examples of a Contributor include a person, an organization or a service. Typically, the name of a Contributor should be used to indicate the entity." (<a href="http://purl.org/dc/elements/1.1/contributor" target="_blank">DCMI</a>)</p>
<p>"Use for other people or entities who contributed to making the intellectual content of the resource, but who are not covered in the creator field." (<a href="http://www.mwdl.org/docs/MWDL_DC_Profile_Version_2.0.pdf" target="_blank">MWDL</a>)</p>
</td>
<td valign="top">
<p>The entity should be expressed using an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://id.loc.gov/authorities/names.html" target="_blank">Library of Congress Name Authorities (LCNAF)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li>Local</li>
</ol>
<p><strong>Local:</strong> [Last Name], [First Name], [Middle Initial]<br />(if applicable) [Suffix],(if needed) [year of birth]-[year of death], [role of the person or entity using <a href="http://www.loc.gov/marc/relators/relaterm.html" target="_blank">MARC Relator terms</a>]</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Doe, Jane A.</li>
<li>Doe, J. A. (Jane Apple)</li>
<li>Doe, Jane A., 1882-1982</li>
<li>Doe, John, Jr.</li>
<li>Doe, Jane A., 1882-1982, illustrator</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Contributor<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/contributor" target="_blank">Contributor</a><br /><strong>MARC:</strong><br /><a title="700" href="http://www.loc.gov/marc/bibliographic/concise/bd700.html" target="_blank">700</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd710.html" target="_blank">710</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd711.html" target="_blank">711</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================PUBLISHER======================== -->
<tr>
<td valign="top"><a name="Publisher"></a>
<p style="text-align: center;"><strong>Publisher</strong></p>
</td>
<td valign="top">
<p>"The entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity." (<a href="http://purl.org/dc/elements/1.1/publisher" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p> Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>London: Schott & Comp.; Leipzig: C.F. Leede</li>
<li>Bonn: N. Simrock</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Publisher<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/publisher" target="_blank">Publisher</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd260.html" target="_blank">260 $b</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd264.html" target="_blank">264 $b</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================PLACEOFCREATION================== -->
<tr>
<td valign="top"><a name="PlaceOfCreation"></a>
<p style="text-align: center;"><strong>Place of Creation</strong></p>
</td>
<td valign="top">
<p>Geographic area where item was created. Content can include cities, neighborhoods, natural geographic features, or other geographic locations.</p>
<p>Use <a href="#SubjectGeographic">Subject.Geographic</a> field when the intellectual or artistic content is about or depicts a place (Miller, <em>Metadata for Digital Collections</em>, 114).</p>
</td>
<td valign="top">
<p>Geographic area expressed as an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://www.getty.edu/research/tools/vocabularies/tgn/index.html" target="_blank">Getty Thesaurus of Geographic Names (TGN)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li>Local</li>
</ol>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Smithville, Texas</li>
<li>San Diego, California</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> None<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/lite/lbd260.html" target="_blank">260 $a</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd264.html" target="_blank">264 $a</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================DATEISO========================== -->
<tr>
<td valign="top"><a name="DateISO"></a>
<p style="text-align: center;"><strong>Date (ISO 8601)</strong></p>
</td>
<td valign="top">
<p>"Typically, Date will be associated with the creation or availability of the resource. Recommended best practice for encoding the date value is defined in a profile of and follows the YYYY-MM-DD format." (<a href="http://purl.org/dc/elements/1.1/date" target="_blank">DCMI</a>)</p>
<p>"The date refers to the creation of the original resource before undergoing any conversion." (<a href="http://www.mwdl.org/docs/MWDL_DC_Profile_Version_2.0.pdf" target="_blank">MWDL</a>)</p>
</td>
<td valign="top">
<p>Date (ISO) should be expressed in the appropriate Extended Date/Time Format (EDTF) format:</p>
<ul>
<li><a href="http://www.loc.gov/standards/datetime/pre-submission.html" target="_blank">Extended Date/Time Format (EDTF) 1.0</a></li>
</ul>
<p>Only enter valid EDTF dates. Use the <a href="http://digital2.library.unt.edu/edtf/">Extended Date Time Format Levels 0, 1 and 2 Validation Service</a> to verify the format.</p>
<p>Use "~" in place of "approximately." Place the symbol after date.</p>
<p>Use "?" to designate an unknown date. Place the symbol after the date.</p>
<p>Use "/" to separate dates in a date range.</p>
<p>Use "x" to replace questionable date that occured once during a time period (1920s, etc.)</p>
<p>YYYY<br />YYYY-MM<br />YYYY-MM-DD<br />YYYY-MM-DD/YYYY-MM-DD [closed date range]<br />/YYYY [open date range, no beginning date known]<br />YYYY/ [open date range, no ending date known]</p>
<p>To represent a decade range such as 1920s-1930s, use 1920~/1939~</p>
<p>To represent a season, use 21 (Spring), 22 (Summer), 23 (Fall), 24 (Winter), and the year. For example 2016-21 is Spring 2016.</p>
<p>See the <a href="http://www.loc.gov/standards/datetime/pre-submission.html">Extended Date/Time Format (EDTF) 1.0</a> document for more options and examples.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>1876-09-19</li>
<li>2011-06</li>
<li>1900</li>
<li>2012~</li>
<li>1999?</li>
<li>1809-09-01/1810-10-01</li>
<li>192x</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Date<br /><em>Data Type:</em> Date<br /><em>Search:</em> Yes<br /><em>Hide:</em> Yes<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/date" target="_blank">Date</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd260.html" target="_blank">260 ## $C</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ====================================================DATE============================ -->
<tr>
<td valign="top"><a name="Date"></a>
<p style="text-align: center;"><strong>Date</strong></p>
</td>
<td valign="top">
<p>"Typically, Date will be associated with the creation or availability of the resource." (<a href="http://purl.org/dc/elements/1.1/date" target="_blank">DCMI</a>)</p>
<p>"The date refers to the creation of the original resource before undergoing any conversion." (<a href="http://www.mwdl.org/docs/MWDL_DC_Profile_Version_2.0.pdf" target="_blank">MWDL</a>)</p>
</td>
<td valign="top">
<p>Natural language, expressed as "Month (D)D, YYYY" or other appropriate date based on value in Date (ISO 8601) field.</p>
<p>Avoid using abbreviations and Latin terms for dates.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<table align="center"border="1">
<tr>
<th> Date (ISO 8601) field value </th>
<th> Date </th>
</tr>
<tr>
<td>1876-09-19</td>
<td>September 19, 1876</td>
</tr>
<tr>
<td>2011-06</td>
<td>June 2011</td>
</tr>
<tr>
<td>2013~</td>
<td>approximately 2013</td>
</tr>
<tr>
<td>1950~/1979~</td>
<td>1950s-1970s</td>
</tr>
<tr>
<td>192x</td>
<td>1920s</td>
</tr>
<tr>
<td>1809-09-01/1810-10-01</td>
<td>September 1, 1809 - October 1, 1810</td>
</tr>
</table>
</td>
<td valign="top">
<p><em>DC Map:</em> None<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/date" target="_blank">Date</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd260.html" target="_blank">260 ## $C</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================DESCRIPTION====================== -->
<tr>
<td valign="top"><a name="Description"></a>
<p style="text-align: center;"><strong>Description</strong></p>
</td>
<td valign="top">
<p>"An account of the content of the resource. Description may include but is not limited to: an abstract, table of contents, reference to a graphical representation of content or a free-text account of the content." (<a href="http://purl.org/dc/elements/1.1/description" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Take description directly from the source when it is available.</p>
<p>If no description is provided, summarize item in a brief sentence or two.</p>
</td>
<td valign="top">
<p><em>DC Map:</em> Description<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/description" target="_blank">Description</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd500.html" target="_blank">500</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd520.html" target="_blank">520</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd545.html" target="_blank">545</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================CAPTION========================== -->
<tr>
<td valign="top"><a name="Caption"></a>
<p style="text-align: center;"><strong>Caption</strong></p>
</td>
<td valign="top">
<p>Language printed on an object that provides contextual information.</p>
<p>If the original object has handwritten text use the <a href="#Inscription">Inscription</a> field.</p>
</td>
<td valign="top">
<p>Text of caption included in the digital object:</p>
<p>Caption: "[caption as transcribed directly from source]"</p>
<p>Text of caption <em>not</em> included in the digital object:</p>
<p>Caption from [book -or- scrapbook]: "[caption as transcribed directly from source]"</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Caption: "President Wilson addresses the crowd."</li>
<li>Caption from photograph: "City Hall."</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Description<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/description" target="_blank">Description</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================INSCRIPTION====================== -->
<tr>
<td valign="top"><a name="Inscription"></a>
<p style="text-align: center;"><strong>Inscription</strong></p>
</td>
<td valign="top">
<p>Language handwritten on an object that provides contextual information.</p>
<p>If the original object has printed (not handwritten) text use the <a href="#Caption">Caption</a> field.</p>
</td>
<td valign="top">
<p>Text of inscription:</p>
<p>Inscription on [front <em>-or-</em> back]: "[inscription as transcribed directly from source]"</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLE</em></p>
<p>Inscription on front: "Jack's retirement party."</p>
</td>
<td valign="top">
<p><em>DC Map:</em> Description<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/description" target="_blank">Description</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================DONOR============================ -->
<tr>
<td valign="top"><a name="Donor"></a>
<p style="text-align: center;"><strong>Donor</strong></p>
</td>
<td valign="top">
<p>"A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation." (<a href="http://purl.org/dc/terms/provenance" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Name of donor(s) provided in catalog record, finding aid, or by the repository.</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Col. and Mrs. François H.K. Reynolds, 1955</li>
<li>Robert B. Fulton</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> None<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/provenance" target="_blank">Provenance</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ===================================================================================== -->
<!-- ===================================================SUBJECTTOPICAL==================== -->
<tr>
<td valign="top"><a name="SubjectTopical"></a>
<p style="text-align: center;"><strong>Subject.Topical</strong></p>
</td>
<td valign="top">
<p>"The topic of the content of the resource." (<a href="http://purl.org/dc/elements/1.1/subject" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>The topic should be expressed as an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://id.loc.gov/authorities/subjects.html" target="_blank">Library of Congress Subject Headings (LCSH)</a></li>
<li>Local</li>
</ol>
<p>Avoid using pre-coordinated subject headings (ex. Hip-hop culture--Texas--Houston). Split into separate topics and/or other appropriate metadata fields when possible. (ex. Subject.Topical: Hip-hop culture. Subject.Geographic: Houston, Texas). </p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Architecture</li>
<li>Sailors</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Subject<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p>Required in UHDL Field Template: Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/subject" target="_blank">Subject</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd650.html" target="_blank">650</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================SUBJECTNAME====================== -->
<tr>
<td valign="top"><a name="SubjectName"></a>
<p style="text-align: center;"><strong>Subject.Name</strong></p>
</td>
<td valign="top">
<p>Proper names cited in the content of the resource.</p>
</td>
<td valign="top">
<p>The entity should be expressed using an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://id.loc.gov/authorities/names.html" target="_blank">Library of Congress Name Authorities (LCNAF)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li><a href="http://www.getty.edu/research/tools/vocabularies/ulan/index.html" target="_blank">Getty Union List of Artist Names (ULAN)</a></li>
<li> Local</li>
</ol>
<p><strong>Local:</strong> [Last Name], [First Name], [Middle Initial]<br />(if needed) [year of birth]-[year of death]</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>DJ Screw, 1971-2000</li>
<li>Slough, William M.</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Subject<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/subject" target="_blank">Subject</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd600.html" target="_blank">600</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd610.html" target="_blank">610</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd610.html" target="_blank">611</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================SUBJECTTIMEPERIOD================ -->
<tr>
<td valign="top"><a name="SubjectTimePeriod"></a>
<p style="text-align: center;"><strong>Subject.Time Period</strong></p>
</td>
<td valign="top">
<p>Time period cited in the content of the resource.</p>
<p>Use when the intellectual or artistic content is about or depicts a time (Miller, <em>Metadata for Digital Collection</em>s, 114).</p>
</td>
<td valign="top">
<p>Time period should be expressed as an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://id.loc.gov/authorities/subjects.html" target="_blank">Library of Congress Subject Headings (LCSH)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li> Local</li>
</ol>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Texas--History--Republic, 1836-1846</li>
<li>20th-century America</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Coverage-Temporal<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em><br />No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/coverage" target="_blank">Coverage</a> (Temporal)<br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd650.html" target="_blank">650</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================SUBJECTGEOGRAPHIC================ -->
<tr>
<td valign="top"><a name="SubjectGeographic"></a>
<p style="text-align: center;"><strong>Subject.Geographic</strong></p>
</td>
<td valign="top">
<p>Geographic area represented in the content of the resource. Content can include cities, neighborhoods, natural geographic features, or other geographic locations.</p>
<p>Use when the intellectual or artistic content is about or depicts a place (Miller, <em>Metadata for Digital Collections</em>, 114).</p>
<p>Use <a href="#PlaceOfCreation">Place of Creation</a> field to indicate where an object was created.</p>
</td>
<td valign="top">
<p>Geographic area expressed as an authorized term from a controlled vocabulary, in order of preference:</p>
<ol>
<li><a href="http://www.getty.edu/research/tools/vocabularies/tgn/index.html" target="_blank">Getty Thesaurus of Geographic Names (TGN)</a></li>
<li><a href="http://www.tshaonline.org/handbook/online" target="_blank">Handbook of Texas (HOT)</a></li>
<li> Local</li>
</ol>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Smithville, Texas</li>
<li>San Diego, California</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Coverage-Spatial<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/coverage" target="_blank">Coverage</a> (Spatial)<br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd651.html" target="_blank">651 #0</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd651.html" target="_blank">651 #7</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================GEOGRAPHICCOORDINATES============ -->
<tr>
<td valign="top"><a name="GeographicCoordinates"></a>
<p style="text-align: center;"><strong>Geographic Coordinates</strong></p>
</td>
<td valign="top">
<p>Latitude and Longitude points that reference an exact geographic location.</p>
</td>
<td valign="top">
<p>[latitude], [longitude]</p>
<p><a href="http://maps.google.com" target="_blank">Google Maps</a> Instructions:</p>
<ol>
<li>Right click on the location</li>
<li>Select "What's here?"</li>
<li>Copy and paste the coordinates that appear in the info box</li>
</ol><hr />
<p style="text-align: center;"><em>EXAMPLE</em></p>
<p>29.71625, -95.3391</p>
</td>
<td valign="top">
<p><em>DC Map:</em> Coverage-Spatial<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> Yes<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/coverage" target="_blank">Coverage</a> (Spatial)</p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================GENRE============================ -->
<tr>
<td valign="top"><a name="Genre"></a>
<p style="text-align: center;"><strong>Genre</strong></p>
</td>
<td valign="top">
<p>"The material or physical carrier of the resource." (<a href="http://purl.org/dc/terms/medium" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Genre should be expressed as an authorized term from the <a href="http://www.getty.edu/research/tools/vocabularies/aat/index.html" target="_blank">Getty Art & Architecture Thesaurus (AAT)</a>.</p>
<p>Use the capitalization of the source vocabulary; pay close attention to terms that are pluralized.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>color photographs</li>
<li>letters (correspondence)</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Format-Medium<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/medium" target="_blank">Medium</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd655.html" target="_blank">655 #7 $a</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================LANGUAGE========================= -->
<tr>
<td valign="top"><a name="Language"></a>
<p style="text-align: center;"><strong>Language</strong></p>
</td>
<td valign="top">
<p>"A language of the intellectual content of the resource." (<a href="http://purl.org/dc/elements/1.1/language" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Language expressed as a term from the <a href="http://www.loc.gov/standards/iso639-2/php/code_list.php" target="_blank">ISO 639.2 Language Code List</a>. Use term in the "English name of Language" column.</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>English; Spanish</li>
<li>French</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Language<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/language" target="_blank">Language</a></p>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================LANGUAGECODE===================== -->
<tr>
<td valign="top"><a name="LanguageCode"></a>
<p style="text-align: center;"><strong>Language Code<br />(ISO 639.2)</strong></p>
</td>
<td valign="top">
<p>"A language of the intellectual content of the resource. Recommended best practice for the values of the Language element is defined by RFC 3066 which, in conjunction with ISO 639, defines two- and three-letter primary language tags with optional subtags." (<a href="http://purl.org/dc/elements/1.1/language" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Language expressed as a three letter code from the <a href="http://www.loc.gov/standards/iso639-2/php/code_list.php" target="_blank">ISO 639.2 Language Code List</a>. Use Bibliographic (B) code when applicable.</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>eng; spa</li>
<li>fre</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Language<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> Yes<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/language" target="_blank">Language</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd008.html" target="_blank">008</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd041.html" target="_blank">041 0#</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================PHYSICALDESCRIPTION============== -->
<tr>
<td valign="top"><a name="PhysicalDescription"></a>
<p style="text-align: center;"><strong>Physical Description</strong></p>
</td>
<td valign="top">
<p>"The physical manifestation of the resource." (<a href="http://purl.org/dc/terms/medium" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Values for Physical Description will be supplied by repository or catalog record.</p>
<p>For items with catalog records, use value in the MARC 340 field.</p>
<p>For archival collections: Number of objects (expressed as a digit) + (if applicable) [description of object unit] + (if applicable) [type of marking on object] + format of object + (if applicable) ", front and back"</p>
<p>Separate multiple entries with a semicolon followed by a space. Objects with multiple pieces, such as letters with envelopes, should be separated with a semicolon.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Wool and silk with gold and silver threads</li>
<li>1 page handwritten letter, front and back; 1 envelope</li>
<li>1 black-and-white photograph</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Format-Medium<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/medium" target="_blank">Medium</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd340.html" target="_blank">340</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================TYPE============================= -->
<tr>
<td valign="top"><a name="Type"></a>
<p style="text-align: center;"><strong>Type (DCMI)</strong></p>
</td>
<td valign="top">
<p>"The nature or genre of the content of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Recommended best practice is to select a value from a controlled vocabulary (for example, the DCMIType vocabulary)." (<a href="http://purl.org/dc/elements/1.1/type" target="_blank">DCMI</a>)</p>
<p>To describe the physical manifestation of the resource, use the <a href="#PhysicalDescription">Physical Description</a> and <a href="#Genre">Genre</a> fields.</p>
<p>To describe the digital manifestation of the resource, use the <a href="#Format">Format (IMT)</a> field.</p>
</td>
<td valign="top">
<p>Choose a UHDL Type Value (see below) from the <a href="http://dublincore.org/documents/2012/06/14/dcmi-terms/?v=dcmitype#H7" target="_blank">DCMI Type List</a>.</p>
<p><strong>UHDL Type Values:</strong></p>
<ul>
<li>Image</li>
<li>Still Image</li>
<li>Moving Image</li>
<li>Sound</li>
<li>Text</li>
</ul>
<p>Separate multiple entries with a semicolon followed by a space.</p>
</td>
<td valign="top">
<p><em>DC Map:</em> Type<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/type" target="_blank">Type</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================FORMAT=========================== -->
<tr>
<td valign="top"><a name="Format"></a>
<p style="text-align: center;"><strong>Format (IMT)</strong></p>
</td>
<td valign="top">
<p>"The...digital manifestation of the resource.... Format may be used to determine the software, hardware or other equipment needed to display or operate the resource. Recommended best practice is to select a value from a controlled vocabulary." (<a href="http://purl.org/dc/elements/1.1/format" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Format should be expressed as an authorized term from the <a href="http://www.iana.org/assignments/media-types" target="_blank">Internet Media Types (IMT)</a> controlled vocabulary:</p>
<p>[IMT Content Type]/[IMT Subtype]</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>application/pdf</li>
<li>audio/mp3</li>
<li>image/jpeg</li>
<li>image/tiff</li>
<li>video/quicktime</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Format<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> Yes-shared</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/format" target="_blank">Format</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================ORIGINALITEMEXTENT=============== -->
<tr>
<td valign="top"><a name="OriginalItemExtent"></a>
<p style="text-align: center;"><strong>Original Item Extent</strong></p>
</td>
<td valign="top">
<p>"The dimensions of the resource, including size and duration." (<a href="http://purl.org/dc/terms/extent" target="_blank">DCMI</a>)</p>
</td>
<td valign="top">
<p>Values for Original Item Extent will be supplied by repository or catalog record.</p>
<p>Value for Original Item Extent that is born digital may have information embedded in the original file.</p>
<p>Separate multiple entries with a semicolon followed by a space.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>24 x 19.5 cm.</li>
<li>02:23:00</li>
<li>2.18 MB</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Format-Extent<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> No</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/extent" target="_blank">Extent</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd300.html" target="_blank">300 $a, $b, $c</a></p>
</td>
</tr>
<tr style="background-color: #c1c1c1;">
<td colspan="5" valign="top" width="920">
<h5>Administrative Metadata</h5>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================ORIGINALITEMLOCATION============= -->
<tr>
<td valign="top"><a name="OriginalItemLocation"></a>
<p style="text-align: center;"><strong>Original Item Location</strong></p>
</td>
<td valign="top">
<p>"A Reference to a resource from which the present resource is derived." (<a href="http://purl.org/dc/elements/1.1/source" target="_blank">DCMI</a>)</p>
<p>"Original object which the digital surrogate represents." (<a href="http://www.mwdl.org/docs/MWDL_DC_Profile_Version_2.0.pdf" target="_blank">MWDL</a>)</p>
<p>"The source element should <strong>not</strong> be used for the names of persons who donated an original item, the names of institutions or repositories where the original item is house, or the like. Instead, the source element indicates a one-to-one relationship between two information resources, one being the analog original from which the digital reproduction was created." (Miller, <em>Metadata for Digital Collections</em>, 123)</p>
</td>
<td valign="top">
<p>Values for Original Item Location will be supplied by repository, catalog record, or finding aid.</p>
<p>Call number provided in catalog record; Accession number, Box number, and folder number provided in finding aid; Accession number, file name provided in finding aid.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>NA3055 .H64 1935</li>
<li>ID 2006-010, Box 6, Folder 55</li>
<li>ID 2010-007, 2010_007_00034.jpg</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Source<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/source" target="_blank">Source</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd050.html" target="_blank">050</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd090.html" target="_blank">090</a><br /><a href="http://www.loc.gov/marc/bibliographic/concise/bd099.html" target="_blank">099</a></p>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================ORIGINALITEMURL================== -->
<tr>
<td valign="top"><a name="OriginalItemURL"></a>
<p style="text-align: center;"><strong>Original Item URL</strong></p>
</td>
<td valign="top">
<p>URL used to reference original item.</p>
</td>
<td valign="top">
<p>Original Item URL</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li><a href="http://library.uh.edu/record=b3917736~S11" target="_blank">http://library.uh.edu/record=b3917736~S11</a></li>
<li><a href="http://library.uh.edu/record=b3588811~S11" target="_blank">http://library.uh.edu/record=b3588811~S11</a></li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Source<br /><em>Data Type:</em> Text<br /><em>Search:</em> No<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/elements/1.1/source" target="_blank">Source</a></p>
</td>
</tr>
<tr style="background-color: #f1f1f1;">
<td colspan="5" width="920">
<h6 align="center">↑ <a href="#Top">Top of Page</a> ↑</h6>
</td>
</tr>
<!-- ==================================================================================== -->
<!-- ===================================================ORIGINALCOLLECTION============== -->
<tr>
<td valign="top"><a name="OriginalCollection"></a>
<p style="text-align: center;"><strong>Original Collection</strong></p>
</td>
<td valign="top">
<p>Name of the original physical collection in which the digital object is a part of.</p>
</td>
<td valign="top">
<p>Name of original collection provided in catalog record or finding aid.</p>
<hr />
<p style="text-align: center;"><em>EXAMPLES</em></p>
<ul>
<li>Joseph S. Cullinan Papers</li>
<li>UH Frontier Fiesta Collection</li>
</ul>
</td>
<td valign="top">
<p><em>DC Map:</em> Relation-IsPartOf<br /><em>Data Type:</em> Text<br /><em>Search:</em> Yes<br /><em>Hide:</em> No<br /><em>Required:</em> No<br /><em>Vocab:</em> No</p>
<p><em>Required in UHDL Field Template:</em> Yes</p>
</td>
<td valign="top">
<p><strong>DC:</strong> <a href="http://purl.org/dc/terms/isPartOf" target="_blank">Is Part Of</a><br /><strong>MARC:</strong><br /><a href="http://www.loc.gov/marc/bibliographic/bd76x78x.html" target="_blank">77x</a><br /><a href="http://www.loc.gov/marc/bibliographic/bd76x78x.html" target="_blank">78x</a></p>
</td>