Kong · Schema

PortalClaimMappings

Mappings from a portal developer atribute to an Identity Provider claim.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
name string
email string
groups string
View JSON Schema on GitHub

JSON Schema

kong-portalclaimmappings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PortalClaimMappings",
  "title": "PortalClaimMappings",
  "description": "Mappings from a portal developer atribute to an Identity Provider claim.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "name",
      "default": "name"
    },
    "email": {
      "type": "string",
      "example": "email",
      "default": "email"
    },
    "groups": {
      "type": "string",
      "example": "custom-group-claim",
      "default": "groups"
    }
  },
  "example": {
    "name": "name",
    "email": "email",
    "groups": "custom-group-claim"
  },
  "maxProperties": 3,
  "minProperties": 0
}