Project

General

Profile

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

    
4
    import idl "BasicCitationStatistics.avdl";
5

    
6
    // extended statistics for a group of documents;
7
    // for example documents of a given author, 
8
    // documents of a given project or all documents in the system
9
    record ExtendedStatistics {
10

    
11
        BasicCitationStatistics basic;
12

    
13
        float averageNumberOfCitationsPerPaper;
14
        
15
        // keys: 1 10 50 100 250 500
16
        map<int> numberOfPapersCitedAtLeastXTimes;
17

    
18
    }
19

    
20
}
(9-9/12)