Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Name

Datum

Date

Beschreibung

Unter <creation>: Erstellungsdatum der EAD-Datei.

Unter <c><odd><p>: Weitere Erschließungsangaben in Datumsform (z.B. Geburtsdatum). Hier wird die Art der Datumsangabe (z.B. Geburtsdatum) in <head>geschrieben, nur das <date>-Element in <p>. Kann bei Elementen aller Verzeichnungsebenen genutzt werden.

Wird verwendet innerhalb von

<creation>

<c><odd><p>

Verwendung

1/1

Werte

 Datum als Freitext, zusätzlich wird das normierte Datum nach ISO 8601 (JJJJ-MM-TT) ins Attribut normal geschrieben.

Elemente verpflichtend

-

Elemente optional

-

Attribute verpflichtend

normal

Attribute optional

-

Beispiel

Code Block
languagexml
titleBeispiel in <creation>
linenumberstrue
<ead xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:isbn:1-931666-22-9  "
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xsi:schemaLocation="urn:isbn:1-931666-22-9   http://www.loc.gov/ead/ead.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/xlink/xlink.xsd"
    audience="external">
  
	<eadheader>
        <eadid>
			<!-- (...) -->			
		</eadid>
        <filedesc>
			<!-- (...) -->			
        </filedesc>
        <profiledesc>
            <creation>
                <date normal="2019-01-29">Erstellungsdatum des Findbuchs</date>
            </creation>
        </profiledesc>
    </eadheader>
  
    <archdesc>
		<!-- (...) -->
	</archdesc>
</ead>
Code Block
languagexml
titleBeispiel in <c> → <odd> → <p>
linenumberstrue
<ead xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:isbn:1-931666-22-9 "
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xsi:schemaLocation="urn:isbn:1-931666-22-9  http://www.loc.gov/ead/ead.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/xlink/xlink.xsd"
    audience="external">
 
    <!-- (...) -->
 
    <archdesc level="collection" type="Findbuch">
 
        <!-- (...) -->
 
        <dsc>

            <c level="collection" id="Identifier_des_Findbuchs">
                <did>
                    <!-- (...) -->                  
                </did>
                <scopecontent encodinganalog="Einleitung">
                    <!-- (...) -->
                </scopecontent>
                <relatedmaterial>
                    <!-- (...) -->
                </relatedmaterial>
                <accessrestrict>
                    <!-- (...) -->
                </accessrestrict>
                <odd>
                    <!-- (...) -->
                </odd>
                <index>
                    <!-- (...) -->
                </index>
                <c level="class" id="Identifier_der_Rubrik">
                    <did>
                   		<!-- (...) -->
                    </did>
                    <otherfindaid>
                        <!-- (...) -->
                    </otherfindaid>
                    <accessrestrict>
                        <!-- (...) -->
                    </accessrestrict>
                    <userestrict>
                        <!-- (...) -->
                    </userestrict>
 
                    <odd>
                    	<head>Sonstige Erschließungsangaben in Datumform Überschrift (z.B.: Geburtsdatum)</head>
                    	<p>
							<date normal="1901-01-01">Datum</date>
						</p>
                    </odd>
 
                    <index>
                        <!-- (...) -->
                    </index>

                    <c level="series" id="Identifier_der_Serie">
                        <did>
                            <!-- hier sind alle Elemente der class-Ebene wiederverwendbar -->
                        </did>
                        <c level="file" id="Identifier_der_Titelaufnahme">
                            <did>
                                <!-- (...) -->
                            </did>
                            <otherfindaid>
                                <!-- (...) -->
                            </otherfindaid>
                            <accessrestrict>
                                <!-- (...) -->
                            </accessrestrict>
                            <userestrict>
                                <!-- (...) -->
                            </userestrict>
                            <odd>
                    			<head>Sonstige Erschließungsangaben in Datumform Überschrift (z.B.: Geburtsdatum)</head>
                    			<p>
									<date normal="1901-01-01">Datum</date>
								</p>
                            </odd>
                            <daogrp id="Identifier_des_Digitalisats">
                                <!-- (...) -->
                            </daogrp>
                            <index>
                                <!-- (...) -->
                            </index>
                            <c level="item" id="Identifier_des_Vorgangs">
                            	<!-- hier sind alle Elemente der file-Ebene wiederverwendbar -->
							</c>
                        </c>
                    </c>
                </c>
            </c>
        </dsc>
    </archdesc>
</ead>