/* 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; message InfoProtocol { // Numerical value corresponding to the application layer protocol supported by the service consumer. For the msgProtocol, the following values are currently defined (see note): 0 = MQTT v3.1.0 1 = MQTT v3.1.1 2 = MQTT v5 3 = MQTT-SN 4 = AMQP 1.0 enum MsgProtocolEnum { _0 = 0; _1 = 1; _2 = 2; _3 = 3; _4 = 4; } MsgProtocolEnum msgProtocol = 1; // Implementation specifics of application layer protocol, e.g. programming language. string protImplementation = 2; }