Auth0 · Schema

SetRulesConfigResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
key string Key for a rules config variable.
value string Value for a rules config variable.
View JSON Schema on GitHub

JSON Schema

auth0-setrulesconfigresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetRulesConfigResponseContent",
  "title": "SetRulesConfigResponseContent",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "key",
    "value"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "Key for a rules config variable.",
      "default": "MY_RULES_CONFIG_KEY",
      "minLength": 1,
      "maxLength": 127,
      "pattern": "^[A-Za-z0-9_\\-@*+:]*$"
    },
    "value": {
      "type": "string",
      "description": "Value for a rules config variable.",
      "default": "MY_RULES_CONFIG_VALUE"
    }
  }
}