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