Project

General

Profile

1
@namespace("eu.dnetlib.dhp.common.schemas")
2
protocol DHP{
3

    
4
    enum ReportEntryType {
5
        COUNTER, DURATION
6
    }
7
    
8
    
9
    record ReportEntry {
10
    
11
        string key;
12
        ReportEntryType type;
13
        string value;
14
    
15
    }
16
}
    (1-1/1)