Gong · Schema

FlowContentOverrideRequest

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
steps array List of step content overrides.
View JSON Schema on GitHub

JSON Schema

gong-flowcontentoverriderequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowContentOverrideRequest",
  "title": "FlowContentOverrideRequest",
  "type": "object",
  "required": [
    "steps"
  ],
  "properties": {
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "stepIndex": {
            "type": "integer",
            "description": "The zero-based index of the step to override."
          },
          "subject": {
            "type": "string",
            "description": "The overridden email subject line."
          },
          "body": {
            "type": "string",
            "description": "The overridden email body content."
          }
        },
        "required": [
          "stepIndex"
        ]
      },
      "description": "List of step content overrides."
    }
  }
}