educationRubric resource type

Namespace: microsoft.graph

Represents 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.

For more information, see Education rubric overview.

Methods

Method Return Type Description
List educationRubric collection Retrieve a list of educationRubric objects.
Create educationRubric Create a new educationRubric object.
Get educationRubric Read properties and relationships of an educationRubric object.
Update educationRubric Update an educationRubric object.
Delete None Delete an 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. 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. You can use 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. 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 JSON representation shows the resource type.

{
  "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"}]
}