ediscoveryReviewSet resource type

Namespace: microsoft.graph.security

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 static set of electronically stored information collected for use in a litigation, investigation, or regulatory request.

Methods

Method Return type Description
List ediscoveryReviewSets microsoft.graph.security.ediscoveryReviewSet collection Get a list of the ediscoveryReviewSet objects and their properties.
Create ediscoveryReviewSet microsoft.graph.security.ediscoveryReviewSet Create a new ediscoveryReviewSet object.
Get ediscoveryReviewSet microsoft.graph.security.ediscoveryReviewSet Read the properties and relationships of an ediscoveryReviewSet object.
export None Initiate an export of data from a review set.
addToReviewSet None Start the process of adding a collection from Microsoft 365 services to a review set.
List files microsoft.graph.security.ediscoveryFile collection Get the ediscoveryFile resources from the files navigation property.
List queries microsoft.graph.security.ediscoveryReviewSetQuery collection Get the list of queries associated with an eDiscovery review set.
Create ediscoveryReviewSetQuery microsoft.graph.security.ediscoveryReviewSetQuery Create a new ediscoveryReviewSetQuery object.

Properties

Property Type Description
createdBy microsoft.graph.identitySet The user who created the review set. Read-only.
createdDateTime DateTimeOffset The datetime when the review set was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
displayName String The review set name. The name is unique with a maximum limit of 64 characters.
id String The review set unique identifier. Read-only.

Relationships

Relationship Type Description
files microsoft.graph.security.ediscoveryFile collection Represents files within the review set.
queries microsoft.graph.security.ediscoveryReviewSetQuery collection Represents queries within the review set.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.ediscoveryReviewSet",
  "id": "String (identifier)",
  "displayName": "String",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "createdDateTime": "String (timestamp)"
}