I initially wrote this in an e-mail to the support team, but then found this online community and thought it would be a better fit here.
I work for an academic publisher that publishes books and journals, including a number of book series. Several of our book series have subseries, and volumes in some of these are numbered in both the main series and the subseries. To give an example, the series Carsten Niebuhr Institute Publications (CNIP) contains the subseries The Carlsberg Papyri (CP), and all volumes in the latter are also numbered in the former; the most recent volume, for example, is simultaneously vol. 48 in CNIP and vol. 18 in CP.
Looking through the documentation for metadata submission via XML, I cannot find any information on how the XML structure should be for books that belong to multiple book series like this.
If Iām understanding the schema documentation correctly, <book_series_metadata>
requires exactly one <series_metadata>
child element, and the <volume>
and <issue>
elements are direct children of the <book_series_metadata>
with no relation to the <series_metadata>
element (to which they are sibling elements).
The logical XML structure for a book belonging to one or more book series would to me be something like this (simplified):
<book type="edited_book">
<series>
<book_series_metadata>
<contributors>
[Editors of Series A here]
</contributors>
<titles>
<title>[Series A title here]</title>
</titles>
<issn>[Series A ISSN here]</issn>
</book_series_metadata>
<volume>[Volume no. in Series A]</volume>
<issue>[Issue no. in Series A]</issue>
</series>
<series>
<book_series_metadata>
<contributors>
[Editors of Series B here]
</contributors>
<titles>
<title>[Series B title here]</title>
</titles>
<issn>[Series B ISSN here]</issn>
</book_series_metadata>
<volume>[Volume no. in Series B]</volume>
<issue>[Issue no. in Series B]</issue>
</series>
<book_metadata>
[Book-level metadata here]
</book_metadata>
</book>
ā but this is significantly different from the actual schema, where the book metadata is given in the <book_series_metadata>
element, and the book series metadata (excluding volume and issue number) is nested inside a <series_metadata>
element, for reasons I admit I do not understand at all.
If my understanding of the XML structure is correct, how can we handle a case such as the one mentioned here, which would require two <series_metadata>
elements and a relationship between the metadata of each series and the corresponding volume/issue number? Is it just not possible at all? Surely this cannot be the first time the fairly common practice of multiple series affiliation has popped up?