{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.educationGradingScheme", "title": "microsoft.graph.educationGradingScheme", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "educationGradingScheme", "required": [ "@odata.type" ], "type": "object", "properties": { "displayName": { "type": "string", "description": "The name of the grading scheme." }, "grades": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.educationGradingSchemeGrade" }, "description": "The grades that make up the scheme." }, "hidePointsDuringGrading": { "type": "boolean", "description": "The display setting for the UI. Indicates whether teachers can grade with points in addition to letter grades." }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.educationGradingScheme" }