| title | educationalActivity resource type |
|---|---|
| description | educationalActivity resource type |
| ms.localizationpriority | medium |
| author | kevinbellinger |
| ms.subservice | people |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents data that a user has supplied related to undergraduate, graduate, postgraduate or other educational activities.
Inherits metadata properties from itemFacet.
| Method | Return type | Description |
|---|---|---|
| List | educationalActivity collection | Get the educationalActivity resources from the educationalActivities navigation property. |
| Create | educationalActivity | Create a new educationalActivity object. |
| Get | educationalActivity | Read the properties and relationships of an educationalActivity object. |
| Update | educationalActivity | Update the properties of an educationalActivity object. |
| Delete | None | Deletes an educationalActivity object. |
| Property | Type | Description |
|---|---|---|
| allowedAudiences | String | The audiences that are able to see the values contained within the entity. Inherited from itemFacet. The possible values are: me, family, contacts, groupMembers, organization, federatedOrganizations, everyone, unknownFutureValue. |
| completionMonthYear | Date | The month and year the user graduated or completed the activity. |
| createdBy | identitySet | Provides the identifier of the user and/or application that created the entity. Inherited from itemFacet. |
| createdDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
| endMonthYear | Date | The month and year the user completed the educational activity referenced. |
| id | String | Identifier used for individually addressing the entity. Inherited from entity |
| inference | inferenceData | Contains inference detail if the entity is inferred by the creating or modifying application. Inherited from itemFacet. |
| institution | institutionData | Contains details of the institution studied at. |
| lastModifiedBy | identitySet | Provides the identifier of the user and/or application that last modified the entity. Inherited from itemFacet. |
| lastModifiedDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
| program | educationalActivityDetail | Contains extended information about the program or course. |
| source | personDataSource | Where the values originated if synced from another service. Inherited from itemFacet. |
| startMonthYear | Date | The month and year the user commenced the activity referenced. |
None
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.educationalActivity",
"id": "String (identifier)",
"allowedAudiences": "String",
"inference": {
"@odata.type": "microsoft.graph.inferenceData"
},
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"source": {
"@odata.type": "microsoft.graph.personDataSource"
},
"completionMonthYear": "Date",
"endMonthYear": "Date",
"institution": {
"@odata.type": "microsoft.graph.institutionData"
},
"program": {
"@odata.type": "microsoft.graph.educationalActivityDetail"
},
"startMonthYear": "Date"
}