Auth0 · Schema

ClientMyOrganizationPostConfiguration

Configuration related to the My Organization Configuration for the client.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_profile_id string The connection profile ID that this client should validate against.
user_attribute_profile_id string The user attribute profile ID that this client should validate against.
allowed_strategies array The allowed connection strategies for the My Organization Configuration.
connection_deletion_behavior object
View JSON Schema on GitHub

JSON Schema

auth0-clientmyorganizationpostconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientMyOrganizationPostConfiguration",
  "title": "ClientMyOrganizationPostConfiguration",
  "type": "object",
  "description": "Configuration related to the My Organization Configuration for the client.",
  "additionalProperties": false,
  "required": [
    "allowed_strategies",
    "connection_deletion_behavior"
  ],
  "x-release-lifecycle": "EA",
  "properties": {
    "connection_profile_id": {
      "type": "string",
      "description": "The connection profile ID that this client should validate against.",
      "format": "connection-profile-id"
    },
    "user_attribute_profile_id": {
      "type": "string",
      "description": "The user attribute profile ID that this client should validate against.",
      "format": "user-attribute-profile-id"
    },
    "allowed_strategies": {
      "type": "array",
      "description": "The allowed connection strategies for the My Organization Configuration.",
      "items": {
        "$ref": "#/components/schemas/ClientMyOrganizationConfigurationAllowedStrategiesEnum"
      }
    },
    "connection_deletion_behavior": {
      "$ref": "#/components/schemas/ClientMyOrganizationDeletionBehaviorEnum"
    }
  }
}