Skip to content

Commit 810fce4

Browse files
authored
Schema sync 2026-02-06 from 1.4.398.0 (#1016)
1 parent 224e0bd commit 810fce4

13 files changed

+6417
-15
lines changed

schemas/beta-Bleu.csdl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3564,6 +3564,10 @@
35643564
<Property Name="policyTenantId" Type="Edm.String" />
35653565
<Property Name="resourceId" Type="Edm.String" />
35663566
</ComplexType>
3567+
<ComplexType Name="profileCardAnnotation">
3568+
<Property Name="displayName" Type="Edm.String" />
3569+
<Property Name="localizations" Type="Collection(graph.displayNameLocalization)" />
3570+
</ComplexType>
35673571
<ComplexType Name="profileSourceAnnotation">
35683572
<Property Name="isDefaultSource" Type="Edm.Boolean" />
35693573
<Property Name="properties" Type="Collection(Edm.String)" />
@@ -4444,6 +4448,7 @@
44444448
<EntityType Name="activityBasedTimeoutPolicy" BaseType="graph.stsPolicy" />
44454449
<EntityType Name="admin">
44464450
<NavigationProperty Name="entra" Type="graph.entra" ContainsTarget="true" />
4451+
<NavigationProperty Name="people" Type="graph.peopleAdminSettings" ContainsTarget="true" />
44474452
<NavigationProperty Name="serviceAnnouncement" Type="graph.serviceAnnouncement" ContainsTarget="true" />
44484453
<NavigationProperty Name="sharepoint" Type="graph.sharepoint" ContainsTarget="true" />
44494454
</EntityType>
@@ -5993,6 +5998,8 @@
59935998
</EntityType>
59945999
<EntityType Name="peopleAdminSettings" BaseType="graph.entity">
59956000
<NavigationProperty Name="itemInsights" Type="graph.insightsSettings" ContainsTarget="true" />
6001+
<NavigationProperty Name="profileCardProperties" Type="Collection(graph.profileCardProperty)" ContainsTarget="true" />
6002+
<NavigationProperty Name="pronouns" Type="graph.pronounsSettings" ContainsTarget="true" />
59966003
</EntityType>
59976004
<EntityType Name="permission" BaseType="graph.entity">
59986005
<Property Name="expirationDateTime" Type="Edm.DateTimeOffset" />
@@ -6286,6 +6293,10 @@
62866293
<NavigationProperty Name="webAccounts" Type="Collection(graph.webAccount)" ContainsTarget="true" />
62876294
<NavigationProperty Name="websites" Type="Collection(graph.personWebsite)" ContainsTarget="true" />
62886295
</EntityType>
6296+
<EntityType Name="profileCardProperty" BaseType="graph.entity">
6297+
<Property Name="annotations" Type="Collection(graph.profileCardAnnotation)" />
6298+
<Property Name="directoryPropertyName" Type="Edm.String" />
6299+
</EntityType>
62896300
<EntityType Name="profilePhoto" BaseType="graph.entity" HasStream="true" />
62906301
<EntityType Name="profileSource" BaseType="graph.entity" />
62916302
<EntityType Name="projectParticipation" BaseType="graph.itemFacet">
@@ -6298,6 +6309,9 @@
62986309
<Property Name="sponsors" Type="Collection(graph.relatedPerson)" />
62996310
<Property Name="thumbnailUrl" Type="Edm.String" />
63006311
</EntityType>
6312+
<EntityType Name="pronounsSettings" BaseType="graph.entity">
6313+
<Property Name="isEnabledInOrganization" Type="Edm.Boolean" Nullable="false" />
6314+
</EntityType>
63016315
<EntityType Name="provisioningObjectSummary" BaseType="graph.entity">
63026316
<Property Name="action" Type="Edm.String" />
63036317
<Property Name="activityDateTime" Type="Edm.DateTimeOffset" Nullable="false" />

schemas/beta-Fairfax.csdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8145,7 +8145,8 @@
81458145
<Member Name="encryptedProtectionTypeNotSupportedException" Value="131072" />
81468146
<Member Name="purviewClaimsChallengeNotSupportedException" Value="262144" />
81478147
<Member Name="exception" Value="524288" />
8148-
<Member Name="unknownFutureValue" Value="1048576" />
8148+
<Member Name="labelNotFoundException" Value="1048576" />
8149+
<Member Name="unknownFutureValue" Value="2097152" />
81498150
</EnumType>
81508151
<EnumType Name="userAccountSecurityType">
81518152
<Member Name="unknown" Value="0" />

schemas/beta-Prod.csdl

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,12 @@
226226
<Member Name="disabled" Value="2" />
227227
<Member Name="unknownFutureValue" Value="3" />
228228
</EnumType>
229+
<EnumType Name="agentIdentityType">
230+
<Member Name="agentIdentity" Value="0" />
231+
<Member Name="agentUser" Value="1" />
232+
<Member Name="unknownFutureValue" Value="2" />
233+
<Member Name="agentIdentityBlueprintPrincipal" Value="3" />
234+
</EnumType>
229235
<EnumType Name="agentIdRiskLevel">
230236
<Member Name="none" Value="0" />
231237
<Member Name="low" Value="1" />
@@ -18204,6 +18210,12 @@
1820418210
<NavigationProperty Name="customExtension" Type="graph.onOtpSendCustomExtension" />
1820518211
</ComplexType>
1820618212
<ComplexType Name="onOtpSendHandler" Abstract="true" />
18213+
<ComplexType Name="onPasswordMigrationCustomExtensionHandler" BaseType="graph.onPasswordSubmitHandler">
18214+
<Property Name="configuration" Type="graph.customExtensionOverwriteConfiguration" />
18215+
<Property Name="migrationPropertyId" Type="Edm.String" Nullable="false" />
18216+
<NavigationProperty Name="customExtension" Type="graph.onPasswordSubmitCustomExtension" />
18217+
</ComplexType>
18218+
<ComplexType Name="onPasswordSubmitHandler" Abstract="true" />
1820718219
<ComplexType Name="onPhoneMethodLoadStartExternalUsersAuthHandler" BaseType="graph.onPhoneMethodLoadStartHandler">
1820818220
<Property Name="smsOptions" Type="graph.phoneOptions" Nullable="false" />
1820918221
<Property Name="voiceOptions" Type="graph.phoneOptions" Nullable="false" />
@@ -23026,6 +23038,7 @@
2302623038
</EntityType>
2302723039
<EntityType Name="admin">
2302823040
<NavigationProperty Name="appsAndServices" Type="graph.adminAppsAndServices" ContainsTarget="true" />
23041+
<NavigationProperty Name="cloudLicensing" Type="microsoft.graph.cloudLicensing.adminCloudLicensing" ContainsTarget="true" />
2302923042
<NavigationProperty Name="configurationManagement" Type="graph.configurationManagement" ContainsTarget="true" />
2303023043
<NavigationProperty Name="dynamics" Type="graph.adminDynamics" ContainsTarget="true" />
2303123044
<NavigationProperty Name="edge" Type="graph.edge" ContainsTarget="true" />
@@ -23231,6 +23244,7 @@
2323123244
<Property Name="agentId" Type="Edm.String" Nullable="false" />
2323223245
<Property Name="detectedDateTime" Type="Edm.DateTimeOffset" />
2323323246
<Property Name="detectionTimingType" Type="graph.riskDetectionTimingType" Nullable="false" />
23247+
<Property Name="identityType" Type="graph.agentIdentityType" Nullable="false" />
2323423248
<Property Name="lastModifiedDateTime" Type="Edm.DateTimeOffset" />
2323523249
<Property Name="riskDetail" Type="graph.riskDetail" Nullable="false" />
2323623250
<Property Name="riskEventType" Type="Edm.String" Nullable="false" />
@@ -33421,6 +33435,10 @@
3342133435
<NavigationProperty Name="onlineMeeting" Type="graph.onlineMeeting" Nullable="false" />
3342233436
</EntityType>
3342333437
<EntityType Name="onOtpSendCustomExtension" BaseType="graph.customAuthenticationExtension" />
33438+
<EntityType Name="onPasswordSubmitCustomExtension" BaseType="graph.customAuthenticationExtension" />
33439+
<EntityType Name="onPasswordSubmitListener" BaseType="graph.authenticationEventListener">
33440+
<Property Name="handler" Type="graph.onPasswordSubmitHandler" />
33441+
</EntityType>
3342433442
<EntityType Name="onPhoneMethodLoadStartListener" BaseType="graph.authenticationEventListener">
3342533443
<Property Name="handler" Type="graph.onPhoneMethodLoadStartHandler" Nullable="false" />
3342633444
</EntityType>
@@ -35318,6 +35336,7 @@
3531835336
</EntityType>
3531935337
<EntityType Name="riskyAgent" BaseType="graph.entity">
3532035338
<Property Name="agentDisplayName" Type="Edm.String" />
35339+
<Property Name="identityType" Type="graph.agentIdentityType" Nullable="false" />
3532135340
<Property Name="isDeleted" Type="Edm.Boolean" Nullable="false" />
3532235341
<Property Name="isEnabled" Type="Edm.Boolean" Nullable="false" />
3532335342
<Property Name="isProcessing" Type="Edm.Boolean" Nullable="false" />
@@ -35962,6 +35981,7 @@
3596235981
<Property Name="appliedEventListeners" Type="Collection(graph.appliedAuthenticationEventListener)" />
3596335982
<Property Name="correlationId" Type="Edm.String" Nullable="false" />
3596435983
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
35984+
<Property Name="fraudProtectionDetails" Type="graph.fraudProtectionDetails" />
3596535985
<Property Name="signUpIdentity" Type="graph.signUpIdentity" />
3596635986
<Property Name="signUpIdentityProvider" Type="Edm.String" Nullable="false" />
3596735987
<Property Name="signUpStage" Type="graph.signUpStage" Nullable="false" />
@@ -51474,6 +51494,7 @@
5147451494
<EntitySet Name="governanceSubjects" EntityType="microsoft.graph.governanceSubject" />
5147551495
<EntitySet Name="groupLifecyclePolicies" EntityType="microsoft.graph.groupLifecyclePolicy" />
5147651496
<EntitySet Name="groups" EntityType="microsoft.graph.group">
51497+
<NavigationPropertyBinding Path="cloudLicensing/assignments" Target="admin/microsoft.graph.cloudLicensing.adminCloudLicensing/cloudLicensing/assignments" />
5147751498
<NavigationPropertyBinding Path="createdOnBehalfOf" Target="directoryObjects" />
5147851499
<NavigationPropertyBinding Path="memberOf" Target="directoryObjects" />
5147951500
<NavigationPropertyBinding Path="members" Target="directoryObjects" />
@@ -51543,6 +51564,8 @@
5154351564
<EntitySet Name="teamTemplateDefinition" EntityType="microsoft.graph.teamTemplateDefinition" />
5154451565
<EntitySet Name="users" EntityType="microsoft.graph.user">
5154551566
<NavigationPropertyBinding Path="appRoleAssignedResources" Target="servicePrincipals" />
51567+
<NavigationPropertyBinding Path="cloudLicensing/assignmentErrors" Target="admin/microsoft.graph.cloudLicensing.adminCloudLicensing/cloudLicensing/assignmentErrors" />
51568+
<NavigationPropertyBinding Path="cloudLicensing/assignments" Target="admin/microsoft.graph.cloudLicensing.adminCloudLicensing/cloudLicensing/assignments" />
5154651569
<NavigationPropertyBinding Path="createdObjects" Target="directoryObjects" />
5154751570
<NavigationPropertyBinding Path="directReports" Target="directoryObjects" />
5154851571
<NavigationPropertyBinding Path="employeeExperience/learningCourseActivities" Target="employeeExperience/learningCourseActivities" />
@@ -51558,6 +51581,7 @@
5155851581
<NavigationPropertyBinding Path="transitiveReports" Target="directoryObjects" />
5155951582
</EntitySet>
5156051583
<Singleton Name="admin" Type="microsoft.graph.admin">
51584+
<NavigationPropertyBinding Path="cloudLicensing/allotments/assignments" Target="admin/microsoft.graph.cloudLicensing.adminCloudLicensing/cloudLicensing/assignments" />
5156151585
<NavigationPropertyBinding Path="teams/userConfigurations/user" Target="users" />
5156251586
<NavigationPropertyBinding Path="windows/updates/policies/rings/excludedGroupAssignment/assignments/group" Target="groups" />
5156351587
<NavigationPropertyBinding Path="windows/updates/policies/rings/includedGroupAssignment/assignments/group" Target="groups" />
@@ -52164,22 +52188,85 @@
5216452188
<Member Name="device" Value="4" />
5216552189
<Member Name="unknownFutureValue" Value="8" />
5216652190
</EnumType>
52191+
<EnumType Name="subscriptionState">
52192+
<Member Name="active" Value="1" />
52193+
<Member Name="warning" Value="2" />
52194+
<Member Name="suspended" Value="3" />
52195+
<Member Name="lockedOut" Value="4" />
52196+
<Member Name="deleted" Value="5" />
52197+
<Member Name="unknownFutureValue" Value="6" />
52198+
</EnumType>
52199+
<EnumType Name="subscriptionTags" IsFlags="true">
52200+
<Member Name="none" Value="0" />
52201+
<Member Name="trial" Value="1" />
52202+
<Member Name="unknownFutureValue" Value="2" />
52203+
</EnumType>
5216752204
<ComplexType Name="groupCloudLicensing">
52205+
<NavigationProperty Name="assignments" Type="Collection(microsoft.graph.cloudLicensing.assignment)" />
5216852206
<NavigationProperty Name="usageRights" Type="Collection(microsoft.graph.cloudLicensing.usageRight)" ContainsTarget="true" />
5216952207
</ComplexType>
5217052208
<ComplexType Name="service">
5217152209
<Property Name="assignableTo" Type="microsoft.graph.cloudLicensing.assigneeTypes" Nullable="false" />
5217252210
<Property Name="planId" Type="Edm.Guid" Nullable="false" />
5217352211
<Property Name="planName" Type="Edm.String" />
5217452212
</ComplexType>
52213+
<ComplexType Name="subscription">
52214+
<Property Name="nextLifecycleDate" Type="Edm.Date" Nullable="false" />
52215+
<Property Name="startDate" Type="Edm.Date" Nullable="false" />
52216+
<Property Name="state" Type="microsoft.graph.cloudLicensing.subscriptionState" Nullable="false" />
52217+
<Property Name="subscriptionId" Type="Edm.String" Nullable="false" />
52218+
<Property Name="tags" Type="microsoft.graph.cloudLicensing.subscriptionTags" Nullable="false" />
52219+
</ComplexType>
5217552220
<ComplexType Name="userCloudLicensing">
52221+
<NavigationProperty Name="assignmentErrors" Type="Collection(microsoft.graph.cloudLicensing.assignmentError)" />
52222+
<NavigationProperty Name="assignments" Type="Collection(microsoft.graph.cloudLicensing.assignment)" />
5217652223
<NavigationProperty Name="usageRights" Type="Collection(microsoft.graph.cloudLicensing.usageRight)" ContainsTarget="true" />
52224+
<NavigationProperty Name="waitingMembers" Type="Collection(microsoft.graph.cloudLicensing.waitingMember)" />
5217752225
</ComplexType>
52226+
<EntityType Name="adminCloudLicensing" BaseType="graph.entity">
52227+
<NavigationProperty Name="allotments" Type="Collection(microsoft.graph.cloudLicensing.allotment)" ContainsTarget="true" />
52228+
<NavigationProperty Name="assignmentErrors" Type="Collection(microsoft.graph.cloudLicensing.assignmentError)" ContainsTarget="true" />
52229+
<NavigationProperty Name="assignments" Type="Collection(microsoft.graph.cloudLicensing.assignment)" ContainsTarget="true" />
52230+
</EntityType>
52231+
<EntityType Name="allotment" BaseType="graph.entity">
52232+
<Property Name="allottedUnits" Type="Edm.Int32" Nullable="false" />
52233+
<Property Name="assignableTo" Type="microsoft.graph.cloudLicensing.assigneeTypes" Nullable="false" />
52234+
<Property Name="consumedUnits" Type="Edm.Int32" Nullable="false" />
52235+
<Property Name="services" Type="Collection(microsoft.graph.cloudLicensing.service)" Nullable="false" />
52236+
<Property Name="skuId" Type="Edm.Guid" />
52237+
<Property Name="skuPartNumber" Type="Edm.String" />
52238+
<Property Name="subscriptions" Type="Collection(microsoft.graph.cloudLicensing.subscription)" Nullable="false" />
52239+
<NavigationProperty Name="assignments" Type="Collection(microsoft.graph.cloudLicensing.assignment)" />
52240+
<NavigationProperty Name="waitingMembers" Type="Collection(microsoft.graph.cloudLicensing.waitingMember)" />
52241+
</EntityType>
52242+
<EntityType Name="assignment" BaseType="graph.entity">
52243+
<Property Name="disabledServicePlanIds" Type="Collection(Edm.Guid)" Nullable="false" />
52244+
<NavigationProperty Name="allotment" Type="microsoft.graph.cloudLicensing.allotment" />
52245+
<NavigationProperty Name="assignedTo" Type="graph.directoryObject" Nullable="false" />
52246+
</EntityType>
52247+
<EntityType Name="assignmentError" BaseType="graph.entity">
52248+
<Property Name="code" Type="Edm.String" Nullable="false" />
52249+
<Property Name="message" Type="Edm.String" Nullable="false" />
52250+
<Property Name="occurrenceDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
52251+
<Property Name="skuId" Type="Edm.Guid" />
52252+
<NavigationProperty Name="assignedTo" Type="graph.directoryObject" Nullable="false" />
52253+
<NavigationProperty Name="usageRight" Type="microsoft.graph.cloudLicensing.usageRight" />
52254+
</EntityType>
5217852255
<EntityType Name="usageRight" BaseType="graph.entity">
5217952256
<Property Name="services" Type="Collection(microsoft.graph.cloudLicensing.service)" Nullable="false" />
5218052257
<Property Name="skuId" Type="Edm.Guid" />
5218152258
<Property Name="skuPartNumber" Type="Edm.String" />
52259+
<NavigationProperty Name="allotments" Type="Collection(microsoft.graph.cloudLicensing.allotment)" />
52260+
<NavigationProperty Name="assignments" Type="Collection(microsoft.graph.cloudLicensing.assignment)" />
52261+
</EntityType>
52262+
<EntityType Name="waitingMember" BaseType="graph.entity">
52263+
<Property Name="waitingSinceDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
52264+
<NavigationProperty Name="allotment" Type="microsoft.graph.cloudLicensing.allotment" Nullable="false" />
52265+
<NavigationProperty Name="assignedTo" Type="graph.directoryObject" Nullable="false" />
5218252266
</EntityType>
52267+
<Action Name="reprocessAssignments" IsBound="true">
52268+
<Parameter Name="bindingParameter" Type="Collection(microsoft.graph.cloudLicensing.assignment)" />
52269+
</Action>
5218352270
</Schema>
5218452271
<Schema Namespace="microsoft.graph.copilot" xmlns="http://docs.oasis-open.org/odata/ns/edm">
5218552272
<Action Name="chat" IsBound="true">
@@ -52889,6 +52976,15 @@
5288952976
<Property Name="itemId" Type="Edm.String" Nullable="false" />
5289052977
<Property Name="urlMatchInfo" Type="microsoft.graph.externalConnectors.urlMatchInfo" />
5289152978
</ComplexType>
52979+
<ComplexType Name="principal">
52980+
<Property Name="email" Type="Edm.String" />
52981+
<Property Name="entraDisplayName" Type="Edm.String" />
52982+
<Property Name="entraId" Type="Edm.String" />
52983+
<Property Name="externalId" Type="Edm.String" />
52984+
<Property Name="externalName" Type="Edm.String" />
52985+
<Property Name="tenantId" Type="Edm.String" />
52986+
<Property Name="upn" Type="Edm.String" />
52987+
</ComplexType>
5289252988
<ComplexType Name="properties" OpenType="true" />
5289352989
<ComplexType Name="property">
5289452990
<Property Name="aliases" Type="Collection(Edm.String)" />

schemas/beta-USNat.csdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2436,7 +2436,8 @@
24362436
<Member Name="encryptedProtectionTypeNotSupportedException" Value="131072" />
24372437
<Member Name="purviewClaimsChallengeNotSupportedException" Value="262144" />
24382438
<Member Name="exception" Value="524288" />
2439-
<Member Name="unknownFutureValue" Value="1048576" />
2439+
<Member Name="labelNotFoundException" Value="1048576" />
2440+
<Member Name="unknownFutureValue" Value="2097152" />
24402441
</EnumType>
24412442
<EnumType Name="userAccountSecurityType">
24422443
<Member Name="unknown" Value="0" />

0 commit comments

Comments
 (0)