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 |
JSON Schema
{
"$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"
]
}