summaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-measures.proto
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-measures.proto')
-rw-r--r--sonar-ws/src/main/protobuf/ws-measures.proto6
1 files changed, 5 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-measures.proto b/sonar-ws/src/main/protobuf/ws-measures.proto
index 5217936392c..5960ea78943 100644
--- a/sonar-ws/src/main/protobuf/ws-measures.proto
+++ b/sonar-ws/src/main/protobuf/ws-measures.proto
@@ -70,7 +70,11 @@ message Measures {
message Measure {
optional string metric = 1;
optional string value = 2;
- repeated PeriodValue periods = 3;
+ optional PeriodsValue periods = 3;
+}
+
+message PeriodsValue {
+ repeated PeriodValue periodsValue = 1;
}
message PeriodValue {