Auth0 · Schema

ActionModuleAction

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
action_id string The unique ID of the action.
action_name string The name of the action.
module_version_id string The ID of the module version this action is using.
module_version_number integer The version number of the module this action is using.
supported_triggers array The triggers that this action supports.
View JSON Schema on GitHub

JSON Schema

auth0-actionmoduleaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionModuleAction",
  "title": "ActionModuleAction",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "action_id": {
      "type": "string",
      "description": "The unique ID of the action."
    },
    "action_name": {
      "type": "string",
      "description": "The name of the action."
    },
    "module_version_id": {
      "type": "string",
      "description": "The ID of the module version this action is using."
    },
    "module_version_number": {
      "type": "integer",
      "description": "The version number of the module this action is using."
    },
    "supported_triggers": {
      "type": "array",
      "description": "The triggers that this action supports.",
      "items": {
        "$ref": "#/components/schemas/ActionTrigger",
        "x-release-lifecycle": "GA"
      }
    }
  }
}