educationResource resource type
Namespace: microsoft.graph
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 cannot instantiate a resource directly; you must make a subclass that will represent the type of resource being used.
This resource stores the common properties across all resource types.
Properties
Property | Type | Description |
---|---|---|
createdBy | identitySet | The individual who created the resource. |
createdDateTime | DateTimeOffset | Moment in time when the resource was created. 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 | 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 . |
Relationships
None.
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)"
}