Pipedream · Schema

PropOption

A configuration option for a component's prop

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
label string The human-readable label for the option
value object
View JSON Schema on GitHub

JSON Schema

pipedream-propoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropOption",
  "title": "PropOption",
  "type": "object",
  "description": "A configuration option for a component's prop",
  "required": [
    "label",
    "value"
  ],
  "properties": {
    "label": {
      "type": "string",
      "description": "The human-readable label for the option"
    },
    "value": {
      "$ref": "#/components/schemas/PropOptionValue"
    }
  }
}