Pipedream · Schema

HttpRequestField

A name-value field for HTTP request configuration

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
name string The field name
value string The field value
View JSON Schema on GitHub

JSON Schema

pipedream-httprequestfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpRequestField",
  "title": "HttpRequestField",
  "type": "object",
  "description": "A name-value field for HTTP request configuration",
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The field name"
    },
    "value": {
      "type": "string",
      "description": "The field value"
    }
  }
}