Skip to content

Commit

Permalink
Location is just a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexIvanHoward committed Mar 14, 2024
1 parent 45443a5 commit f8713ed
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Schemas/protobufs/d_environment.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ import "c_parameter.proto";
message Environment {
repeated Identification identifications = 1;
string description = 2;
Location location = 6;
repeated Parameter parameters = 5; // The defining parameters of the environment.
repeated Parameter parameters = 5; // The defining parameters of the environment. Location will typically be one of them.
repeated Environment environments = 7;
}
//TODO. Location is actually a special type of parameter... OR is it a control in this case, as in the Environment is restricted to this Location?
Expand All @@ -25,8 +24,7 @@ message Environment {
message Environment {
repeated Identification identifications = 1;
string description = 2;
Location location = 6; //TODO. Location is actually a special type of parameter...
repeated string ids_parameters = 5; // The defining parameters of the environment.
repeated string ids_parameters = 5; // The defining parameters of the environment. Location will typically be one of them.
repeated string ids_environments = 7;
}
Expand Down

0 comments on commit f8713ed

Please sign in to comment.