Pipedream · Schema

Emitter

A component/interface that emits events

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
View JSON Schema on GitHub

JSON Schema

pipedream-emitter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Emitter",
  "title": "Emitter",
  "description": "A component/interface that emits events",
  "anyOf": [
    {
      "$ref": "#/components/schemas/DeployedComponent"
    },
    {
      "$ref": "#/components/schemas/HttpInterface"
    },
    {
      "$ref": "#/components/schemas/TimerInterface"
    }
  ],
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "DeployedComponent": "#/components/schemas/DeployedComponent",
      "HttpInterface": "#/components/schemas/HttpInterface",
      "TimerInterface": "#/components/schemas/TimerInterface"
    }
  }
}