meas_rep_ue_notification.proto 2.41 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  ETSI GS MEC 012 - Radio Network Information API
 
  The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/associate_id.proto";
import public "models/ecgi.proto";
import public "models/meas_rep_ue_notification_carrier_aggregation_meas_info.proto";
import public "models/meas_rep_ue_notification_eutran_neighbour_cell_meas_info.proto";
import public "models/meas_rep_ue_notification_new_radio_meas_info.proto";
import public "models/meas_rep_ue_notification_new_radio_meas_nei_info.proto";
import public "models/time_stamp.proto";
import public "models/trigger.proto";

message MeasRepUeNotification {

  // 0 to N identifiers to associate the event for a specific UE or flow.
  repeated AssociateId associateId = 1;

  // This parameter can be repeated to contain information of all the carriers assign for Carrier Aggregation up to M.
  repeated MeasRepUeNotificationCarrierAggregationMeasInfo carrierAggregationMeasInfo = 2;

  Ecgi ecgi = 3;

  // This parameter can be repeated to contain information of all the neighbouring cells up to N.
  repeated MeasRepUeNotificationEutranNeighbourCellMeasInfo eutranNeighbourCellMeasInfo = 4;

  // Indicates height of the UE in meters relative to the sea level as defined in ETSI TS 136.331 [i.7].
  int32 heightUe = 5;

  // 5G New Radio secondary serving cells measurement information.
  repeated MeasRepUeNotificationNewRadioMeasInfo newRadioMeasInfo = 6;

  // Measurement quantities concerning the 5G NR neighbours.
  repeated MeasRepUeNotificationNewRadioMeasNeiInfo newRadioMeasNeiInfo = 7;

  // Shall be set to \"MeasRepUeNotification\".
  string notificationType = 8;

  // Reference Signal Received Power as defined in ETSI TS 136 214 [i.5].
  int32 rsrp = 9;

  // Extended Reference Signal Received Power, with value mapping defined in ETSI TS 136 133 [i.16].
  int32 rsrpEx = 10;

  // Reference Signal Received Quality as defined in ETSI TS 136 214 [i.5].
  int32 rsrq = 11;

  // Extended Reference Signal Received Quality, with value mapping defined in ETSI TS 136 133 [i.16].
  int32 rsrqEx = 12;

  // Reference Signal \"Signal to Interference plus Noise Ratio\", with value mapping defined in ETSI TS 136 133 [i.16].
  int32 sinr = 13;

  TimeStamp timeStamp = 14;

  Trigger trigger = 15;

}