Pipedream · Schema

HttpRequestBody

Body configuration for HTTP request

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Properties

Name Type Description
type string
contentType string
fields array
mode string
raw string
View JSON Schema on GitHub

JSON Schema

pipedream-httprequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpRequestBody",
  "title": "HttpRequestBody",
  "type": "object",
  "description": "Body configuration for HTTP request",
  "nullable": true,
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "fields",
        "raw"
      ],
      "nullable": true
    },
    "contentType": {
      "type": "string",
      "nullable": true
    },
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HttpRequestField"
      },
      "nullable": true
    },
    "mode": {
      "type": "string",
      "enum": [
        "fields",
        "raw"
      ],
      "nullable": true
    },
    "raw": {
      "type": "string",
      "nullable": true
    }
  }
}