From f8713edcb54566c1e17fe64b44971771abc0f33b Mon Sep 17 00:00:00 2001 From: AlexIvanHoward Date: Thu, 14 Mar 2024 23:28:07 +0200 Subject: [PATCH] Location is just a parameter --- Schemas/protobufs/d_environment.proto | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Schemas/protobufs/d_environment.proto b/Schemas/protobufs/d_environment.proto index b647e57..de96f0f 100644 --- a/Schemas/protobufs/d_environment.proto +++ b/Schemas/protobufs/d_environment.proto @@ -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? @@ -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; }