Skip to content

Commit

Permalink
Fix syntaax error in EnergyProviderType
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Rutkowski <[email protected]>
  • Loading branch information
mrutkows committed Mar 22, 2024
1 parent 8ced6e8 commit 6ea561d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions schema/bom-1.6.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1198,15 +1198,15 @@ message EnergyProviderType {
// BOM unique reference to the energy provider.
optional string bom_ref = 1;
// The name of the energy provider.
string name 1;
string name = 2;
// A description of the energy provider.
optional string description = 2;
optional string description = 3;
// TThe physical address (location) of the energy provider.BD
optional PostalAddressType address = 3;
optional PostalAddressType address = 4;
// The energy source for the energy provider.
EnerySourceType energySource = 4;
EnerySourceType energySource = 5;
// The energy provided by the energy source for an associated activity.
EnergyMeasureType energyProvided = 5;
EnergyMeasureType energyProvided = 6;
}

enum EnerySourceType {
Expand Down

0 comments on commit 6ea561d

Please sign in to comment.