(iss, italian national institute of...

16
Versione 1.1 1 Istituto Superiore di Sanità (ISS, Italian National Institute of Health) Data format to submit items to DSpace ISS digital repository (release 1.1) General remarks The format for representing data to be transferred to DSpace ISS repository has to be an XML file, compliant to the technical specifications reported by the scheme below. Files no compliant with the following rules will be discarded. XML File An XML file is a document which offers data encoded according to the Extensible Markup Language (XML) 1.0 (http://www.w3.org/XML/) formatting conventions and to the scheme dspaceiss.xsd (release 1.1) available at: http://dspace.iss.it/XMLSchema/1.1/dspaceiss.xsd . XML Scheme The scheme file currently in use is dspaceiss.xsd (release 1.1). It displays the content and stucture of the XSD file and is available for download on DSpace ISS website. <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns="http://dspace.iss.it/dspace/XMLSchema/1.1" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://dspace.iss.it/dspace/XMLSchema/1.1" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.1"> <xs:element name="documenti"> <xs:complexType> <xs:sequence> <xs:element ref="documento" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="documento” type=“documentoType"/> <xs:complexType name="documentoType"> <xs:sequence> <xs:element ref="titolo"/> <xs:element ref="citazione"/> <xs:element ref="chiaveinterna"/> <xs:element ref="datapubblicazione"/> <xs:element ref="pubblicazione"/>

Upload: vantu

Post on 14-Feb-2019

219 views

Category:

Documents


0 download

TRANSCRIPT

Versione 1.1 1

Istituto Superiore di Sanità (ISS, Italian National Institute of Health)

Data format to submit items to DSpace ISS digital repository

(release 1.1)

General remarks The format for representing data to be transferred to DSpace ISS repository has to be an

XML file, compliant to the technical specifications reported by the scheme below. Files no

compliant with the following rules will be discarded.

XML File An XML file is a document which offers data encoded according to the Extensible Markup

Language (XML) 1.0 (http://www.w3.org/XML/) formatting conventions and to the scheme

dspaceiss.xsd (release 1.1) available at:

http://dspace.iss.it/XMLSchema/1.1/dspaceiss.xsd.

XML Scheme The scheme file currently in use is dspaceiss.xsd (release 1.1). It displays the content and

stucture of the XSD file and is available for download on DSpace ISS website.

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema

xmlns="http://dspace.iss.it/dspace/XMLSchema/1.1"

xmlns:xs="http://www.w3.org/2001/XMLSchema"

targetNamespace="http://dspace.iss.it/dspace/XMLSchema/1.1"

elementFormDefault="qualified"

attributeFormDefault="unqualified"

version="1.1">

<xs:element name="documenti">

<xs:complexType>

<xs:sequence>

<xs:element ref="documento" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

</xs:element>

<xs:element name="documento” type=“documentoType"/>

<xs:complexType name="documentoType">

<xs:sequence>

<xs:element ref="titolo"/>

<xs:element ref="citazione"/>

<xs:element ref="chiaveinterna"/>

<xs:element ref="datapubblicazione"/>

<xs:element ref="pubblicazione"/>

Versione 1.1 2

<xs:element ref="editore"/>

<xs:element ref="issn"/>

<xs:element ref="isbn"/>

<xs:element ref="uri"/>

<xs:element ref="url"/>

<xs:element ref="doi"/>

<xs:element ref="tipologia"/>

<xs:element ref="entiautore"/>

<xs:element ref="abstract"/>

<xs:element ref="files"/>

<xs:element ref="soggetti"/>

<xs:element ref="terminimesh"/>

<xs:element ref="autori"/>

<xs:element ref="curatori"/>

<xs:element ref="congresso"/>

<xs:element ref="classificazioni"/>

<xs:element ref="lingua"/>

</xs:sequence>

</xs:complexType>

<xs:element name="titolo” type=“titoloType"/>

<xs:simpleType name="titoloType">

<xs:restriction base="xs:string">

<xs:whiteSpace value="collapse"/>

<xs:minLength value="1"/>

<xs:maxLength value="500"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="citazione” type=“xs:string"/>

<xs:element name="chiaveinterna” type=“chiaveinternaType"/>

<xs:simpleType name="chiaveinternaType">

<xs:restriction base="xs:string">

<xs:maxLength value="50"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="datapubblicazione” type=“dataType"/>

<xs:complexType name="dataType">

<xs:sequence>

<xs:element ref="giorno"/>

<xs:element ref="mese"/>

<xs:element ref="anno"/>

</xs:sequence>

</xs:complexType>

<xs:element name="giorno” type=“giornoType" default="0"/>

<xs:simpleType name="giornoType">

<xs:restriction base="xs:byte">

<xs:maxInclusive value="31"/>

<xs:minInclusive value="0"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="mese” type=“meseType" default="0"/>

<xs:simpleType name="meseType">

<xs:restriction base="xs:byte">

<xs:maxInclusive value="12"/>

<xs:minInclusive value="0"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="anno” type=“annoType"/>

<xs:simpleType name="annoType">

<xs:restriction base="xs:gYear"/>

</xs:simpleType>

<xs:element name="pubblicazione” type=“pubblicazioneType"/>

<xs:simpleType name="pubblicazioneType">

Versione 1.1 3

<xs:restriction base="xs:string">

<xs:minLength value="1"/>

<xs:maxLength value="256"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="editore” type=“editoreType"/>

<xs:simpleType name="editoreType">

<xs:restriction base="xs:string">

<xs:minLength value="0"/>

<xs:maxLength value="256"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="issn” type=“issnType" default="0000-0000"/>

<xs:simpleType name="issnType">

<xs:restriction base="xs:string">

<xs:length value="9"/>

<xs:pattern value="[0-9]{4}\-[0-9]{3}([0-9]|X)"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="isbn” type=“isbnType" default="00-000-000-00"/>

<xs:simpleType name="isbnType">

<xs:restriction base="xs:string">

<xs:maxLength value="17"/>

<xs:minLength value="10"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="uri” type=“uriType"/>

<xs:element name="url” type=“uriType"/>

<xs:element name="doi” type=“uriType"/>

<xs:simpleType name="uriType">

<xs:restriction base="xs:anyURI">

<xs:maxLength value="256"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="tipologia” type=“tipologiaType"/>

<xs:simpleType name="tipologiaType">

<xs:restriction base="xs:token">

<xs:enumeration value="Abstract"/>

<xs:enumeration value="Article"/>

<xs:enumeration value="Book"/>

<xs:enumeration value="Book Chapter"/>

<xs:enumeration value="Conference Proceedings"/>

<xs:enumeration value="Conference Paper"/>

<xs:enumeration value="Edited Book"/>

<xs:enumeration value="Letter"/>

<xs:enumeration value="Technical Report"/>

<xs:enumeration value="Other"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="entiautore” type=“entiType"/>

<xs:complexType name="entiType">

<xs:sequence>

<xs:element ref="ente" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="ente” type=“enteType"/>

<xs:simpleType name="enteType">

<xs:restriction base="xs:string">

<xs:maxLength value="256"/>

<xs:minLength value="1"/>

</xs:restriction>

Versione 1.1 4

</xs:simpleType>

<xs:element name="abstract” type=“xs:string"/>

<xs:element name="files” type=“filesType"/>

<xs:complexType name="filesType">

<xs:sequence>

<xs:element ref="file" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="file” type=“fileType"/>

<xs:complexType name="fileType">

<xs:sequence>

<xs:element name="nome" default="na">

<xs:simpleType>

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

<xs:pattern value="(\w|-|_)[^(=|^|ç|@|§|$|£|°|%)]*"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

<xs:element name="formato" default="na">

<xs:simpleType>

<xs:restriction base="xs:token">

<xs:enumeration value="na"/>

<xs:enumeration value="pdf"/>

<xs:enumeration value="txt"/>

<xs:enumeration value="doc"/>

<xs:enumeration value="ppt"/>

<xs:enumeration value="xsl"/>

<xs:enumeration value="jpeg"/>

<xs:enumeration value="jpg"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

</xs:sequence>

</xs:complexType>

<xs:element name="terminimesh” type=“terminimeshType"/>

<xs:complexType name="terminimeshType">

<xs:sequence>

<xs:element ref="mesh" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="mesh” type=“parolechiaveType"/>

<xs:complexType name="parolechiaveType">

<xs:sequence>

<xs:element ref="valore" minOccurs="0"/>

<xs:element ref="lingua" minOccurs="0"/>

</xs:sequence>

</xs:complexType>

<xs:element name="valore” type=“valoreType"/>

<xs:simpleType name="valoreType">

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

</xs:restriction>

</xs:simpleType>

<xs:simpleType name="linguaType">

<xs:restriction base="xs:token">

<xs:enumeration value="it"/>

<xs:enumeration value="en"/>

<xs:enumeration value="fr"/>

<xs:enumeration value="es"/>

<xs:enumeration value="de"/>

<xs:enumeration value="ja"/>

<xs:enumeration value="zh"/>

<xs:enumeration value="other"/>

Versione 1.1 5

</xs:restriction>

</xs:simpleType>

<xs:element name="soggetti” type=“soggettiType"/>

<xs:complexType name="soggettiType">

<xs:sequence>

<xs:element ref="soggetto" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="soggetto” type=“parolechiaveType"/>

<xs:element name="autori” type=“autoriType"/>

<xs:complexType name="autoriType">

<xs:sequence>

<xs:element ref="autore" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="autore” type=“personaType"/>

<xs:complexType name="personaType">

<xs:sequence>

<xs:element ref="cognome"/>

<xs:element ref="nome"/>

<xs:element ref="affiliazione"/>

</xs:sequence>

</xs:complexType>

<xs:element name="cognome” type=“cognomeType"/>

<xs:simpleType name="cognomeType">

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

<xs:minLength value="1"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="nome” type=“nomeType"/>

<xs:simpleType name="nomeType">

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

<xs:minLength value="0"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="affiliazione” type=“affiliazioneType"/>

<xs:simpleType name="affiliazioneType">

<xs:restriction base="xs:string">

<xs:maxLength value="500"/>

</xs:restriction>

</xs:simpleType>

<xs:element name="curatori” type=“curatoriType"/>

<xs:complexType name="curatoriType">

<xs:sequence>

<xs:element ref="curatore" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="curatore” type=“personaType"/>

<xs:element name="congresso” type=“congressoType"/>

<xs:complexType name="congressoType">

<xs:sequence>

<xs:element name="titolo" minOccurs="0">

<xs:simpleType>

<xs:restriction base="xs:string">

<xs:maxLength value="500"/>

<xs:minLength value="3"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

<xs:element name="luogo" minOccurs="0">

<xs:simpleType>

Versione 1.1 6

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

<xs:minLength value="2"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

<xs:element name="date" minOccurs="0">

<xs:simpleType>

<xs:restriction base="xs:string">

<xs:maxLength value="100"/>

<xs:minLength value="1"/>

</xs:restriction>

</xs:simpleType>

</xs:element>

</xs:sequence>

</xs:complexType>

<xs:element name="classificazioni” type=“classificazioniType"/>

<xs:complexType name="classificazioniType">

<xs:sequence>

<xs:element ref="classificazione" minOccurs="0" maxOccurs="unbounded"/>

</xs:sequence>

</xs:complexType>

<xs:element name="classificazione” type=“parolechiaveType"/>

<xs:element name="lingua” type=“linguaType"/>

</xs:schema>

Versione 1.1 7

XML Examples

A sample XML document describing two types of publication (Article and Conference Paper)

is reported below.

An extended version, containing samples for all types of publications suitable for

submission to DSpace ISS, is available for download on the DSpace ISS website.

<?xml version="1.0" encoding="UTF-8"?>

<documenti xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns="http://dspace.iss.it/dspace/XMLSchema/1.1"

xsi:schemaLocation="http://dspace.iss.it/dspace/XMLSchema/1.1

http://dspace.iss.it/XMLSchema/1.1/dspaceiss.xsd">

<documento>

<titolo>La carta del rischio cardiovascolare globale</titolo>

<citazione>

Giampaoli S, Palmieri L, Chiodini P, Cesana G, Ferrario M, Panico S, Pilotto L,

Sega R, Vanuzzo D, Gruppo di ricerca del progetto CUORE. La carta del rischio

cardiovascolare globale. Italian heart journal. Supplement. 2004;5(3):177-185.

</citazione>

<chiaveinterna>15952</chiaveinterna>

<datapubblicazione>

<giorno></giorno>

<mese></mese>

<anno>2004</anno>

</datapubblicazione>

<pubblicazione>Italian heart journal. Supplement</pubblicazione>

<editore>CEPI </editore>

<issn>1129-4728</issn>

<isbn/>

<uri/>

<url>http://www.iss.it</url>

<doi/>

<tipologia>Article</tipologia>

<entiautore>

<ente>Gruppo di ricerca del progetto CUORE</ente>

</entiautore>

<abstract/>

<files/>

<soggetti>

<soggetto>

<valore>Prevention</valore>

<lingua>en</lingua>

</soggetto>

<soggetto>

<valore>Stroke</valore>

<lingua>en</lingua>

</soggetto>

</soggetti>

<terminimesh>

<mesh>

<valore>Infarto miocardico</valore>

<lingua>it</lingua>

</mesh>

<mesh>

<valore>Myocardial Infarction</valore>

<lingua>en</lingua>

</mesh>

<mesh>

<valore>Fattori di rischio</valore>

<lingua>it</lingua>

</mesh>

<mesh>

Versione 1.1 8

<valore>Risk Factors</valore>

<lingua>en</lingua>

</mesh>

</terminimesh>

<autori>

<autore>

<cognome>Palmieri</cognome>

<nome>Luigi</nome>

<affiliazione>

Istituto superiore di sanità. Laboratorio di epidemiologia e

biostatistica

</affiliazione>

</autore>

<autore>

<cognome>Chiodini</cognome>

<nome>Paolo</nome>

<affiliazione>

Università degli studi di Milano-Bicocca Milano. Facoltà di

scienze statistiche

</affiliazione>

</autore>

<autore>

<cognome>Cesana</cognome>

<nome>Giancarlo</nome>

<affiliazione>

Università degli studi di Milano-Bicocca Monza (MI).

Dipartimento medicina clinica prevenzione e biotecnologie

</affiliazione>

</autore>

<autore>

<cognome>Ferrario</cognome>

<nome>Marco</nome>

<affiliazione>

Università degli studi di Milano-Bicocca Monza (MI).

Dipartimento medicina clinica prevenzione e biotecnologie

</affiliazione>

</autore>

<autore>

<cognome>Panico </cognome>

<nome> Salvatore</nome>

<affiliazione>

Università degli studi di Napoli Federico II Napoli. Dipartimento

di medicina clinica e sperimentale

</affiliazione>

</autore>

<autore>

<cognome>Pilotto</cognome>

<nome>Lorenza</nome>

<affiliazione>

Centro di prevenzione per le malattie cardiovascolari Udine

</affiliazione>

</autore>

<autore>

<cognome>Sega</cognome>

<nome>Roberto</nome>

<affiliazione>

Università degli studi di Milano-Bicocca Monza (MI).

Dipartimento medicina clinica prevenzione e biotecnologie

</affiliazione>

</autore>

<autore>

<cognome>Vanuzzo</cognome>

<nome>Diego</nome>

<affiliazione>

Centro di prevenzione per le malattie cardiovascolari Udine

</affiliazione>

</autore>

Versione 1.1 9

</autori>

<curatori/>

<congresso/>

<classificazioni>

<classificazione>

<valore>Laboratorio di epidemiologia e biostatistica</valore>

<lingua>it</lingua>

</classificazione>

</classificazioni>

<lingua>it</lingua>

</documento>

<documento>

<titolo>

Chylomicron remnants containing lycopene enhance lipid accumulation in THP-1

macrophages

</titolo>

<citazione>

Bravo E, Moore EH, Botham KM, Avella M, Napolitano M. Chylomicron remnants

containing lycopene enhance lipid accumulation in THP-1 macrophages. In:

44.International Conference on the Bioscience of Lipids (ICBL).Abstracts;

September 7-11,2003;Oxford.2003.p.20.

</citazione>

<chiaveinterna>14164</chiaveinterna>

<datapubblicazione>

<giorno></giorno>

<mese></mese>

<anno>2003</anno>

</datapubblicazione>

<pubblicazione>

44.International Conference on the Bioscience of Lipids (ICBL).Abstracts

</pubblicazione>

<editore/>

<issn/>

<isbn/>

<uri/>

<url>http://www.iss.it</url>

<doi/>

<tipologia>Conference Paper</tipologia>

<entiautore/>

<abstract/>

<files/>

<soggetti/>

<terminimesh>

<mesh>

<valore>Chylomicron Remnants</valore>

<lingua>en</lingua>

</mesh>

<mesh>

<valore>Chilimicroni remnant</valore>

<lingua>it</lingua>

</mesh>

<mesh>

<valore>Lipids</valore>

<lingua>en</lingua>

</mesh>

<mesh>

<valore>Lipidi</valore>

<lingua>it</lingua>

</mesh>

<mesh>

<valore>Macrophages</valore>

<lingua>en</lingua>

</mesh>

<mesh>

<valore>Macrofagi</valore>

<lingua>it</lingua>

</mesh>

Versione 1.1 10

</terminimesh>

<autori>

<autore>

<cognome>Bravo</cognome>

<nome>Elena</nome>

<affiliazione>

Istituto superiore di sanità. Laboratorio di metabolismo e

biochimica patologica

</affiliazione>

</autore>

<autore>

<cognome>Moore</cognome>

<nome>Elizabeth H</nome>

<affiliazione>

Royal Veterinary College London (UK). Department of

Veterinary Basic Sciences

</affiliazione>

</autore>

<autore>

<cognome>Botham</cognome>

<nome>Kathleen M</nome>

<affiliazione>

Royal Veterinary College London (UK). Department of

Veterinary Basic Sciences

</affiliazione>

</autore>

<autore>

<cognome>Avella</cognome>

<nome>Michael</nome>

<affiliazione>

Royal Veterinary College London (UK). Department of

Veterinary Basic Sciences

</affiliazione>

</autore>

<autore>

<cognome> Napolitano</cognome>

<nome>Mariarosaria</nome>

<affiliazione>

Istituto superiore di sanità. Laboratorio di metabolismo e

biochimica patologica

</affiliazione>

</autore>

</autori>

<curatori/>

<congresso>

<titolo>

44.International Conference on the Bioscience of Lipids (ICBL)

</titolo>

<luogo>Oxford</luogo>

<date>September 7-11,2003</date>

</congresso>

<classificazioni>

<classificazione>

<valore>Laboratorio di metabolismo e biochimica patologica</valore>

<lingua>it</lingua>

</classificazione>

</classificazioni>

<lingua>it</lingua>

</documento>

</documenti>

Versione 1.1 11

Guide to fill a dataset using an XML file

XML TAG FIELDS TAG CONTENT AND FORMAT EXAMPLES

<title>(*) Alphanumeric string consisting of max 500 characters

Alcuni aspetti di etica in sanità pubblica

<citation> Alphanumeric string of characters Greco D, Petrini C. Alcuni aspetti di etica in sanità pubblica. Annali dell'Istituto Superiore di Sanità. 2004;40(03):363-371.

<DocumentKey> Alphanumeric string consisting of max

50 characters

10922

<day> DD (publication day) 31

<month> MM (publication month) 03

<year> (*) YYYY (publication year) 2004

<publication> (*) Alphanumeric string consisting of max 256 characters

(journal title, monograph title, etc)

Annali dell'Istituto Superiore di Sanità

<publisher> Alphanumeric string consisting of max

500 characters

Istituto Superiore di Sanità

<issn> XXXX-YYYY

In case of serials with both ISSN print and

electronic, insert only ISSN print

1549-1277

<isbn> [HHH-]XX-YYY-ZZ-WWW

(ISBN-10 or ISBN-13)

88-080-13-12X

978-88-04-57714-0

<uri> Alphanumeric string consisting of max 255 characters L’URI

The URI (Uniform Resource Identifier)

provides univoque identification of a generic

web resource (web address, document, image,

file, service, e-mail address, etc.)

http://dspace.iss.it/dspace/

[email protected]

<url> Alphanumeric string consisting of max 256 characters

The URL (Uniform Resource Locator) is a type

of Uniform Resource Identifier (URI) that

specifies where an identified resource is

available and the mechanism for retrieving it

http://dspace.iss.it/dspace/

<doi> Alphanumeric string consisting of max 256 characters

The DOI (Digital Object Identifier) provides a

framework for persistent identification in the

digital environment, managing intellectual

content and managing metadata

10.1016/j.ypmed.2008.07.002

<typology> (*) To be selected among:

Article; Letter (type of article); Abstract

(type of article); Book; Edited Book;

Book Chapter; Conference

Proceedings; Conference Paper;; Technical Report; Other

Article

<corporateAuthor> Alphanumeric string consisting of max 256 characters

Gruppo di ricerca del progetto CUORE

Versione 1.1 12

An organisation (eg. a business, government

agency, institution) considered to be the author

of a published work

HERMES Collaboration

<abstract> Alphanumeric string consisting of max 2500 characters

The significance of the binomial “ethics” and “public health” is firstly described…

<name> Alphanumeric string consisting of max 2500 characters (without blanks) in which the first two digits must refer

to the year of publication followed by _ and by a unique identifier

File name (eg. the full text of an article)

04_0021-2571-40-03-363-371

(year, issn, vol, issue and pag)

<format> It must be encoded as follows:

pdf;txt;rtf;doc;ppt;xml;htm;html;na (not-available:default value)

File extension

pdf

<value> Alphanumeric string consisting of max 100 characters

Subjects, MeSH terms, classification (local

collection headings used to group documents)

Valutazione etica

Ethical evaluation

<language>(*) It must be encoded as follows:

it; en; fr; es; de; ja; zh; other

Used to specify the language of documents,

subjects, MeSH terms, classification

it

en

<name> Each of max 100 characters

Refers to the first name of an author or editor

If the complete name is missing, provide the

initials not followed by “.”

Donato

<surname Each of max 100 characters

Refers to the last name of an author or editor

Greco

<affiliation> Each of max 500 characters

Refers to the institution to which an author or

editor belongs. In case of multiple affiliations

insert just the first one

Istituto superiore di sanità Roma. Centro nazionale di epidemiologia sorveglianza e promozione della salute

<title> Alphanumeric string consisting of max 500 characters to be used in case the document typology is Conference Paper or Conference Proceedings

Refers to the title of a congress

2. Convegno della Federazione italiana scienze della vita (FISV)

44. International Conference on

the Bioscience of Lipids (ICBL)

<place> Alphanumeric string consisting of max 500 characters to be used in case

the document typology is Conference Paper or Conference Proceedings

Refers to the place where a congress has been

held

Riva del Garda

Oxford

<date> Alphanumeric string consisting of max

50 characters to be used in case the document typology is Conference Paper or Conference Proceedings

Refers to the date of a congress

30 settembre - 4 ottobre 2000

September 7-11, 2003

(*) mandatory (if missing, the item will not be archived in DSpace ISS)

Versione 1.1 13

NOTE FOR FILLING IN THE RECORD FORMAT

The XML format includes the fields relating all types of items that can be archived in DSpace ISS: Article; Letter (type of article); Abstract (type of article); Book; Edited Book; Book

Chapter; Conference Proceedings; Conference Paper;; Technical Report; Other

The suggested citations of the different types of items (see Appendix) have been created, with some customizations, according to the Uniform Requirements for Manuscript Submitted to Biomedical Journals (known as Vancouver style, http://www.nlm.nih.gov/bsd/uniform_requirements.html).

Filling in all the format fields, particularly the field Citation, is heartily recommended in order to guarantee the quality and uniformity of items’ descriptions contained in DSpace ISS.

Versione 1.1 14

XML Validation

Prior to trasmitting data to the ISS, the XML file must be validated; files resulting not

validated will not be considered for inclusion in DSpace ISS.

To validate XML files use an editor XML, eg. xmlcopyeditor, a free of charge software

distributed under GNU GPL and available for download at http://xml-copy-

editor.sourceforge.net/ both for Windows and Linux platforms.

The validation process envisages two phases:

1) the first one aims to verify whether the XML file is properly formatted. In case of

use of xmlcopyeditor, proceed to activate the √ symbol coloured in blue (in the

toolbar) by clicking on it, in order to verify the proper format of the XML file (Fig.

1).

Fig. 1 – Example o fan XML file properly formatted.

Versione 1.1 15

2) The second phase aims to check whether the XML file has been validated against

the provided XML scheme. Once the XML file has been placed inside the same

folder containing the scheme file (dspaceiss.xsd), open it by using the XML editor

and activate the √ symbol coloured in green (in the toolbar) by clicking on it, in

order to verify the validation status of the XML file (Fig. 2).

Fig. 2 – Example of validated XML file.

Versione 1.1 16

APPENDIX – Examples of citations according to type of publications

Article (with personal authors)

Greco D, Petrini C. Alcuni aspetti di etica in sanità pubblica. Annali dell'Istituto Superiore di Sanità. 2004;40(03):363-371.

Letter (type of article)

Preventive medicine. 2008;47(4):454-455| Gallus S, Tramacere I, Zuccaro P, Colombo P, Boffetta P, La Vecchia C. Attitudes and perceptions towards increasing of cigarette price: a population-based survey in Italy [letter]. Preventive medicine. 2008;47(4):454-455.

Abstract (type of article)

Vanacore N, Da Cas R, Bianchi C, Sorrentino C, Raschetti R, The OSMED Study Group. A descriptive analysis of use of antiparkinsonian drugs in Italy in the period 2000-2007 [abstract].Neuroepidemiology. 2008;31(4):215.

Article (with personal and corporate authors)

Giampaoli S, Palmieri L, Chiodini P, Cesana G, Ferrario M, Panico S, Pilotto L, Sega R, Vanuzzo D, Gruppo di ricerca del progetto CUORE. La carta del rischio cardiovascolare globale. Italian heart journal. Supplement. 2004;5(3):177-185.

Article (with corporate author)

HERMES Collaboration. Nuclear polarization of molecular hydrogen recombined on a non-metallic surface. European physical journal D. 2004;29(1):21-26.

Book

Vecchia P, Tirelli U, Spezia U. Campi elettromagnetici e salute: dai miti alla realtà. Milano: 21mo Secolo; 2001.

Edited Book (monograph with editors)

Macchia T, Giannotti CF, Taggi F, ed. I servizi e le sostanze ricreazionali. Una rilevazione

clinica in Italia. Milano: Franco Angeli; 2004.

Book Chapter

Migliaccio G, Novelli G, Cancellieri E. Le nuove frontiere della ricerca clinica. In: Tomino C, ed. Manuale tecnico-pratico sulla sperimentazione clinica dei medicinali. Roma: Critical

medicine publishing; 2004. p. 335-389.

Conference Proceedings

Bedetti C, Guerrera D, ed. Seminario Recenti tematiche in medicina. 9. Settimana della cultura scientifica e tecnologica. Atti. Roma: Istituto Superiore di Sanità; 2000.

Conference Paper

Bravo E, Moore EH, Botham KM, Avella M, Napolitano M. Chylomicron remnants containing lycopene enhance lipid accumulation in THP-1 macrophages. In: 44. International Conference on the Bioscience of Lipids (ICBL). Abstracts; September 7-11, 2003; Oxford.

2003. p. 20.

Technical Report

Michael B, Sideris E, Frankenberg D, Heimgartner E, Cherubini R, Belli M, Darroudi F,

Kiefer J, Carlsson J. Experimental data for the induction of cancer by radiation of different

qualities (EDICAR). Northwood: Gray Laboratory Cancer Research Trust, 1999. (GSF Final Report F14P-CT95-0011).