problem_details.proto 767 Bytes
Newer Older
piscione's avatar
piscione committed
/*
  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 ProblemDetails {

  // A human-readable explanation specific to this occurrence of the problem
  string detail = 1;

  // A URI reference that identifies the specific occurrence of the problem
  string instance = 2;

  // The HTTP status code for this occurrence of the problem
  int32 status = 3;

  // A short, human-readable summary of the problem type
  string title = 4;

  // A URI reference according to IETF RFC 3986 that identifies the problem type
  string type = 5;

}