{ "$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" ] }