Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
Represents an eDiscovery tag, which is used to mark documents during review to separate responsive and nonresponsive content.
Methods
| Method | Return type | Description |
|---|---|---|
| List | microsoft.graph.security.ediscoveryReviewTag collection | Get a list of the ediscoveryReviewTag objects and their properties. |
| Create | microsoft.graph.security.ediscoveryReviewTag | Create a new ediscoveryReviewTag object. |
| Get | microsoft.graph.security.ediscoveryReviewTag | Read the properties and relationships of an ediscoveryReviewTag object. |
| Update | microsoft.graph.security.ediscoveryReviewTag | Update the properties of an ediscoveryReviewTag object. |
| Delete | None | Delete an ediscoveryReviewTag object. |
| List tags as hierarchy | microsoft.graph.security.ediscoveryReviewTag collection | List tags organized as hierarchy. |
Properties
| Property | Type | Description |
|---|---|---|
| childSelectability | microsoft.graph.security.childSelectability | Indicates whether a single or multiple child tags can be associated with a document. The 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
| Relationship | Type | Description |
|---|---|---|
| childTags | microsoft.graph.security.ediscoveryReviewTag collection | Returns the tags that are a child of a tag. |
| parent | microsoft.graph.security.ediscoveryReviewTag | Returns the parent tag of the specified tag. |
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"
}