From 8a4536c3fa47dbea558f621a78fba407c1755153 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 10:37:25 +0000 Subject: [PATCH] Document lifetime ordering rule Signed-off-by: Leandro Lucarella --- proto/frequenz/api/common/v1alpha8/microgrid/lifetime.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/frequenz/api/common/v1alpha8/microgrid/lifetime.proto b/proto/frequenz/api/common/v1alpha8/microgrid/lifetime.proto index 1145f4231..bc2e1f8c4 100644 --- a/proto/frequenz/api/common/v1alpha8/microgrid/lifetime.proto +++ b/proto/frequenz/api/common/v1alpha8/microgrid/lifetime.proto @@ -37,5 +37,7 @@ message Lifetime { // Optional timestamp when the asset's operational activity ceased. // If not set, the asset is considered to be in operation indefinitely into // the future. + // When both timestamps are set, `start_timestamp` should be less than or + // equal to `end_timestamp`. google.protobuf.Timestamp end_timestamp = 2; }