Auth0 · Schema

ActionModuleSecretRequest

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string The name of the secret.
value string The value of the secret.
View JSON Schema on GitHub

JSON Schema

auth0-actionmodulesecretrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionModuleSecretRequest",
  "title": "ActionModuleSecretRequest",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the secret.",
      "maxLength": 255,
      "pattern": "^[^\u0000]*$"
    },
    "value": {
      "type": "string",
      "description": "The value of the secret.",
      "maxLength": 4096,
      "pattern": "^[^\u0000]*$"
    }
  }
}