tag resource type

Namespace: microsoft.graph.ediscovery

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 an eDiscovery tag, which is used to mark documents during review to separate responsive and non-responsive content.

Inherits from entity.

Methods

Method Return type Description
List tags microsoft.graph.ediscovery.tag collection Get a list of the tag objects and their properties.
Create tag microsoft.graph.ediscovery.tag Create a new tag object.
Get tag microsoft.graph.ediscovery.tag Read the properties and relationships of a tag object.
Update tag microsoft.graph.ediscovery.tag Update the properties of a tag object.
Delete tag None Delete a tag object.
asHierarchy microsoft.graph.ediscovery.tag collection Lists all tags, including their hierarchy.
List childTags microsoft.graph.ediscovery.tag collection Get a list of child tag objects associated with a tag.

Properties

Property Type Description
childSelectability microsoft.graph.ediscovery.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

Relationship Type Description
childTags microsoft.graph.ediscovery.tag collection Returns the tags that are a child of a tag.
parent microsoft.graph.ediscovery.tag Returns the parent tag of the specified tag.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.ediscovery.tag",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "childSelectability": "String",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "lastModifiedDateTime": "String (timestamp)"
}