Pipedream · Schema

ConfigurablePropDataStore

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents
View JSON Schema on GitHub

JSON Schema

pipedream-configurablepropdatastore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigurablePropDataStore",
  "title": "ConfigurablePropDataStore",
  "allOf": [
    {
      "$ref": "#/components/schemas/ConfigurablePropBase"
    },
    {
      "type": "object",
      "description": "This prop is used to configure a data store for key-value storage.",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "data_store"
          ]
        }
      }
    }
  ]
}