...
Sidecar (xpath) | Profile | Description | Format | |
---|---|---|---|---|
title | Title | The title of the file | ||
description | Description | Description about the file | ||
md5 | Md5 | The MD5 checksum of the submitted file. If it mismatches with the calculated MD5 checksum during ingest, the file is rejected. | ||
keywords/keyword | Keywords | Series of categories about the file | MultiItem | |
MDProperties/CreationDate | CreationDate | The date and time the file was originally created | EXIF | |
MDProperties/rights_owner | RightsOwner | RightsOwner | The name of the (copyright) owner of the file | |
MDProperties/Publisher | Publisher | Publisher of the file | ||
MDProperties/categoriesCategories/categoryCategory | Categories | Series of keywords about the file | MultiItem | |
MDProperties/Authors/auteurAuthor | Authors | Series of authors of the file | MultItem | |
MDProperties/<any-tag> | <any-tag> | The user can provide his or her own custom tags as children of the tag Namespaced tags are not allowed It is forbidden to use MediaHaven reserved tags names inside |
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<?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> |
...