{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.educationAssignmentPointsGrade", "title": "microsoft.graph.educationAssignmentPointsGrade", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.educationAssignmentGrade" }, { "title": "educationAssignmentPointsGrade", "required": [ "@odata.type" ], "type": "object", "properties": { "points": { "oneOf": [ { "type": "number", "format": "float", "nullable": true }, { "type": "string", "nullable": true }, { "$ref": "#/components/schemas/ReferenceNumeric" } ], "description": "Number of points a teacher is giving this submission object." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.educationAssignmentPointsGrade" } } } ], "x-ms-discriminator-value": "#microsoft.graph.educationAssignmentPointsGrade" }