Project

General

Profile

1
@namespace("eu.dnetlib.iis.metadataextraction.schemas")
2
protocol IIS{
3

    
4
    import idl "ReferenceBasicMetadata.avdl";
5

    
6
    record ReferenceMetadata {
7
        ReferenceBasicMetadata basicMetadata;
8
//      reference position in bibliography, starting with '1'
9
        union { null , int } position = null;
10
//      raw citation string held here just in case - maybe we will be able to use it
11
//      instead of basicMetadata if the latter one turns out to be of a low quality
12
        union { null , string } text = null;
13
    }
14

    
15
}
(5-5/5)