dnet-hadoop/dhp-schemas/src/main/avro/eu/dnetlib/dhp/common/ReportEntry.avdl

17 lines
243 B
Plaintext
Raw Normal View History

2018-01-16 14:21:13 +01:00
@namespace("eu.dnetlib.dhp.common.schemas")
protocol DHP{
enum ReportEntryType {
COUNTER, DURATION
}
record ReportEntry {
string key;
ReportEntryType type;
string value;
}
}