Microsoft Graph · Schema

microsoft.graph.educationAssignmentPointsGradeType

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgrapheducationassignmentpointsgradetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.educationAssignmentPointsGradeType",
  "title": "microsoft.graph.educationAssignmentPointsGradeType",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.educationAssignmentGradeType"
    },
    {
      "title": "educationAssignmentPointsGradeType",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "maxPoints": {
          "oneOf": [
            {
              "type": "number",
              "format": "float",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "Max points possible for this assignment."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.educationAssignmentPointsGradeType"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.educationAssignmentPointsGradeType"
}