Merge "RIC-192 - Save the entire Setup request in RNIB - 1"
[ric-plt/nodeb-rnib.git] / entities / gnb.proto
index cb28967..ee45be4 100644 (file)
  * limitations under the License.
  */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+ */
+
+
 syntax = "proto3";
 package entities;
 
 message Gnb{
        repeated ServedNRCell served_nr_cells = 1;
+       repeated RanFunction ran_functions = 2;
+}
+
+message RanFunction{
+       uint32 ran_function_id = 1;
+       string ran_function_definition = 2;
+       uint32 ran_function_revision = 3;
 }
 
 message ServedNRCell{