Microsoft Graph · Schema

rubricQuality

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
criteria array The collection of criteria for this rubric quality.
description object The description of this rubric quality.
displayName string The name of this rubric quality.
qualityId string The ID of this resource.
weight object If present, a numerical weight for this quality. Weights must add up to 100.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrubricquality-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.rubricQuality",
  "title": "rubricQuality",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "criteria": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.rubricCriterion"
      },
      "description": "The collection of criteria for this rubric quality."
    },
    "description": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.educationItemBody"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The description of this rubric quality."
    },
    "displayName": {
      "type": "string",
      "description": "The name of this rubric quality.",
      "nullable": true
    },
    "qualityId": {
      "type": "string",
      "description": "The ID of this resource.",
      "nullable": true
    },
    "weight": {
      "oneOf": [
        {
          "type": "number",
          "format": "float",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "If present, a numerical weight for this quality.  Weights must add up to 100."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}