Auth0 · Schema

Auth0 Role

JSON Schema for Auth0 Role entity, extracted from the Auth0 Management API OpenAPI v2.0 spec (component: Role).

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string ID for this role.
name string Name of this role.
description string Description of this role.
View JSON Schema on GitHub

JSON Schema

auth0-role-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/auth0/main/json-schema/auth0-role-schema.json",
  "title": "Auth0 Role",
  "description": "JSON Schema for Auth0 Role entity, extracted from the Auth0 Management API OpenAPI v2.0 spec (component: Role).",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "ID for this role."
    },
    "name": {
      "type": "string",
      "description": "Name of this role."
    },
    "description": {
      "type": "string",
      "description": "Description of this role."
    }
  }
}