Auth0 · Schema

ClientDefaultOrganization

Defines the default Organization ID and flows

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
organization_id string The default Organization ID to be used
flows array The default Organization usage
View JSON Schema on GitHub

JSON Schema

auth0-clientdefaultorganization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientDefaultOrganization",
  "title": "ClientDefaultOrganization",
  "type": [
    "object",
    "null"
  ],
  "description": "Defines the default Organization ID and flows",
  "additionalProperties": false,
  "required": [
    "organization_id",
    "flows"
  ],
  "properties": {
    "organization_id": {
      "type": "string",
      "description": "The default Organization ID to be used",
      "format": "organization-id"
    },
    "flows": {
      "type": "array",
      "description": "The default Organization usage",
      "items": {
        "$ref": "#/components/schemas/ClientDefaultOrganizationFlowsEnum"
      }
    }
  }
}