Document
A model for documents.
Allowed parameters
| id | str | The unique id of the document |
| title | str | The document title |
| ISBN | int | International Standard Book Number |
Allowed children
| sections | Section | The sections of the document |
Section
A model of a section of the Document. Will contain one Paragraph or more, i.e the Paragraph(s) in the section, probably related to the title of the Document <#document>_.
Allowed parameters
| id | str | The id of the section |
Allowed children
| paragraphs | Paragraph | The paragraphs |
Paragraph
A model of a paragraph.
Allowed parameters
| contents | str | Paragraph contents, which make up the Sections. |