Versionen im Vergleich

Schlüssel

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

...

Beispiel: CC BY-NC-SA 3.0 DE

...

languagexml
titleMETS / PREMIS - CC BY-NC-SA 3.0 DE

...

 

...

Quelle: https://docs.google.com/spreadsheets/d/1bFU9RzfNVBaV0sViKEinMVqrB4x9cU5K-9z77HJIS1M/edit#gid=1009553265

 

Beispiel:

...

Codeblock
languagexml
titleMETS / PREMIS - Access-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>

Quelle: https://docs.google.com/spreadsheets/d/1bFU9RzfNVBaV0sViKEinMVqrB4x9cU5K-9z77HJIS1M/edit#gid=1009553265

Beispiel: Integration METS

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">amdSec>
	<mets:techMD ID="techMD_1" ADMID="amdSec_2">
		<mets:mdWrap MDTYPE="PREMIS:OBJECT">
			<mets:xmlData><premisxmlData>
				<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>
...
<mets:amdSec ID="amdSec_8">
	<mets:rightsMD ID="rights_1">
		<mets:mdWrap MDTYPE="PREMIS:RIGHTS">
			<mets:xmlData><premisxmlData>
				<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>
<mets:amdSec>
...

Quelle: https://www.loc.gov/standards/premis/v3/sample-records/PREMIS%203%20in%20METS_example%201.xml

...