<custom-meta-group>

Custom Metadata Group

Container element for metadata not otherwise defined in the Tag Suite.

Related Elements

The element <custom-meta-group> is a grouping element that holds one or more <custom-meta> elements. Each <custom-meta> element contains a name/value pair, <meta-name> and <meta-value> respectively, which name and provide a value for a single metadata field.

Attributes

Content Model

<!ELEMENT  custom-meta-group
                        %custom-meta-group-model;                    >

Expanded Content Model

(custom-meta)+

Description

This element may be contained in:

Example 1

Recording a CrossMark identifier:
...
<book-part-meta>...
<counts>
<book-page-count count="1"/>
</counts>
<custom-meta-group>
<custom-meta>
<meta-name>crossmark</meta-name>
<meta-value>2013-02-15T11:32:17</meta-value>
</custom-meta>
</custom-meta-group>
</book-part-meta>
...

Example 2

Recording additional information about the book, such as price, acid-free for print, and facts about the included CDs:
    ...
<book-meta>...
<custom-meta-group>
<custom-meta>
<meta-name>acidfree</meta-name>
<meta-value>yes</meta-value>
</custom-meta>
<custom-meta>
<meta-name>price</meta-name>
<meta-value>US $28.50</meta-value>
</custom-meta>
<custom-meta>
<meta-name>miscinfo</meta-name>
<meta-value>CDs included, Windows XP required; 1GB processor,
512 MB RAM recommended</meta-value>
</custom-meta>
</custom-meta-group>
...</book-meta>
...