Auth0 · Schema

NetworkAclRule

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
action object
match object
not_match object
scope object
View JSON Schema on GitHub

JSON Schema

auth0-networkaclrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkAclRule",
  "title": "NetworkAclRule",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "action",
    "scope"
  ],
  "properties": {
    "action": {
      "$ref": "#/components/schemas/NetworkAclAction"
    },
    "match": {
      "$ref": "#/components/schemas/NetworkAclMatch"
    },
    "not_match": {
      "$ref": "#/components/schemas/NetworkAclMatch"
    },
    "scope": {
      "$ref": "#/components/schemas/NetworkAclRuleScopeEnum"
    }
  }
}