Auth0 · Schema

FlowActionAuth0CreateUser

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
alias string
type string
action string
allow_failure boolean
mask_output boolean
params object
View JSON Schema on GitHub

JSON Schema

auth0-flowactionauth0createuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionAuth0CreateUser",
  "title": "FlowActionAuth0CreateUser",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "type",
    "action",
    "params"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "forms-custom-identifier"
    },
    "alias": {
      "type": "string",
      "maxLength": 100
    },
    "type": {
      "type": "string",
      "enum": [
        "AUTH0"
      ]
    },
    "action": {
      "type": "string",
      "enum": [
        "CREATE_USER"
      ]
    },
    "allow_failure": {
      "type": "boolean"
    },
    "mask_output": {
      "type": "boolean"
    },
    "params": {
      "$ref": "#/components/schemas/FlowActionAuth0CreateUserParams"
    }
  }
}