Auth0 · Schema

PermissionsResponsePayload

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
resource_server_identifier string Resource server (API) identifier that this permission is for.
permission_name string Name of this permission.
resource_server_name string Resource server (API) name this permission is for.
description string Description of this permission.
View JSON Schema on GitHub

JSON Schema

auth0-permissionsresponsepayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermissionsResponsePayload",
  "title": "PermissionsResponsePayload",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "resource_server_identifier": {
      "type": "string",
      "description": "Resource server (API) identifier that this permission is for."
    },
    "permission_name": {
      "type": "string",
      "description": "Name of this permission."
    },
    "resource_server_name": {
      "type": "string",
      "description": "Resource server (API) name this permission is for."
    },
    "description": {
      "type": "string",
      "description": "Description of this permission."
    }
  }
}