Kong · Schema

ApplicationRegistrationStatus

The status of an application registration request. Each registration is linked to a single API, and application credentials will not grant access to the API until the registration is approved. Pending, revoked, and rejected registrations will not provide access to the API.

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

JSON Schema

kong-applicationregistrationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationRegistrationStatus",
  "title": "ApplicationRegistrationStatus",
  "description": "The status of an application registration request. Each registration is linked to a single API, and application credentials will not grant access to the API until the registration is approved.\nPending, revoked, and rejected registrations will not provide access to the API.",
  "type": "string",
  "example": "approved",
  "enum": [
    "approved",
    "pending",
    "revoked",
    "rejected"
  ],
  "x-speakeasy-unknown-values": "allow"
}