AuthenticationProviderCreateRequest

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string
type string Provider type (e.g., weblogic.security.providers.authentication.DefaultAuthenticator)
activeTypes array Active identity assertion types
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-authenticationprovidercreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationProviderCreateRequest",
  "title": "AuthenticationProviderCreateRequest",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "Provider type (e.g., weblogic.security.providers.authentication.DefaultAuthenticator)"
    },
    "activeTypes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Active identity assertion types"
    }
  }
}