Auth0 · Schema

EventStreamCloudEventOrgConnectionUpdatedObjectOrganization

Information about an Auth0 Organization.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string The human-readable identifier for the organization that will be used by end-users to direct them to their organization in your application..
id string ID of the organization.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventorgconnectionupdatedobjectorganization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventOrgConnectionUpdatedObjectOrganization",
  "title": "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization",
  "type": "object",
  "description": "Information about an Auth0 Organization.",
  "additionalProperties": false,
  "required": [
    "id"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The human-readable identifier for the organization that will be used by end-users to direct them to their organization in your application..",
      "pattern": "^(?:(?!org_))[a-z0-9]([a-z0-9-_]*[a-z0-9])?$"
    },
    "id": {
      "type": "string",
      "description": "ID of the organization.",
      "pattern": "org_[a-zA-Z0-9]{16}"
    }
  }
}