Apigee · Schema

HttpBody

Raw HTTP body content.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationsMicroservicesMCPModel Context ProtocolMonetization

Properties

Name Type Description
contentType string The HTTP Content-Type header value.
data string The raw HTTP body data as bytes.
extensions array Application-specific metadata.
View JSON Schema on GitHub

JSON Schema

apigee-httpbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HttpBody",
  "title": "HttpBody",
  "type": "object",
  "description": "Raw HTTP body content.",
  "properties": {
    "contentType": {
      "type": "string",
      "description": "The HTTP Content-Type header value."
    },
    "data": {
      "type": "string",
      "format": "byte",
      "description": "The raw HTTP body data as bytes."
    },
    "extensions": {
      "type": "array",
      "description": "Application-specific metadata.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}