Skip to content

Commit 839b731

Browse files
committed
feat(gridpool): add gridpool definition to v1alpha8
Introduce Gridpool message with id and name fields. A gridpool represents an assigned group of microgrids for the purpose of energy trading.
1 parent 2ea5e6d commit 839b731

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)