Project

General

Profile

1 51263 claudio.at
@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
}