Zapier · JSON Structure

Partner Api Zap Guesser Step Structure

ZapGuesserStep schema from Partner API

Type: object Properties: 2 Required: 2
IntegrationsiPaaS

ZapGuesserStep is a JSON Structure definition published by Zapier, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

step alternatives

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-zap-guesser-step-structure.json",
  "name": "ZapGuesserStep",
  "description": "ZapGuesserStep schema from Partner API",
  "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"
  ]
}