Auth0 · Schema

ResourceServerScope

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
value string Value of this scope.
description string User-friendly description of this scope.
View JSON Schema on GitHub

JSON Schema

auth0-resourceserverscope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceServerScope",
  "title": "ResourceServerScope",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "description": "Value of this scope.",
      "minLength": 1,
      "maxLength": 280
    },
    "description": {
      "type": "string",
      "description": "User-friendly description of this scope.",
      "maxLength": 500
    }
  }
}