{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.educationGradingSchemeGrade", "title": "educationGradingSchemeGrade", "required": [ "@odata.type" ], "type": "object", "properties": { "defaultPercentage": { "oneOf": [ { "type": "number", "format": "float", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The midpoint of the grade range." }, "displayName": { "type": "string", "description": "The name of this individual grade." }, "minPercentage": { "oneOf": [ { "type": "number", "format": "float", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "The minimum percentage of the total points needed to achieve this grade." }, "@odata.type": { "type": "string" } } }