Auth0 · Schema

NetworkAclAction

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
block object
allow object
log object
redirect object
redirect_uri string The URI to which the match or not_match requests will be routed
View JSON Schema on GitHub

JSON Schema

auth0-networkaclaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkAclAction",
  "title": "NetworkAclAction",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "block": {
      "$ref": "#/components/schemas/NetworkAclActionBlockEnum"
    },
    "allow": {
      "$ref": "#/components/schemas/NetworkAclActionAllowEnum"
    },
    "log": {
      "$ref": "#/components/schemas/NetworkAclActionLogEnum"
    },
    "redirect": {
      "$ref": "#/components/schemas/NetworkAclActionRedirectEnum"
    },
    "redirect_uri": {
      "type": "string",
      "description": "The URI to which the match or not_match requests will be routed",
      "minLength": 1,
      "maxLength": 2000
    }
  }
}