labelDetails resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents the label details of an information protection label. labelDetails provides information about a single information protection label. Inherits from the parentLabelDetails. Can be returned by evaluateRemoval, evaluateApplication, and extractLabel
Properties
Property | Type | Description |
---|---|---|
color | String | The color that the user interface should display for the label, if configured. |
description | String | The admin-defined description for the label. |
id | String | The label ID is a globally unique identifier (GUID). |
isActive | Boolean | Indicates whether the label is active or not. Active labels should be hidden or disabled in user interfaces. |
name | String | The plaintext name of the label. |
sensitivity | Int32 | The sensitivity value of the label, where lower is less sensitive. |
tooltip | String | The tooltip that should be displayed for the label in a user interface. |
parent | parentLabelDetails | The parent label associated with a child label. |
JSON representation
The following JSON representation shows the resource type.
{
"color": "String",
"description": "String",
"id": "String",
"isActive": true,
"name": "String",
"sensitivity": 1024,
"tooltip": "String"
}