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",
"$id": "#/components/schemas/ZapGuesserStep",
"title": "ZapGuesserStep",
"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"
]
}