Pipedream · Schema

ConfigurablePropApp

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
View JSON Schema on GitHub

JSON Schema

pipedream-configurablepropapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurablePropApp",
  "title": "ConfigurablePropApp",
  "allOf": [
    {
      "$ref": "#/components/schemas/ConfigurablePropBase"
    },
    {
      "type": "object",
      "description": "This prop is used to configure an account for a specific app",
      "required": [
        "type",
        "app"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "app"
          ]
        },
        "app": {
          "type": "string",
          "description": "The name slug of the app, e.g. 'github', 'slack', etc. This is used to identify the app for which the account is being configured."
        }
      }
    }
  ]
}