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

Represents a custom scheme for grading.

Inherits from entity.

Methods

Method Return type Description
List educationGradingScheme collection Get a list of the educationGradingScheme objects and their properties.
Create educationGradingScheme Create a new educationGradingScheme object.
Get educationGradingScheme Read the properties and relationships of an educationGradingScheme object.
Update educationGradingScheme Update the properties of an educationGradingScheme object.
Delete None Delete an educationGradingScheme object.

Properties

Property Type Description
displayName String The name of the grading scheme.
grades educationGradingSchemeGrade collection The grades that make up the scheme.
hidePointsDuringGrading Boolean The display setting for the UI. Indicates whether teachers can grade with points in addition to letter grades.
id String The ID of the grading scheme. Inherited from entity.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.educationGradingScheme",
  "id": "String (identifier)",
  "displayName": "String",
  "grades": [
    {
      "@odata.type": "microsoft.graph.educationGradingSchemeGrade"
    }
  ],
  "hidePointsDuringGrading": "Boolean"
}