educationResource resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

An abstract type that represents the base class for all education-related resource objects in a system.

Base type of educationExcelResource, educationFileResource, educationLinkResource, educationPowerPointResource, educationWordResource, educationMediaResource, educationExternalResource, and educationTeamsAppResource.

An educationResource is associated with an assignment and/or submission, which represents the learning object that is being handed out or handed in. You can't instantiate a resource directly; you must make a subclass that represents the type of resource being used.

This resource stores the common properties across all resource types.

Properties

Property Type Description
createdBy identitySet Who created the resource?
createdDateTime Moment in time when the resource was created. DateTimeOffset The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
displayName String Display name of resource.
lastModifiedBy identitySet Who was the last user to modify the resource?
lastModifiedDateTime DateTimeOffset Moment in time when the resource was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z

JSON representation

The following JSON representation shows the resource type.

{
  "createdBy": {"@odata.type": "microsoft.graph.identitySet"},
  "createdDateTime": "String (timestamp)",
  "displayName": "String",
  "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "lastModifiedDateTime": "String (timestamp)"
}