Zapier · JSON Structure

Partner Api Zap Template Structure

A Zap Template.

Type: object Properties: 11 Required: 11
IntegrationsiPaaS

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

Properties

id steps title slug status description_plain description_raw url description create_url type

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-template-structure.json",
  "name": "ZapTemplate",
  "description": "A Zap Template.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "The numeric identifier of this Zap Template",
      "example": 100
    },
    "steps": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ZapTemplateStep"
      },
      "readOnly": true,
      "description": "The steps this Zap Template are composed of",
      "example": [
        {}
      ]
    },
    "title": {
      "type": "string",
      "description": "The title of this Zap Template",
      "example": "Example Name"
    },
    "slug": {
      "type": "string",
      "description": "The shortened slug for this Zap Template",
      "pattern": "^[-a-zA-Z0-9_]+$",
      "example": "example-value"
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ZapTemplateStatusEnum"
        }
      ],
      "description": "The status of this Zap Template\n\n* `draft` - draft\n* `published` - published",
      "example": "active"
    },
    "description_plain": {
      "type": "string",
      "readOnly": true,
      "description": "The plain (rendered) description for this Zap Template",
      "example": "example-value"
    },
    "description_raw": {
      "type": "string",
      "description": "The raw description for this Zap Template. May include styling syntax intended to be rendered",
      "example": "example-value"
    },
    "url": {
      "type": "uri",
      "readOnly": true,
      "description": "The URL for this Zap Template",
      "example": "https://example.com/path/abc123"
    },
    "description": {
      "type": "string",
      "description": "The HTML description for this Zap Template. Intended to be rendered in a browser",
      "example": "Example description for this resource."
    },
    "create_url": {
      "type": "uri",
      "readOnly": true,
      "description": "The URL to access to create a Zap from this Zap Template",
      "example": "https://example.com/path/abc123"
    },
    "type": {
      "type": "string",
      "readOnly": true,
      "default": "guided_zap",
      "description": "The type of this Zap Template",
      "example": "guided_zap"
    }
  },
  "required": [
    "create_url",
    "description",
    "description_plain",
    "description_raw",
    "id",
    "slug",
    "status",
    "steps",
    "title",
    "type",
    "url"
  ]
}