Zapier · Schema

ErrorSource

Populates the `source` object inside our error responses.

IntegrationsiPaaS

Properties

Name Type Description
pointer string Pointer to the value in the request document that caused the error e.g. `/actions`.
parameter string A string indicating which URI query parameter caused the error.
header string A string indicating the name of a single request header which caused the error.
View JSON Schema on GitHub

JSON Schema

partner-api-error-source-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorSource",
  "description": "Populates the `source` object inside our error responses.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-error-source-schema.json",
  "type": "object",
  "properties": {
    "pointer": {
      "type": "string",
      "description": "Pointer to the value in the request document that caused the error e.g. `/actions`.",
      "example": "example-value"
    },
    "parameter": {
      "type": "string",
      "description": "A string indicating which URI query parameter caused the error.",
      "example": "example-value"
    },
    "header": {
      "type": "string",
      "description": "A string indicating the name of a single request header which caused the error.",
      "example": "example-value"
    }
  }
}