Kong · Schema

CreateAppAuthStrategyRequest

Request body for creating an Application Auth Strategy

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-createappauthstrategyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAppAuthStrategyRequest",
  "title": "CreateAppAuthStrategyRequest",
  "x-speakeasy-entity": "ApplicationAuthStrategy",
  "description": "Request body for creating an Application Auth Strategy",
  "type": "object",
  "discriminator": {
    "propertyName": "strategy_type",
    "mapping": {
      "key_auth": "#/components/schemas/AppAuthStrategyKeyAuthRequest",
      "openid_connect": "#/components/schemas/AppAuthStrategyOpenIDConnectRequest"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/AppAuthStrategyKeyAuthRequest"
    },
    {
      "$ref": "#/components/schemas/AppAuthStrategyOpenIDConnectRequest"
    }
  ],
  "required": [
    "strategy_type"
  ]
}