Skip to content

Commit 6ce7615

Browse files
authored
Merge pull request #28678 from microsoftgraph/update-Microsoft-People-item-educantionalActivityDetail
Fix property types of educatoinalActivityDetail
2 parents d4f84be + 101b8c6 commit 6ce7615

2 files changed

Lines changed: 18 additions & 14 deletions

File tree

api-reference/beta/resources/educationalactivitydetail.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ Represents more detail about an undergraduate, graduate, postgraduate degree, or
1818

1919
## Properties
2020

21-
| Property | Type | Description |
22-
|:-------------|:------------|:--------------------------------------------------------------|
23-
|abbreviation |String |Shortened name of the degree or program (example: PhD, MBA) |
24-
|activities |String |Extracurricular activities undertaken alongside the program. |
25-
|awards |String |Any awards or honors associated with the program. |
26-
|description |String |Short description of the program provided by the user. |
27-
|displayName |String |Long-form name of the program that the user provided. |
28-
|fieldsOfStudy |String |Majors and minors associated with the program. (if applicable) |
29-
|grade |String |The final grade, class, GPA, or score. |
30-
|notes |String |More notes the user provided. |
31-
|webUrl |String |Link to the degree or program page. |
21+
| Property | Type | Description |
22+
|:-------------|:-----------------|:--------------------------------------------------------------|
23+
|abbreviation |String |Shortened name of the degree or program, for example, `PhD` and `MBA`. |
24+
|activities |String collection |Extracurricular activities undertaken alongside the program. |
25+
|awards |String collection |Any awards or honors associated with the program. |
26+
|description |String |Short description of the program provided by the user. |
27+
|displayName |String |Long-form name of the program that the user provided. |
28+
|fieldsOfStudy |String collection |Majors and minors associated with the program, if applicable. |
29+
|grade |String |The final grade, class, grade point average (GPA), or score. |
30+
|notes |String |More notes provided by the user. |
31+
|webUrl |String |Link to the degree or program page. |
3232

3333
## JSON representation
3434

@@ -46,11 +46,11 @@ The following JSON representation shows the resource type.
4646
```json
4747
{
4848
"abbreviation": "String",
49-
"activities": "String",
50-
"awards": "String",
49+
"activities": ["String"],
50+
"awards": ["String"],
5151
"description": "String",
5252
"displayName": "String",
53-
"fieldsOfStudy": "String",
53+
"fieldsOfStudy": ["String"],
5454
"grade": "String",
5555
"notes": "String",
5656
"webUrl": "String"

concepts/whats-new-overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ Added the **deprecationDate** property to the [applicationTemplate](/graph/api/r
6565

6666
Added the **blueprintId** and **source** agent-descriptive properties to [agentRiskDetection](/graph/api/resources/agentriskdetection?view=graph-rest-beta&preserve-view=true) and [riskyAgent](/graph/api/resources/riskyagent?view=graph-rest-beta&preserve-view=true) resources.
6767

68+
### People and workplace intelligence | Profile
69+
70+
Use the **activities**, **awards**, and **fieldsOfStudy** properties on [educationalActivityDetail](/graph/api/resources/educationalactivitydetail?view=graph-rest-beta&preserve-view=true) to get or set collections of activities, awards, or fields of study.
71+
6872
### Reports | Identity and access reports
6973

7074
Added the [azureADPremiumLicenseInsight](/graph/api/resources/azureadpremiumlicenseinsight?view=graph-rest-beta&preserve-view=true) resource and its associated APIs for getting insights into the Microsoft Entra ID P1 and P2 premium license utilization for the tenant, including feature utilization breakdowns for P1, P2, Internet Access, and Private Access features.

0 commit comments

Comments
 (0)