Auth0 · Schema

ActionSecretResponse

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string The name of the particular secret, e.g. API_KEY.
updated_at string The time when the secret was last updated.
View JSON Schema on GitHub

JSON Schema

auth0-actionsecretresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionSecretResponse",
  "title": "ActionSecretResponse",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the particular secret, e.g. API_KEY.",
      "default": "mySecret"
    },
    "updated_at": {
      "type": "string",
      "description": "The time when the secret was last updated.",
      "default": "2021-01-01T00:00:00.000Z",
      "format": "date-time"
    }
  }
}