Zapier · Schema

ZapGuesserRawStep

ZapGuesserRawStep schema from Partner API

IntegrationsiPaaS

Properties

Name Type Description
title stringnull The title of this step
app string This step's human-readable name
api string The Zapier API integration this step uses
View JSON Schema on GitHub

JSON Schema

partner-api-zap-guesser-raw-step-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZapGuesserRawStep",
  "description": "ZapGuesserRawStep schema from Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-guesser-raw-step-schema.json",
  "type": "object",
  "properties": {
    "title": {
      "type": [
        "string",
        "null"
      ],
      "description": "The title of this step",
      "example": "Example Name"
    },
    "app": {
      "type": "string",
      "description": "This step's human-readable name",
      "example": "example-value"
    },
    "api": {
      "type": "string",
      "description": "The Zapier API integration this step uses",
      "example": "example-value"
    }
  },
  "required": [
    "api",
    "app",
    "title"
  ]
}