Auth0 · Schema

UpdateActionModuleRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
code string The source code of the action module.
secrets array The secrets to associate with the action module.
dependencies array The npm dependencies of the action module.
View JSON Schema on GitHub

JSON Schema

auth0-updateactionmodulerequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateActionModuleRequestContent",
  "title": "UpdateActionModuleRequestContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "code": {
      "type": "string",
      "description": "The source code of the action module.",
      "maxLength": 65536,
      "pattern": "^[^\u0000]*$"
    },
    "secrets": {
      "type": "array",
      "description": "The secrets to associate with the action module.",
      "items": {
        "$ref": "#/components/schemas/ActionModuleSecretRequest"
      }
    },
    "dependencies": {
      "type": "array",
      "description": "The npm dependencies of the action module.",
      "items": {
        "$ref": "#/components/schemas/ActionModuleDependencyRequest"
      }
    }
  }
}