Red Hat · Schema

Group

A group that enables bulk role and attribute assignment to users.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
id string The unique identifier of the group.
name string The name of the group.
path string The full path of the group in the hierarchy.
subGroups array Child groups.
View JSON Schema on GitHub

JSON Schema

red-hat-keycloak-admin-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Group",
  "type": "object",
  "description": "A group that enables bulk role and attribute assignment to users.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the group."
    },
    "name": {
      "type": "string",
      "description": "The name of the group."
    },
    "path": {
      "type": "string",
      "description": "The full path of the group in the hierarchy."
    },
    "subGroups": {
      "type": "array",
      "description": "Child groups."
    }
  }
}