Versions Compared

Key

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

Name

Adresse

Address

Beschreibung

<address> ist ein Hüllenelement, das heißt, die Adresse des Archivs wird nicht direkt in dieses Element, sondern in <addressline> geschrieben.

<address> wird sowohl in der Tektonik-EAD als auch in der Findbuch-EAD genutzt.

In <address> bzw. in den untergeordneten Elementen wird die Adresse des Archivs angegeben.

Wird verwendet innerhalb von

<repository>

Verwendung

0/1

Werte

 -

Elemente verpflichtend

<addressline>

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>