Pipedream · Schema

ConfigurablePropObject

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
View JSON Schema on GitHub

JSON Schema

pipedream-configurablepropobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurablePropObject",
  "title": "ConfigurablePropObject",
  "allOf": [
    {
      "$ref": "#/components/schemas/ConfigurablePropBase"
    },
    {
      "type": "object",
      "description": "This prop can accept a set of key-value pairs.",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "object"
          ]
        },
        "default": {
          "$ref": "#/components/schemas/ConfiguredPropValueObject"
        },
        "options": {
          "type": "array",
          "items": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/PropOption"
              },
              {
                "$ref": "#/components/schemas/PropOptionNested"
              },
              {
                "$ref": "#/components/schemas/PropOptionValue"
              }
            ]
          }
        }
      }
    }
  ]
}