Zapier · Schema

ZapGuesserStep

ZapGuesserStep schema from Partner API

IntegrationsiPaaS

Properties

Name Type Description
step object The highest scoring (most relevant) step for this Zap
alternatives array Alternative steps that we are less confident are relevant, but may have been intended
View JSON Schema on GitHub

JSON Schema

partner-api-zap-guesser-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZapGuesserStep",
  "description": "ZapGuesserStep schema from Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-guesser-step-schema.json",
  "type": "object",
  "properties": {
    "step": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ZapGuesserRawStep"
        }
      ],
      "readOnly": true,
      "description": "The highest scoring (most relevant) step for this Zap",
      "example": "example-value"
    },
    "alternatives": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ZapGuesserRawStep"
      },
      "readOnly": true,
      "description": "Alternative steps that we are less confident are relevant, but may have been intended",
      "example": [
        {}
      ]
    }
  },
  "required": [
    "alternatives",
    "step"
  ]
}