problem_details.proto 777 Bytes
Newer Older
Elian Kraja's avatar
Elian Kraja committed
/*
  ETSI GS MEC 021 Application Mobility Service API
 
  ETSI GS MEC 021 Application Mobility 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 mec021;


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;

}