ForgeRock · Schema

Group

A directory group entry

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
_id string Group identifier (mapped from LDAP cn)
_rev string Entry revision
cn string Group common name
description string Group description
members array Group member identifiers
View JSON Schema on GitHub

JSON Schema

forgerock-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "description": "A directory group entry",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Group identifier (mapped from LDAP cn)"
    },
    "_rev": {
      "type": "string",
      "description": "Entry revision",
      "readOnly": true
    },
    "cn": {
      "type": "string",
      "description": "Group common name"
    },
    "description": {
      "type": "string",
      "description": "Group description"
    },
    "members": {
      "type": "array",
      "description": "Group member identifiers",
      "items": {
        "type": "string"
      }
    }
  }
}