Pipedream · Schema

DynamicProps

Dynamic properties of a saved component

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
id string The unique ID of the dynamic prop
configurableProps array The updated configurable properties
View JSON Schema on GitHub

JSON Schema

pipedream-dynamicprops-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicProps",
  "title": "DynamicProps",
  "type": "object",
  "description": "Dynamic properties of a saved component",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique ID of the dynamic prop"
    },
    "configurableProps": {
      "type": "array",
      "description": "The updated configurable properties",
      "items": {
        "$ref": "#/components/schemas/ConfigurableProp"
      }
    }
  }
}