Versions Compared

Key

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

Name

Adresszeile

Addressline

Beschreibung

<addressline> als Unterelement von <address> sowohl in der Tektonik-EAD als auch in der Findbuch-EAD genutzt.

Adresse des Archivs, in einzelne Zeilen aufgeteilt: Name, Straße, PLZ Ort, etc.

Die Adresse sollte auch die E-Mail-Adresse des Archivs enthalten.

Wird verwendet innerhalb von

<address>

Verwendung

1/*

Werte

Freitext, E-Mail-Adresse

Elemente verpflichtend

 -

Elemente optional

 -

Attribute verpflichtend

 -

Attribute optional

 -

Beispiel

Code Block
languagexml
titleTektonik-EAD
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="Tektonik">
   
        <!-- (...) -->
   
        <dsc>
 
             <c level="collection" id="Identifier_der_Archivtektonik">
                <did>
                    <repository>
                        <corpname>
                 		   <!-- (...) -->                        
						</corpname>
                        <address>
                            <addressline>Adresse des Archivs + Email</addressline>
                        </address>
                        <extref>
		                    <!-- (...) -->
						</extref>
                    </repository>
                    <unittitle>
		                <!-- (...) -->
					</unittitle>
                </did>
                <userestrict>
                    <!-- (...) -->
                </userestrict>
                <otherfindaid>
                    <!-- (...) -->
                </otherfindaid>
                <c level="class" id="Identifier_der_Klassifikation">
                    <!-- (...) -->
                </c>
            </c>
        </dsc>
    </archdesc>
</ead>
Code Block
languagexml
titleFindbuch-EAD
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="Tektonik">
   
        <!-- (...) -->
   
        <dsc>
             
            <c level="collection" id="Identifier_des_Findbuchs">
                <did>
                    <repository>
                        <corpname>
                 		   <!-- (...) -->                        
						</corpname>
                        <address>
                            <addressline>Adresse des Archivs + Email</addressline>
                        </address>
                        <extref>
		                    <!-- (...) -->
						</extref>
                    </repository>
                    <unittitle>
		                <!-- (...) -->
					</unittitle>
                </did>
                <userestrict>
                    <!-- (...) -->
                </userestrict>
                <otherfindaid>
                    <!-- (...) -->
                </otherfindaid>
                <c level="class" id="Identifier_der_Klassifikation">
                    <!-- (...) -->
                </c>
            </c>
        </dsc>
    </archdesc>
</ead>