v2x_msg_properties_values.proto 999 Bytes
Newer Older
/*
  ETSI GS MEC 030 V2X Information Services API

  ETSI GS MEC 030 V2X Information Services API described using OpenAPI.

  The version of the OpenAPI document: 3.1.1

  Contact: cti_support@etsi.org

  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;

import public "models/location_info.proto";

message V2xMsgPropertiesValues {

  LocationInfo locationInfo = 1;

  // Protocol version of the V2X message (0..255), See note 3.
  int32 msgProtocolVersion = 2;

  // Published V2X message type. Its value is defined by the standardization organization indicated by the attribute stdOrganization. See note 2.
  enum MsgTypeEnum {
    SEE_DESCRIPTION = 0;
  }

  MsgTypeEnum msgType = 3;

  // Standardization organization which defines the published V2X message type:  ETSI: European Telecommunications Standards Institute.  See note 1.
  enum StdOrganizationEnum {
    SEE_DESCRIPTION_1 = 0;
  }

  StdOrganizationEnum stdOrganization = 4;

}