Auth0 · Schema

OrganizationInvitationInviter

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string The inviter's name.
View JSON Schema on GitHub

JSON Schema

auth0-organizationinvitationinviter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationInvitationInviter",
  "title": "OrganizationInvitationInviter",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The inviter's name.",
      "default": "Jane Doe",
      "minLength": 1,
      "maxLength": 300
    }
  }
}