Microsoft Graph · Schema
educationGradingSchemeGrade
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| defaultPercentage | object | The midpoint of the grade range. |
| displayName | string | The name of this individual grade. |
| minPercentage | object | The minimum percentage of the total points needed to achieve this grade. |
| @odata.type | string |
JSON Schema
{
"$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"
}
}
}