BookModel

This descriptor specifies the metadata and the content for a book.

A book is defined by a collection of chapters, a chapter by a collection of sections and a section by a file.

An XSD is available at:

<book>
  <id/>
  <title/>
  <author/>
  <date/>
  <chapters>
    <chapter>
      <id/>
      <title/>
      <sections>
        <section>
          <id/>
          <title/>
          <file/>
        </section>
      </sections>
    </chapter>
  </chapters>
</book>

book

Describes the book layout and packaging.

Element Type Description
id String Specifies the id of this book. This is a symbolic name for a particular book from this project.
title String Specifies the title of this book.
author String Specifies the author of this book.
date String Specifies the date of this book.
chapters/chapter* List<Chapter> (Many) Specifies a collection of chapters.

chapter

No description.

Element Type Description
id String Specifies the id of this chapter. This is a symbolic name for a particular chapter.
title String Specifies the title of this chapter.
sections/section* List<Section> (Many) Specifies a collection of sections.

section

No description.

Element Type Description
id String Specifies the id of this section. This is a symbolic name for a particular section.
title String Specifies the title of this section.
file String Specifies the file of this section.