Microsoft Graph · Schema

educationCourse

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
courseNumber string Unique identifier for the course.
description string Description of the course.
displayName string Name of the course.
externalId string ID of the course from the syncing system.
subject string Subject of the course.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgrapheducationcourse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.educationCourse",
  "title": "educationCourse",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "courseNumber": {
      "type": "string",
      "description": "Unique identifier for the course.",
      "nullable": true
    },
    "description": {
      "type": "string",
      "description": "Description of the course.",
      "nullable": true
    },
    "displayName": {
      "type": "string",
      "description": "Name of the course.",
      "nullable": true
    },
    "externalId": {
      "type": "string",
      "description": "ID of the course from the syncing system.",
      "nullable": true
    },
    "subject": {
      "type": "string",
      "description": "Subject of the course.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}