Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Codeblock
languagexml
titleMETS / PREMIS - CC BY-NC-SA 3.0 DEAccess-Status
<mets:rightsMD>
	<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
		<mets:xmlData><pre:rightsStatement>
			<pre:rightsBasis>other</pre:rightsBasis>
				<pre:otherRightsInformation> 
					<pre:otherRightsBasis>OA-Status</pre:otherRightsBasis>                        
					<pre:otherRightsDocumentationIdentifier>
						<pre:otherRightsDocumentationIdentifierValue>http://purl.org/eprint/accessRights/OpenAccess</pre:otherRightsDocumentationIdentifierValue>
						<pre:otherRightsDocumentationIdentifierType>Eprints AccessRights Vocabulary EncodingScheme</pre:otherRightsDocumentationIdentifierType>
					</pre:otherRightsDocumentationIdentifier>
					<pre:otherRightsNote>Freely available on the public Internet</pre:otherRightsNote>
				</pre:otherRightsInformation>
			</pre:rightsStatement>
		</mets:xmlData>
	</mets:mdWrap>
</mets:rightsMD>

...

Folgendes offizielles Beispiel zeigt die Integration von PREMIS in <amdSec> von METS. Es ist möglich, PREMIS-Informationen in unterschiedlichen <amdSec>-Bereichen zu speichern, wie Rechteinformationen in <rightsMD>.

Codeblock
languagexml
...
<mets:amdSec ID="amdSec_1">
	<mets:techMD ID="techMD_1" ADMID="amdSec_2">
		<mets:mdWrap MDTYPE="PREMIS:OBJECT">
			<mets:xmlData><premis:object xsi:type="premis:file" xsi:schemaLocation="http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd" version="3.0">
				...
			</premis:object>
		</mets:xmlData>
	</mets:mdWrap>
</mets:techMD>
...
<mets:amdSec ID="amdSec_8">
	<mets:rightsMD ID="rights_1">
		<mets:mdWrap MDTYPE="PREMIS:RIGHTS">
			<mets:xmlData><premis:rights xsi:schemaLocation="http://www.loc.gov/premis/v3 http://www.loc.gov/standards/premis/v3/premis.xsd" version="3.0">
				<premis:rightsStatement>
					...
				</premis:rightsStatement>
			</premis:rights>
		</mets:xmlData>
	</mets:mdWrap>
</mets:rightsMD>
...

...