Red Hat · Schema

IdentityProviderRepresentation

An external identity provider configured for federated authentication.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
alias string The unique alias for the identity provider.
displayName string The display name of the identity provider.
providerId string The provider type identifier.
enabled boolean Whether the identity provider is enabled.
config object Provider-specific configuration.
View JSON Schema on GitHub

JSON Schema

red-hat-keycloak-admin-identity-provider-representation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IdentityProviderRepresentation",
  "type": "object",
  "description": "An external identity provider configured for federated authentication.",
  "properties": {
    "alias": {
      "type": "string",
      "description": "The unique alias for the identity provider."
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the identity provider."
    },
    "providerId": {
      "type": "string",
      "description": "The provider type identifier."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the identity provider is enabled."
    },
    "config": {
      "type": "object",
      "description": "Provider-specific configuration."
    }
  }
}