Pipedream · Schema

EmittedEvent

An event emitted by a trigger

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
e object The event's payload
k string The event's type (set to 'emit' currently)
ts integer The event's timestamp in epoch milliseconds
id string The event's unique ID
View JSON Schema on GitHub

JSON Schema

pipedream-emittedevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmittedEvent",
  "title": "EmittedEvent",
  "type": "object",
  "description": "An event emitted by a trigger",
  "required": [
    "e",
    "k",
    "ts",
    "id"
  ],
  "properties": {
    "e": {
      "type": "object",
      "description": "The event's payload"
    },
    "k": {
      "type": "string",
      "description": "The event's type (set to 'emit' currently)"
    },
    "ts": {
      "type": "integer",
      "description": "The event's timestamp in epoch milliseconds"
    },
    "id": {
      "type": "string",
      "description": "The event's unique ID"
    }
  }
}