Microsoft Graph · Schema

educationTerm

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
displayName string Display name of the term.
endDate string End of the term.
externalId string ID of term in the syncing system.
startDate string Start of the term.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgrapheducationterm-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.educationTerm",
  "title": "educationTerm",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Display name of the term.",
      "nullable": true
    },
    "endDate": {
      "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
      "type": "string",
      "description": "End of the term.",
      "format": "date",
      "nullable": true
    },
    "externalId": {
      "type": "string",
      "description": "ID of term in the syncing system.",
      "nullable": true
    },
    "startDate": {
      "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
      "type": "string",
      "description": "Start of the term.",
      "format": "date",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}