Gong · Schema

PhoneReferencesResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
phoneNumber string The phone number that was searched.
references array List of references to the phone number.
View JSON Schema on GitHub

JSON Schema

gong-phonereferencesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhoneReferencesResponse",
  "title": "PhoneReferencesResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "phoneNumber": {
      "type": "string",
      "description": "The phone number that was searched."
    },
    "references": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataReference"
      },
      "description": "List of references to the phone number."
    }
  }
}