Pipedream · Schema

ObservationError

Details about an observed error message

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
name string The name of the error/exception
message string The error message
stack string The stack trace of the error
View JSON Schema on GitHub

JSON Schema

pipedream-observationerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObservationError",
  "title": "ObservationError",
  "type": "object",
  "description": "Details about an observed error message",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the error/exception"
    },
    "message": {
      "type": "string",
      "description": "The error message"
    },
    "stack": {
      "type": "string",
      "description": "The stack trace of the error"
    }
  }
}