<bookmeta>

The <bookmeta> element contains metadata about the book, such as information related to publishing, copyright details, and book identification.

Specialization hierarchy

The <bookmeta> element is specialized from <topicmeta>. It is defined in the bookmap module.

Content model

( <titlealt> | <navtitle> | <searchtitle> | <linktitle> | <subtitle> | <titlehint> )*, <shortdesc> ?, <author> *, <source> ?, <publisherinformation> *, <critdates> ?, <permissions> ?, ( <metadata> | <change-historylist> )*, <audience> *, <category> *, <keywords> *, <prodinfo> *, <othermeta> *, <resourceid> *, <ux-window> *, <bookid> ?, <bookchangehistory> *, <bookrights> *, ( <data> | <sort-as> )*

In order
  1. Zero or more
    • <linktitle>
    • <navtitle>
    • <searchtitle>
    • <subtitle>
    • <titlealt>
    • <titlehint>
  2. Optional <shortdesc>
  3. Zero or more <author>
  4. Optional <source>
  5. Zero or more <publisherinformation>
  6. Optional <critdates>
  7. Optional <permissions>
  8. Zero or more
  9. Zero or more <audience>
  10. Zero or more <category>
  11. Zero or more <keywords>
  12. Zero or more <prodinfo>
  13. Zero or more <othermeta>
  14. Zero or more <resourceid>
  15. Zero or more <ux-window>
  16. Optional <bookid>
  17. Zero or more <bookchangehistory>
  18. Zero or more <bookrights>
  19. Zero or more
    • <data>
    • <sort-as>

Attributes

The following attributes are available on this element: universal attributes.

The following attributes are available on this element: universal attributes.

Example

This section is non-normative.

The following code sample shows how the <bookmeta> element can be used to specify publishing details, book identification details, and copyright details.

<bookmeta>
  <publisherinformation>
      <organization>NY Publishing</organization>
      <printlocation>United States of America</printlocation>
      <published>
        <publishtype value="general"/>
        <revisionid>2</revisionid>
        <started><month>01</month><year>2020</year></started>
        <completed><month>02</month><year>2023</year></completed>
      </published>
  </publisherinformation>
   <bookid>
    <bookpartno>99F1234</bookpartno>
    <edition>Second</edition>
    <isbn>123-0-456-12345-1</isbn>
    <booknumber>SC21-1234-00</booknumber>
    <volume>2</volume>
    <maintainer>
      <person>John Smith</person>
    </maintainer>
  </bookid>
  <bookchangehistory>
    <reviewed>
      <person>Jack</person>
       <revisionid>1</revisionid>
      <completed><day>31</day><month>07</month><year>2022</year></completed>
    </reviewed>
    <edited>
      <organization>XYZ Editing</organization>
      <completed><day>18</day><month>01</month><year>2023</year></completed>
    </edited>
    <approved>
      <organization>OASIS</organization>
    </approved>
    <bookevent>
      <bookeventtype name="indexed"/>
      <completed><month>09</month><year>2022</year></completed>
    </bookevent>
  </bookchangehistory>
  <bookrights>
    <copyrfirst><year>2020</year></copyrfirst>
    <copyrlast><year>2023</year></copyrlast>
    <bookowner><organization>OASIS</organization></bookowner>
    <bookrestriction value="unclassified"/>
  </bookrights>
</bookmeta>