educationRubric resource type

Namespace: microsoft.graph

A grading rubric that can be attached to an assignment. A rubric is associated with an educationUser (teacher), and attached to one or more educationAssignment resources.

See Education rubric overview for more information.

Methods

Method Return Type Description
Create educationRubric educationRubric Create a new educationRubric object.
Get educationRubric educationRubric Read properties and relationships of educationRubric object.
Update educationRubric educationRubric Update educationRubric object.
Delete educationRubric None Delete educationRubric object.

Properties

Property Type Description
createdBy identitySet The user who created this resource.
createdDateTime DateTimeOffset 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
description itemBody The description of this rubric.
displayName String The name of this rubric.
grading educationAssignmentGradeType The grading type of this rubric -- null for a no-points rubric, or educationAssignmentPointsGradeType for a points rubric.
id String Unique identifier for the rubric.
lastModifiedBy identitySet The last user to modify the resource.
lastModifiedDateTime DateTimeOffset Moment in time when the resource was last modified. 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
levels rubricLevel collection The collection of levels making up this rubric.
qualities rubricQuality collection The collection of qualities making up this rubric.

Relationships

None

JSON representation

The following is a JSON representation of the resource.

{
  "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
  "createdDateTime": "String (timestamp)",
  "description": {"@odata.type": "microsoft.graph.itemBody"},
  "displayName": "String",
  "grading": {"@odata.type": "microsoft.graph.educationAssignmentGradeType"},
  "id": "String (identifier)",
  "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "lastModifiedDateTime": "String (timestamp)",
  "levels": [{"@odata.type": "microsoft.graph.rubricLevel"}],
  "qualities": [{"@odata.type": "microsoft.graph.rubricQuality"}]
}