Zapier · Schema

ActionTestResponse

Base Response definition to be used in other Response Serializers. Be sure to include the `data` field after using this class

IntegrationsiPaaS

Properties

Name Type Description
links object The links object returned in paginated response bodies.
meta object The meta object returned in paginated response bodies.
data array The result of executing said Action on the third-party API
View JSON Schema on GitHub

JSON Schema

partner-api-action-test-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionTestResponse",
  "description": "Base Response definition to be used in other Response Serializers.\n\nBe sure to include the `data` field after using this class",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-action-test-response-schema.json",
  "type": "object",
  "properties": {
    "links": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Links"
        }
      ],
      "description": "The links object returned in paginated response bodies.",
      "example": "example-value"
    },
    "meta": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BaseMeta"
        }
      ],
      "description": "The meta object returned in paginated response bodies.",
      "example": "example-value"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {}
      },
      "description": "The result of executing said Action on the third-party API",
      "example": [
        {}
      ]
    }
  },
  "required": [
    "data",
    "links",
    "meta"
  ]
}