Share feedback
Answers are generated based on the documentation.

Experimental

Schema

DebugInfoErrorDetail

Type: object

Describes additional debugging info.
@type · required

Type: string

All schema constraints and annotations
{
  "const": "type.googleapis.com/google.rpc.DebugInfo",
  "type": "string"
}
detail

Type: string

Additional debugging information provided by the server.
All schema constraints and annotations
{
  "description": "Additional debugging information provided by the server.",
  "type": "string"
}
stackEntries

Type: array

The stack trace entries indicating where the error occurred.
Array item

Type: string

All schema constraints and annotations
{
  "type": "string"
}
All schema constraints and annotations
{
  "description": "The stack trace entries indicating where the error occurred.",
  "items": {
    "type": "string"
  },
  "type": "array"
}
All schema constraints and annotations
{
  "description": "Describes additional debugging info.",
  "properties": {
    "@type": {
      "const": "type.googleapis.com/google.rpc.DebugInfo",
      "type": "string"
    },
    "detail": {
      "description": "Additional debugging information provided by the server.",
      "type": "string"
    },
    "stackEntries": {
      "description": "The stack trace entries indicating where the error occurred.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "@type"
  ],
  "title": "DebugInfoErrorDetail",
  "type": "object"
}