Auth0 · Schema

CreateRoleRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
name string Name of the role.
description string Description of the role.
View JSON Schema on GitHub

JSON Schema

auth0-createrolerequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRoleRequestContent",
  "title": "CreateRoleRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the role."
    },
    "description": {
      "type": "string",
      "description": "Description of the role."
    }
  }
}