Versions Compared

Key

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

...

Rights_Owner
Sidecar (xpath)ProfileDescriptionFormat
titleTitleThe title of the file
descriptionDescriptionDescription about the file
md5Md5The MD5 checksum of the submitted file. If it mismatches with the calculated MD5 checksum during ingest, the file is rejected.
keywords/keywordKeywordsSeries of categories about the fileMultiItem
MDProperties/CreationDateCreationDateThe date and time the file was originally createdEXIF
MDProperties/rights_ownerRightsOwnerRightsOwnerThe name of the (copyright) owner of the file
MDProperties/PublisherPublisherPublisher of the file
MDProperties/categoriesCategories/categoryCategoryCategories
Series of keywords about the fileMultiItem
MDProperties/Authors/auteurAuthor
AuthorsSeries of authors of the fileMultItem
MDProperties/<any-tag><any-tag>

The user can provide his or her own custom tags as children of the tag MDProperties.

(warning) Namespaced tags are not allowed

(warning) It is forbidden to use MediaHaven reserved tags names inside MDProperties. The reserved fields include the following tags: type, title, description. The full list of the reserved fields in MediaHaven: Metadata Fields.


...

Code Block
languagexml
titleMediaHAVEN_external_metadata
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="UTF-8"?>
<MediaHAVEN_external_metadata name="example" version="1.0">
	<title>provided title</title>
    <description>provided description</description>
	<keywords>
    	<keyword>k1</keyword>
		<keyword>k2</keyword>
		<keyword>k3</keyword>
	</keywords>
	<md5>58e6cd8c4df7132f6ea146c4828fbd96</md5>	
    <MDProperties>		
        <Authors type="list">
            <auteur>Name<Author>Name of the author 1</auteur>Author>
            <auteur>Name<Author>Name of the author 2</auteur>Author>
        </Authors>
        <CreationDate>2012:11:10 13:14:15</CreationDate>
        <Categories type="list">
            <category>x<<Category>x</category>Category>
            <category>y<<Category>y</category>Category>
            <category>z<<Category>z</category>Category>
        </Categories>
        <Publisher>My <publisher><publisher</publisher>Publisher>
 
		<!-- Customer extra metadata fields -->
        <intellectualEntity_localID>nieuws 19-09-94a</intellectualEntity_localID>
        <rights_RightsHolder>nieuws 19-09-94a</rights_RightsHolder>        
    </MDProperties>
</MediaHAVEN_external_metadata>

...