We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea5e6d commit 839b731Copy full SHA for 839b731
proto/frequenz/api/common/v1alpha8/gridpool/gridpool.proto
@@ -0,0 +1,22 @@
1
+// protolint:disable MAX_LINE_LENGTH
2
+// Frequenz gridpool definition.
3
+//
4
+// Copyright 2025 Frequenz Energy-as-a-Service GmbH
5
6
+// Licensed under the MIT License (the "License");
7
+// you may not use this file except in compliance with the License.
8
+
9
+syntax = "proto3";
10
11
+package frequenz.api.common.v1alpha8.gridpool;
12
13
14
+// Gridpool contains details of a specific gridpool.
15
+// A gridpool is an assigned group of microgrids for the purpose of energy trading.
16
+message Gridpool {
17
+ // A unique identifier for the gridpool.
18
+ uint64 id = 1;
19
20
+ // The name of the gridpool.
21
+ string name = 2;
22
+}
0 commit comments