Apigee · Schema

EventParameter

A parameter with a key and value.

Advanced API SecurityAgentic AIAnalyticsAPI GatewayAPI GovernanceAPI HubAPI ManagementDeveloper PortalEnterpriseGenerative AIHybridIntegrationMicroservicesMCPMonetization

Properties

Name Type Description
key string
value object
View JSON Schema on GitHub

JSON Schema

apigee-eventparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventParameter",
  "title": "EventParameter",
  "type": "object",
  "description": "A parameter with a key and value.",
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {
      "$ref": "#/components/schemas/ValueType"
    }
  }
}