Kong · Schema

OAuthAuthConfig

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
client_id string The OAuth client identifier.
authorization_endpoint string The URL where users are redirected to authorize access.
token_endpoint string The URL used to retrieve access tokens.
View JSON Schema on GitHub

JSON Schema

kong-oauthauthconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAuthAuthConfig",
  "title": "OAuthAuthConfig",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "oauth"
    },
    "client_id": {
      "description": "The OAuth client identifier.",
      "type": "string",
      "example": "d745213a-b7e8-4998-abe3-41f164001970"
    },
    "authorization_endpoint": {
      "description": "The URL where users are redirected to authorize access.",
      "type": "string",
      "format": "uri",
      "example": "https://identity.service.com/oauth/authorize"
    },
    "token_endpoint": {
      "description": "The URL used to retrieve access tokens.",
      "type": "string",
      "format": "uri",
      "example": "https://identity.service.com/oauth/token"
    }
  },
  "required": [
    "type",
    "client_id",
    "authorization_endpoint",
    "token_endpoint"
  ],
  "x-speakeasy-name-override": "OauthAuthConfig"
}