Commit 77ee96e1 authored by piscione's avatar piscione
Browse files

Added draft of proto files.

parent 9914a413
Loading
Loading
Loading
Loading
Loading
+21 −0
Original line number Original line Diff line number Diff line
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;


message CellId {

  // E-UTRAN Cell Identity as a bit string (size (28)).
  string cellId = 1;

}
+21 −0
Original line number Original line Diff line number Diff line
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;


message Earfcn {

  // E-UTRA Absolute Radio Frequency Channel Number, range (0... 65535)
  int32 earfcn = 1;

}
+24 −0
Original line number Original line Diff line number Diff line
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;

import public "models/cell_id.proto";
import public "models/plmn.proto";

message Ecgi {

  CellId cellId = 1;

  Plmn plmn = 2;

}
+28 −0
Original line number Original line Diff line number Diff line
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;

import public "models/earfcn.proto";
import public "models/transmission_bandwidth.proto";

message FddInfo {

  Earfcn dlEarfcn = 1;

  TransmissionBandwidth dlTransmissionBandwidth = 2;

  Earfcn ulEarfcn = 3;

  TransmissionBandwidth ulTransmissionBandwidth = 4;

}
+21 −0
Original line number Original line Diff line number Diff line
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;


message LinkType {

  // The URI referring to the subscription.
  string href = 1;

}
Loading