Auth0 · Schema

GetNetworkAclsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string
description string
active boolean
priority number
rule object
created_at string The timestamp when the Network ACL Configuration was created
updated_at string The timestamp when the Network ACL Configuration was last updated
View JSON Schema on GitHub

JSON Schema

auth0-getnetworkaclsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetNetworkAclsResponseContent",
  "title": "GetNetworkAclsResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "active": {
      "type": "boolean"
    },
    "priority": {
      "type": "number",
      "minimum": 1,
      "maximum": 100
    },
    "rule": {
      "$ref": "#/components/schemas/NetworkAclRule"
    },
    "created_at": {
      "type": "string",
      "description": "The timestamp when the Network ACL Configuration was created"
    },
    "updated_at": {
      "type": "string",
      "description": "The timestamp when the Network ACL Configuration was last updated"
    }
  }
}