Gong · Schema

CrmEntitySchemaResponse

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
requestId string A unique identifier for the request.
fields array List of schema field definitions.
View JSON Schema on GitHub

JSON Schema

gong-crmentityschemaresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CrmEntitySchemaResponse",
  "title": "CrmEntitySchemaResponse",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "A unique identifier for the request."
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "uniqueName": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "isRequired": {
            "type": "boolean"
          }
        }
      },
      "description": "List of schema field definitions."
    }
  }
}