educationAssignmentPointsGrade 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.
When an assignment is set to a points grade type, each submission has this object associated with the submission.grade property. This creates a subclass from educationAssignmentGrade, which will add the who data to this property. The max points are stored in the assignments.grading property.
Properties
Property | Type | Description |
---|---|---|
points | Single | Number of points a teacher is giving this submission object. |
gradedBy | identitySet | User who did the grading. |
gradedDateTime | DateTimeOffset | Moment in time when the grade was applied to this submission object. 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 |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"points": "Double",
"gradedBy": {"@odata.type": "microsoft.graph.identitySet"},
"gradedDateTime": "String (timestamp)"
}