Zapier · Schema

ZapTemplateStepImages

Images for a Zap Template at various sizes

IntegrationsiPaaS

Properties

Name Type Description
url_16x16 string URL to 16x16 image for Zap Template
url_32x32 string URL to 32x32 image for Zap Template
url_64x64 string URL to 64x64 image for Zap Template
url_128x128 string URL to 128x128 image for Zap Template
View JSON Schema on GitHub

JSON Schema

partner-api-zap-template-step-images-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ZapTemplateStepImages",
  "description": "Images for a Zap Template at various sizes",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-template-step-images-schema.json",
  "type": "object",
  "properties": {
    "url_16x16": {
      "type": "string",
      "description": "URL to 16x16 image for Zap Template",
      "example": "example-value"
    },
    "url_32x32": {
      "type": "string",
      "description": "URL to 32x32 image for Zap Template",
      "example": "example-value"
    },
    "url_64x64": {
      "type": "string",
      "description": "URL to 64x64 image for Zap Template",
      "example": "example-value"
    },
    "url_128x128": {
      "type": "string",
      "description": "URL to 128x128 image for Zap Template",
      "example": "example-value"
    }
  },
  "required": [
    "url_128x128",
    "url_16x16",
    "url_32x32",
    "url_64x64"
  ]
}