educationFeedback resource type

Namespace: microsoft.graph

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.

Feedback from a teacher to a student. This property represents both the text part of the feedback along with the who.

Properties

Property Type Description
feedbackBy identitySet User who created the feedback.
feedbackDateTime DateTimeOffset Moment in time when the feedback was given. 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
text itemBody Feedback.

JSON representation

The following is a JSON representation of the resource.

{
  "feedbackBy": {"@odata.type": "microsoft.graph.identitySet"},
  "feedbackDateTime": "String (timestamp)",
  "text": {"@odata.type": "microsoft.graph.itemBody"}
}