{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ZapRunStep", "description": "A single step in a Zap Run.", "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-zap-run-step-schema.json", "type": "object", "properties": { "status": { "type": [ "string", "null" ], "description": "Execution status of the step", "example": "active" }, "start_time": { "type": [ "string", "null" ], "format": "date-time", "description": "Datetime when the step was executed", "example": "2026-05-01T12:00:00Z" } }, "required": [ "status" ] }