Pipedream · Schema

ConfigurePropResponse

Response received after configuring a component's prop

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
options object
stringOptions array Available options for the configured prop
observations array
context object New context after configuring the prop
errors array Any errors that occurred during configuration
View JSON Schema on GitHub

JSON Schema

pipedream-configurepropresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurePropResponse",
  "title": "ConfigurePropResponse",
  "type": "object",
  "description": "Response received after configuring a component's prop",
  "properties": {
    "options": {
      "$ref": "#/components/schemas/ConfigurePropOptions"
    },
    "stringOptions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Available options for the configured prop",
      "nullable": true
    },
    "observations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Observation"
      },
      "nullable": true
    },
    "context": {
      "type": "object",
      "description": "New context after configuring the prop",
      "nullable": true
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Any errors that occurred during configuration"
    }
  }
}