SciJoIn XML Documentation

SciJoin's Schema XML Documentation is very simple, as is the entire indexing process. The elements required in this first version are:
  • head > journal, issn
  • article > title, year, volume, issue, abstract, language, resource, doi,
    • authors > author

Below is the basic scheme to be adopted when importing and registering articles in the SciJoIn database.

To access Schema XML (xsd), click here. to download the XML template, go here.

    
This schema determines allowable xml file formats for upload into the SciJoIn database.
    This schema is based in DOAJ Schema v1.3 and CrossRef v4.3.6
    History:
    Version 1.0 - 2023/09/17
    Version 1.0.1 - 2024/04/29 -  Add Keywords item
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="articles">
      <xs:complexType>
        <xs:sequence>
          <xs:element name="head">
            <xs:complexType>
              <xs:sequence>
                <xs:element name="journal" type="xs:string" />
                <xs:element name="issn" type="xs:string" />
              </xs:sequence>
            </xs:complexType>
          </xs:element>
          <xs:element maxOccurs="unbounded" name="article">
            <xs:complexType>
              <xs:sequence>
                <xs:element name="title" type="xs:string" />
                <xs:element name="year" type="xs:unsignedShort" />
                <xs:element minOccurs="0" name="volume" type="xs:unsignedByte" />
                <xs:element minOccurs="0" name="issue" />
                <xs:element name="authors">
                  <xs:complexType>
                    <xs:sequence>
                      <xs:element maxOccurs="unbounded" name="author" type="xs:string" />
                    </xs:sequence>
                  </xs:complexType>
                </xs:element>
                <xs:element name="keywords">
                  <xs:complexType>
                    <xs:sequence>
                      <xs:element maxOccurs="unbounded" name="keyword" type="xs:string" />
                    </xs:sequence>
                  </xs:complexType>
                </xs:element>
                <xs:element name="abstract" type="xs:string" />
                <xs:element name="language" type="xs:string" />
                <xs:element name="resource" type="xs:string" />
                <xs:element name="doi" type="xs:string" />
              </xs:sequence>
            </xs:complexType>
          </xs:element>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
  </xs:schema>
Example of an article record to be indexed in SciJoIn:

<article>
	<title>New Records of Ground Beetles Genera (Coleoptera: Carabidae: Scaritinae: Clivinini) from Brazilian Caves</title>
	<year>2023</year>
	<authors>
		<author>Daniela Hoyos-Benjumea</author>
		<author>Tamires Zepon</author>
		<author>Maria Elina Bichuette</author>
		<author>Letícia Vieira</author>
	</authors>
        <keywords>
           <keyword>Ardistomina</keyword>
           <keyword>Clivinina</keyword>
           <keyword>Cave-dwelling species</keyword>
           <keyword>Forcipatorina</keyword>
           <keyword>Reicheiina</keyword>
        </keywords>
	<abstract>The occurrence of the genera Aspidoglossa Putzeys, 1846, Paraclivina Kult, 1947, Oxydrepanus Putzeys, 1867, Pyramoides Bousquet, 2002, Semiardistomis Kult, 1950, Semiclivina Kult, 1947, Stratiotes Putzeys, 1846, and Whiteheadiana Perrault, 1994 is recorded for the first time for Brazilian caves. The specimens are deposited at the zoological collection of the Laboratório de Estudos Subterrâneos at Universidade Federal de São Carlos (LES) and are stored dipped in ethanol. A map and photographs of specimens of the genera are provided, as well as the specific records of their geographical distribution in caves.</abstract>
	<language>English</language>
	<resource>https://www.entomobrasilis.org/index.php/ebras/article/view/e1030</resource>
	<doi>10.12741/ebrasilis.v16.e1030</doi>
</article>