Pipedream · Schema

ConfiguredPropValueSql

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
value string The raw SQL query, as provided by the user
query string The SQL query to execute
params array The list of parameters for the prepared statement
usePreparedStatements boolean Whether to use prepared statements for the query or not
View JSON Schema on GitHub

JSON Schema

pipedream-configuredpropvaluesql-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfiguredPropValueSql",
  "title": "ConfiguredPropValueSql",
  "type": "object",
  "required": [
    "value",
    "query",
    "params",
    "usePreparedStatements"
  ],
  "properties": {
    "value": {
      "type": "string",
      "description": "The raw SQL query, as provided by the user"
    },
    "query": {
      "type": "string",
      "description": "The SQL query to execute"
    },
    "params": {
      "type": "array",
      "description": "The list of parameters for the prepared statement",
      "items": {
        "type": "string"
      }
    },
    "usePreparedStatements": {
      "type": "boolean",
      "description": "Whether to use prepared statements for the query or not"
    }
  }
}