Frontegg · Schema

AddRolesToPermissionRequest

JSON Schema for Frontegg identity AddRolesToPermissionRequest entity, derived from the published OpenAPI specification.

AuthenticationAuthorizationIdentity ManagementCIAMB2B SaaSMulti-TenancyRBACSSOSCIMEntitlementsOAuthOpenID Connect

Properties

Name Type Description
roleIds array The permission will be assigned to the specified roles
View JSON Schema on GitHub

JSON Schema

frontegg-identity-addrolestopermissionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frontegg/main/json-schema/frontegg-identity-addrolestopermissionrequest-schema.json",
  "title": "AddRolesToPermissionRequest",
  "description": "JSON Schema for Frontegg identity AddRolesToPermissionRequest entity, derived from the published OpenAPI specification.",
  "type": "object",
  "properties": {
    "roleIds": {
      "description": "The permission will be assigned to the specified roles",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "roleIds"
  ]
}