{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ActionRunResponse", "description": "The response of a given Action Run", "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-action-run-response-schema.json", "type": "object", "properties": { "data": { "allOf": [ { "$ref": "#/components/schemas/_ActionRunResponse" } ], "description": "The resulting data after a given Action was run", "example": "example-value" } }, "required": [ "data" ] }