Share feedback
Answers are generated based on the documentation.

Experimental

Schema

RequestInfoErrorDetail

Type: object

Contains metadata about the request that clients can attach when filing a bug or providing other forms of feedback.
@type · required

Type: string

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

Type: string

An opaque string that should only be interpreted by the service generating it. For example, it can be used to identify requests in the service's logs.
All schema constraints and annotations
{
  "description": "An opaque string that should only be interpreted by the service generating\nit. For example, it can be used to identify requests in the service's logs.",
  "type": "string"
}
servingData

Type: string

Any data that was used to serve this request. For example, an encrypted stack trace that can be sent back to the service provider for debugging.
All schema constraints and annotations
{
  "description": "Any data that was used to serve this request. For example, an encrypted\nstack trace that can be sent back to the service provider for debugging.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "Contains metadata about the request that clients can attach when filing a bug\nor providing other forms of feedback.",
  "properties": {
    "@type": {
      "const": "type.googleapis.com/google.rpc.RequestInfo",
      "type": "string"
    },
    "requestId": {
      "description": "An opaque string that should only be interpreted by the service generating\nit. For example, it can be used to identify requests in the service's logs.",
      "type": "string"
    },
    "servingData": {
      "description": "Any data that was used to serve this request. For example, an encrypted\nstack trace that can be sent back to the service provider for debugging.",
      "type": "string"
    }
  },
  "required": [
    "@type"
  ],
  "title": "RequestInfoErrorDetail",
  "type": "object"
}