measurement_report_notification.proto 1.15 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  ETSI GS MEC 028 - WLAN Access Information API
 
  The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
 
  The version of the OpenAPI document: 2.2.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec028;

import public "models/beacon_report.proto";
import public "models/channel_load.proto";
import public "models/neighbor_report.proto";
import public "models/sta_statistics.proto";
import public "models/time_stamp.proto";

message MeasurementReportNotification {

  // Beacon Report as defined in IEEE 802.11-2016 [8].
  repeated BeaconReport beaconReport = 1;

  // Channel Load reports as seen by the station as defined in IEEE 802.11-2016 [8].
  repeated ChannelLoad channelLoad = 2;

  // Neighbor Report providing information about neighbor Access Points seen by the station as defined in IEEE 802.112016 [8].
  repeated NeighborReport neighborReport = 3;

  // Shall be set to \"MeasurementReportNotification\".
  string notificationType = 4;

  // STA Statistics Report as defined in IEEE 802.11-2016 [8].
  repeated StaStatistics staStatistics = 5;

  TimeStamp timeStamp = 6;

}