Auth0 · Schema

ActionModuleReference

Reference to a module and its version used by an action.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
module_id string The unique ID of the module.
module_name string The name of the module.
module_version_id string The ID of the specific module version.
module_version_number integer The version number of the module.
View JSON Schema on GitHub

JSON Schema

auth0-actionmodulereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionModuleReference",
  "title": "ActionModuleReference",
  "type": "object",
  "description": "Reference to a module and its version used by an action.",
  "additionalProperties": false,
  "properties": {
    "module_id": {
      "type": "string",
      "description": "The unique ID of the module."
    },
    "module_name": {
      "type": "string",
      "description": "The name of the module."
    },
    "module_version_id": {
      "type": "string",
      "description": "The ID of the specific module version."
    },
    "module_version_number": {
      "type": "integer",
      "description": "The version number of the module."
    }
  }
}