Microsoft Graph · Schema
rubricLevel
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| description | object | The description of this rubric level. |
| displayName | string | The name of this rubric level. |
| grading | object | Null if this is a no-points rubric; educationAssignmentPointsGradeType if it's a points rubric. |
| levelId | string | The ID of this resource. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.rubricLevel",
"title": "rubricLevel",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"description": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.educationItemBody"
},
{
"type": "object",
"nullable": true
}
],
"description": "The description of this rubric level."
},
"displayName": {
"type": "string",
"description": "The name of this rubric level.",
"nullable": true
},
"grading": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.educationAssignmentGradeType"
},
{
"type": "object",
"nullable": true
}
],
"description": "Null if this is a no-points rubric; educationAssignmentPointsGradeType if it's a points rubric."
},
"levelId": {
"type": "string",
"description": "The ID of this resource.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}