Gong · Schema

UploadStatusResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
status string Current status of the upload request.
entitiesProcessed integer Number of entities processed so far.
entitiesFailed integer Number of entities that failed processing.
errors array Error messages for failed entities.
View JSON Schema on GitHub

JSON Schema

gong-uploadstatusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadStatusResponse",
  "title": "UploadStatusResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "status": {
      "type": "string",
      "enum": [
        "Queued",
        "Processing",
        "Complete",
        "Failed"
      ],
      "description": "Current status of the upload request."
    },
    "entitiesProcessed": {
      "type": "integer",
      "description": "Number of entities processed so far."
    },
    "entitiesFailed": {
      "type": "integer",
      "description": "Number of entities that failed processing."
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Error messages for failed entities."
    }
  }
}