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

17 lines
243 B
Plaintext

@namespace("eu.dnetlib.dhp.common.schemas")
protocol DHP{
enum ReportEntryType {
COUNTER, DURATION
}
record ReportEntry {
string key;
ReportEntryType type;
string value;
}
}