ForgeRock · Schema

GovernanceRole

A governance role

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
_id string
name string
description string
owner string
members array
entitlements array
View JSON Schema on GitHub

JSON Schema

forgerock-governancerole-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GovernanceRole",
  "title": "GovernanceRole",
  "type": "object",
  "description": "A governance role",
  "properties": {
    "_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "entitlements": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}