ediscoveryReviewTag resource type
Article 05/24/2024
4 contributors
Feedback
In this article
Namespace: microsoft.graph.security
Represents an eDiscovery tag, which is used to mark documents during review to separate responsive and nonresponsive content.
Methods
Properties
Property
Type
Description
childSelectability
microsoft.graph.security.childSelectability
Indicates whether a single or multiple child tags can be associated with a document. Possible values are: One
, Many
. This value controls whether the UX presents the tags as checkboxes or a radio button group.
createdBy
identitySet
The user who created the tag.
description
String
The description for the tag.
displayName
String
Display name of the tag.
id
String
Unique identifier for the tag.
lastModifiedDateTime
DateTimeOffset
The date and time the tag was last modified.
childSelectability values
Member
Description
One
Only one child can be selected. This corresponds to a UI that presents the tags with radio buttons.
Many
Zero or many children can be selected. This corresponds to a UI that presents the tags with checkboxes.
Relationships
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.ediscoveryReviewTag",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"childSelectability": "String"
}