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

Methods

Method Return Type Description
List reviewSets microsoft.graph.ediscovery.reviewSet collection Get a collection of reviewSet objects.
Create reviewSet microsoft.graph.ediscovery.reviewSet Create a new reviewSet.
Get reviewSet microsoft.graph.ediscovery.reviewSet Read the properties and relationships of a reviewSet object.
List queries microsoft.graph.ediscovery.reviewSetQuery collection Get a list of reviewSetQuery resources.
export None Initiate an export of data from the reviewset.
addToReviewSet None Add data from a sourceCollection to a reviewset.

Properties

Property Type Description
createdBy 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
queries microsoft.graph.ediscovery.reviewSetQuery collection Read-only. Nullable.

JSON representation

The following is a JSON representation of the resource.

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