Gong · Schema

ErrorResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
errors array List of error messages.
View JSON Schema on GitHub

JSON Schema

gong-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of error messages."
    }
  }
}