Microsoft Graph · Schema
microsoft.graph.educationAssignmentSettings
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.educationAssignmentSettings",
"title": "microsoft.graph.educationAssignmentSettings",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "educationAssignmentSettings",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"submissionAnimationDisabled": {
"type": "boolean",
"description": "Indicates whether to show the turn-in celebration animation. If true, indicates to skip the animation. The default value is false.",
"nullable": true
},
"defaultGradingScheme": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.educationGradingScheme"
},
{
"type": "object",
"nullable": true
}
],
"description": "The default grading scheme for assignments created in this class.",
"x-ms-navigationProperty": true
},
"gradingCategories": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.educationGradingCategory"
},
"description": "When set, enables users to weight assignments differently when computing a class average grade.",
"x-ms-navigationProperty": true
},
"gradingSchemes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.educationGradingScheme"
},
"description": "The grading schemes that can be attached to assignments created in this class.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.educationAssignmentSettings"
}