Zapier · Schema

ActionRunResponse

The response of a given Action Run

IntegrationsiPaaS

Properties

Name Type Description
data object The resulting data after a given Action was run
View JSON Schema on GitHub

JSON Schema

zapier-actionrunresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionRunResponse",
  "title": "ActionRunResponse",
  "type": "object",
  "description": "The response of a given Action Run",
  "properties": {
    "data": {
      "allOf": [
        {
          "$ref": "#/components/schemas/_ActionRunResponse"
        }
      ],
      "description": "The resulting data after a given Action was run",
      "example": "example-value"
    }
  },
  "required": [
    "data"
  ]
}