Zapier · Schema

ExpandedZap

A Zap is an automated workflow that connects your apps and services together.

IntegrationsiPaaS

Properties

Name Type Description
type string The type of this object.
id string A unique identifier of the Zap.
is_enabled boolean Whether the Zap is enabled (running) or not.
last_successful_run_date stringnull The date/time at which this Zap last ran successfully. A null value indicates that a Zap has never run successfully.
updated_at string The last time this Zap was updated
title string The human readable name of the Zap.
links object Link to open this Zap in the Zapier Editor
steps array A list of the steps this Zap consists of
View JSON Schema on GitHub

JSON Schema

zapier-expandedzap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExpandedZap",
  "title": "ExpandedZap",
  "type": "object",
  "description": "A Zap is an automated workflow that connects your apps and services together.",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "The type of this object.",
      "example": "standard"
    },
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "A unique identifier of the Zap.",
      "example": "500123"
    },
    "is_enabled": {
      "type": "boolean",
      "default": true,
      "description": "Whether the Zap is enabled (running) or not.",
      "example": true
    },
    "last_successful_run_date": {
      "type": [
        "string",
        "null"
      ],
      "readOnly": true,
      "description": "The date/time at which this Zap last ran successfully. A null value indicates that a Zap has never run successfully.",
      "example": "example-value"
    },
    "updated_at": {
      "type": "string",
      "readOnly": true,
      "description": "The last time this Zap was updated",
      "example": "example-value"
    },
    "title": {
      "type": "string",
      "description": "The human readable name of the Zap.",
      "example": "Example Name"
    },
    "links": {
      "type": "object",
      "additionalProperties": {},
      "readOnly": true,
      "description": "Link to open this Zap in the Zapier Editor",
      "example": {}
    },
    "steps": {
      "description": "A list of the steps this Zap consists of",
      "type": "array",
      "items": {
        "oneOf": [
          {
            "$ref": "#/components/schemas/ExpandedZapStep"
          },
          {
            "type": "string"
          }
        ]
      },
      "example": [
        "example-value"
      ]
    }
  },
  "required": [
    "id",
    "last_successful_run_date",
    "links",
    "steps",
    "title",
    "type",
    "updated_at"
  ]
}