Gong · Schema

AggregatedActivityResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
records object
usersAggregatedActivity array List of aggregated activity per user.
View JSON Schema on GitHub

JSON Schema

gong-aggregatedactivityresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AggregatedActivityResponse",
  "title": "AggregatedActivityResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "records": {
      "type": "object",
      "properties": {
        "totalRecords": {
          "type": "integer"
        },
        "currentPageSize": {
          "type": "integer"
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "usersAggregatedActivity": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserAggregatedActivity"
      },
      "description": "List of aggregated activity per user."
    }
  }
}