Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 2.84 KB

File metadata and controls

61 lines (46 loc) · 2.84 KB
title roleGroup resource type
description Represents a named collection of individual roles.
author mlafleur
ms.localizationpriority medium
ms.subservice industry-data-etl
doc_type resourcePageType
ms.date 07/22/2024

roleGroup resource type

Namespace: microsoft.graph.industryData

[!INCLUDE beta-disclaimer]

Represents a named collection of individual roles.

Transformation of the data is often shaped by each individual user's role within an organization. These roles are defined as reference definitions. Given the number of potential roles, binding each role individually would result in a tedious user experience. Role groups are simply a collection of role values that provides a convenient way to reference multiple reference definitions. The default role groups are Students and Staff.

Methods

Method Return type Description
List microsoft.graph.industryData.roleGroup collection Get a list of the roleGroup objects and their properties.
Get microsoft.graph.industryData.roleGroup Read the properties and relationships of a roleGroup object.

Properties

Property Type Description
displayName String The name of the role group.
roles microsoft.graph.industryData.roleReferenceValue collection The set of roles included in the role group.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.industryData.roleGroup",
  "displayName": "String",
  "roles": [
    {
      "@odata.type": "microsoft.graph.industryData.roleReferenceValue"
    }
  ]
}