Pipedream · Schema

Observation

Any logs produced during the configuration of the prop

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
err object
k string The source of the log (e.g. `console.log`)
msg string The log message
ts number The time at which the log was produced, as milliseconds since the epoch
View JSON Schema on GitHub

JSON Schema

pipedream-observation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Observation",
  "title": "Observation",
  "type": "object",
  "description": "Any logs produced during the configuration of the prop",
  "required": [
    "k",
    "ts"
  ],
  "properties": {
    "err": {
      "$ref": "#/components/schemas/ObservationError"
    },
    "k": {
      "type": "string",
      "description": "The source of the log (e.g. `console.log`)"
    },
    "msg": {
      "type": "string",
      "description": "The log message"
    },
    "ts": {
      "type": "number",
      "description": "The time at which the log was produced, as milliseconds since the epoch"
    }
  }
}