Skip to content

Commit 8bae839

Browse files
authored
Schema sync 2025-10-14 from 1.4.228.0 (#907)
1 parent 10af640 commit 8bae839

16 files changed

+567
-76
lines changed

schemas/beta-Bleu.csdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1677,7 +1677,7 @@
16771677
<Property Name="restrictions" Type="graph.customAppManagementConfiguration" />
16781678
<NavigationProperty Name="appliesTo" Type="Collection(graph.directoryObject)" />
16791679
</EntityType>
1680-
<EntityType Name="appRoleAssignment" BaseType="graph.entity">
1680+
<EntityType Name="appRoleAssignment" BaseType="graph.directoryObject">
16811681
<Property Name="appRoleId" Type="Edm.Guid" Nullable="false" />
16821682
<Property Name="creationTimestamp" Type="Edm.DateTimeOffset" />
16831683
<Property Name="principalDisplayName" Type="Edm.String" />

schemas/beta-Delos.csdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@
757757
<Property Name="restrictions" Type="graph.customAppManagementConfiguration" />
758758
<NavigationProperty Name="appliesTo" Type="Collection(graph.directoryObject)" />
759759
</EntityType>
760-
<EntityType Name="appRoleAssignment" BaseType="graph.entity">
760+
<EntityType Name="appRoleAssignment" BaseType="graph.directoryObject">
761761
<Property Name="appRoleId" Type="Edm.Guid" Nullable="false" />
762762
<Property Name="creationTimestamp" Type="Edm.DateTimeOffset" />
763763
<Property Name="principalDisplayName" Type="Edm.String" />

schemas/beta-Fairfax.csdl

Lines changed: 152 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3722,6 +3722,17 @@
37223722
<Member Name="ctph" Value="6" />
37233723
<Member Name="unknownFutureValue" Value="127" />
37243724
</EnumType>
3725+
<EnumType Name="fileStorageContainerBillingClassification">
3726+
<Member Name="standard" Value="0" />
3727+
<Member Name="trial" Value="1" />
3728+
<Member Name="directToCustomer" Value="2" />
3729+
<Member Name="unknownFutureValue" Value="3" />
3730+
</EnumType>
3731+
<EnumType Name="fileStorageContainerBillingStatus">
3732+
<Member Name="invalid" Value="0" />
3733+
<Member Name="valid" Value="1" />
3734+
<Member Name="unknownFutureValue" Value="2" />
3735+
</EnumType>
37253736
<EnumType Name="fileStorageContainerOwnershipType">
37263737
<Member Name="tenantOwned" Value="0" />
37273738
<Member Name="userOwned" Value="1" />
@@ -3732,6 +3743,33 @@
37323743
<Member Name="active" Value="1" />
37333744
<Member Name="unknownFutureValue" Value="2" />
37343745
</EnumType>
3746+
<EnumType Name="fileStorageContainerTypeAppPermission">
3747+
<Member Name="none" Value="0" />
3748+
<Member Name="readContent" Value="1" />
3749+
<Member Name="writeContent" Value="2" />
3750+
<Member Name="manageContent" Value="3" />
3751+
<Member Name="create" Value="4" />
3752+
<Member Name="delete" Value="5" />
3753+
<Member Name="read" Value="6" />
3754+
<Member Name="write" Value="7" />
3755+
<Member Name="enumeratePermissions" Value="8" />
3756+
<Member Name="addPermissions" Value="9" />
3757+
<Member Name="updatePermissions" Value="10" />
3758+
<Member Name="deletePermissions" Value="11" />
3759+
<Member Name="deleteOwnPermission" Value="12" />
3760+
<Member Name="managePermissions" Value="13" />
3761+
<Member Name="full" Value="14" />
3762+
<Member Name="unknownFutureValue" Value="15" />
3763+
</EnumType>
3764+
<EnumType Name="fileStorageContainerTypeSettingsOverride" IsFlags="true">
3765+
<Member Name="urlTemplate" Value="0" />
3766+
<Member Name="isDiscoverabilityEnabled" Value="1" />
3767+
<Member Name="isSearchEnabled" Value="2" />
3768+
<Member Name="isItemVersioningEnabled" Value="3" />
3769+
<Member Name="itemMajorVersionLimit" Value="4" />
3770+
<Member Name="maxStoragePerContainerInBytes" Value="5" />
3771+
<Member Name="unknownFutureValue" Value="6" />
3772+
</EnumType>
37353773
<EnumType Name="fileVaultState" IsFlags="true">
37363774
<Member Name="success" Value="0" />
37373775
<Member Name="driveEncryptedByUser" Value="1" />
@@ -11965,6 +12003,32 @@
1196512003
<Property Name="isOcrEnabled" Type="Edm.Boolean" />
1196612004
<Property Name="itemMajorVersionLimit" Type="Edm.Int32" />
1196712005
</ComplexType>
12006+
<ComplexType Name="fileStorageContainerTypeAgentSettings">
12007+
<Property Name="chatEmbedAllowedHosts" Type="Collection(Edm.String)" Nullable="false" />
12008+
</ComplexType>
12009+
<ComplexType Name="fileStorageContainerTypeRegistrationSettings">
12010+
<Property Name="agent" Type="graph.fileStorageContainerTypeAgentSettings" />
12011+
<Property Name="isDiscoverabilityEnabled" Type="Edm.Boolean" />
12012+
<Property Name="isItemVersioningEnabled" Type="Edm.Boolean" />
12013+
<Property Name="isSearchEnabled" Type="Edm.Boolean" />
12014+
<Property Name="isSharingRestricted" Type="Edm.Boolean" />
12015+
<Property Name="itemMajorVersionLimit" Type="Edm.Int64" />
12016+
<Property Name="maxStoragePerContainerInBytes" Type="Edm.Int64" />
12017+
<Property Name="sharingCapability" Type="graph.sharingCapabilities" />
12018+
<Property Name="urlTemplate" Type="Edm.String" />
12019+
</ComplexType>
12020+
<ComplexType Name="fileStorageContainerTypeSettings">
12021+
<Property Name="agent" Type="graph.fileStorageContainerTypeAgentSettings" />
12022+
<Property Name="consumingTenantOverridables" Type="graph.fileStorageContainerTypeSettingsOverride" />
12023+
<Property Name="isDiscoverabilityEnabled" Type="Edm.Boolean" />
12024+
<Property Name="isItemVersioningEnabled" Type="Edm.Boolean" />
12025+
<Property Name="isSearchEnabled" Type="Edm.Boolean" />
12026+
<Property Name="isSharingRestricted" Type="Edm.Boolean" />
12027+
<Property Name="itemMajorVersionLimit" Type="Edm.Int64" />
12028+
<Property Name="maxStoragePerContainerInBytes" Type="Edm.Int64" />
12029+
<Property Name="sharingCapability" Type="graph.sharingCapabilities" />
12030+
<Property Name="urlTemplate" Type="Edm.String" />
12031+
</ComplexType>
1196812032
<ComplexType Name="fileStorageContainerViewpoint">
1196912033
<Property Name="effectiveRole" Type="Edm.String" Nullable="false" />
1197012034
</ComplexType>
@@ -18086,7 +18150,7 @@
1808618150
<Property Name="restrictions" Type="graph.customAppManagementConfiguration" />
1808718151
<NavigationProperty Name="appliesTo" Type="Collection(graph.directoryObject)" />
1808818152
</EntityType>
18089-
<EntityType Name="appRoleAssignment" BaseType="graph.entity">
18153+
<EntityType Name="appRoleAssignment" BaseType="graph.directoryObject">
1809018154
<Property Name="appRoleId" Type="Edm.Guid" Nullable="false" />
1809118155
<Property Name="creationTimestamp" Type="Edm.DateTimeOffset" />
1809218156
<Property Name="principalDisplayName" Type="Edm.String" />
@@ -21455,6 +21519,8 @@
2145521519
</EntityType>
2145621520
<EntityType Name="fileStorage" BaseType="graph.entity">
2145721521
<NavigationProperty Name="containers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" />
21522+
<NavigationProperty Name="containerTypeRegistrations" Type="Collection(graph.fileStorageContainerTypeRegistration)" ContainsTarget="true" />
21523+
<NavigationProperty Name="containerTypes" Type="Collection(graph.fileStorageContainerType)" ContainsTarget="true" />
2145821524
<NavigationProperty Name="deletedContainers" Type="Collection(graph.fileStorageContainer)" ContainsTarget="true" />
2145921525
</EntityType>
2146021526
<EntityType Name="fileStorageContainer" BaseType="graph.entity">
@@ -21479,6 +21545,35 @@
2147921545
<NavigationProperty Name="permissions" Type="Collection(graph.permission)" ContainsTarget="true" />
2148021546
<NavigationProperty Name="recycleBin" Type="graph.recycleBin" ContainsTarget="true" />
2148121547
</EntityType>
21548+
<EntityType Name="fileStorageContainerType" BaseType="graph.entity">
21549+
<Property Name="billingClassification" Type="graph.fileStorageContainerBillingClassification" Nullable="false" />
21550+
<Property Name="billingStatus" Type="graph.fileStorageContainerBillingStatus" Nullable="false" />
21551+
<Property Name="createdDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
21552+
<Property Name="etag" Type="Edm.String" Nullable="false" />
21553+
<Property Name="expirationDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
21554+
<Property Name="name" Type="Edm.String" Nullable="false" />
21555+
<Property Name="owningAppId" Type="Edm.Guid" Nullable="false" />
21556+
<Property Name="settings" Type="graph.fileStorageContainerTypeSettings" Nullable="false" />
21557+
</EntityType>
21558+
<EntityType Name="fileStorageContainerTypeAppPermissionGrant">
21559+
<Key>
21560+
<PropertyRef Name="appId" />
21561+
</Key>
21562+
<Property Name="appId" Type="Edm.String" Nullable="false" />
21563+
<Property Name="applicationPermissions" Type="Collection(graph.fileStorageContainerTypeAppPermission)" />
21564+
<Property Name="delegatedPermissions" Type="Collection(graph.fileStorageContainerTypeAppPermission)" />
21565+
</EntityType>
21566+
<EntityType Name="fileStorageContainerTypeRegistration" BaseType="graph.entity">
21567+
<Property Name="billingClassification" Type="graph.fileStorageContainerBillingClassification" Nullable="false" />
21568+
<Property Name="billingStatus" Type="graph.fileStorageContainerBillingStatus" Nullable="false" />
21569+
<Property Name="etag" Type="Edm.String" Nullable="false" />
21570+
<Property Name="expirationDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
21571+
<Property Name="name" Type="Edm.String" Nullable="false" />
21572+
<Property Name="owningAppId" Type="Edm.Guid" Nullable="false" />
21573+
<Property Name="registeredDateTime" Type="Edm.DateTimeOffset" Nullable="false" />
21574+
<Property Name="settings" Type="graph.fileStorageContainerTypeRegistrationSettings" Nullable="false" />
21575+
<NavigationProperty Name="applicationPermissionGrants" Type="Collection(graph.fileStorageContainerTypeAppPermissionGrant)" ContainsTarget="true" />
21576+
</EntityType>
2148221577
<EntityType Name="filterOperatorSchema" BaseType="graph.entity">
2148321578
<Property Name="arity" Type="graph.scopeOperatorType" Nullable="false" />
2148421579
<Property Name="multivaluedComparisonType" Type="graph.scopeOperatorMultiValuedComparisonType" Nullable="false" />
@@ -36959,6 +37054,16 @@
3695937054
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
3696037055
<ReturnType Type="Collection(graph.office365ActiveUserDetail)" Nullable="false" />
3696137056
</Function>
37057+
<Function Name="getOffice365GroupsActivityDetail" IsBound="true" IsComposable="true">
37058+
<Parameter Name="reportRoot" Type="graph.reportRoot" />
37059+
<Parameter Name="date" Type="Edm.Date" Nullable="false" />
37060+
<ReturnType Type="Edm.Stream" Nullable="false" />
37061+
</Function>
37062+
<Function Name="getOffice365GroupsActivityDetail" IsBound="true" IsComposable="true">
37063+
<Parameter Name="reportRoot" Type="graph.reportRoot" />
37064+
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
37065+
<ReturnType Type="Edm.Stream" Nullable="false" />
37066+
</Function>
3696237067
<Function Name="getOffice365ServicesUserCounts" IsBound="true" IsComposable="true">
3696337068
<Parameter Name="reportRoot" Type="graph.reportRoot" />
3696437069
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
@@ -84158,6 +84263,15 @@
8415884263
</EntityType>
8415984264
</Schema>
8416084265
<Schema Namespace="microsoft.graph.security" xmlns="http://docs.oasis-open.org/odata/ns/edm">
84266+
<EnumType Name="action">
84267+
<Member Name="disable" Value="1" />
84268+
<Member Name="enable" Value="2" />
84269+
<Member Name="forcePasswordReset" Value="3" />
84270+
<Member Name="revokeAllSessions" Value="4" />
84271+
<Member Name="requireUserToSignInAgain" Value="5" />
84272+
<Member Name="markUserAsCompromised" Value="6" />
84273+
<Member Name="unknownFutureValue" Value="7" />
84274+
</EnumType>
8416184275
<EnumType Name="actionAfterRetentionPeriod">
8416284276
<Member Name="none" Value="0" />
8416384277
<Member Name="delete" Value="1" />
@@ -84561,6 +84675,12 @@
8456184675
<Member Name="global" Value="2" />
8456284676
<Member Name="unknownFutureValue" Value="3" />
8456384677
</EnumType>
84678+
<EnumType Name="identityProvider">
84679+
<Member Name="entraID" Value="1" />
84680+
<Member Name="activeDirectory" Value="2" />
84681+
<Member Name="okta" Value="3" />
84682+
<Member Name="unknownFutureValue" Value="4" />
84683+
</EnumType>
8456484684
<EnumType Name="incidentStatus">
8456584685
<Member Name="active" Value="1" />
8456684686
<Member Name="resolved" Value="2" />
@@ -84766,6 +84886,11 @@
8476684886
<Member Name="azure" Value="1" />
8476784887
<Member Name="unknownFutureValue" Value="15" />
8476884888
</EnumType>
84889+
<ComplexType Name="account">
84890+
<Property Name="actions" Type="Collection(microsoft.graph.security.action)" Nullable="false" />
84891+
<Property Name="identifier" Type="Edm.String" Nullable="false" />
84892+
<Property Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
84893+
</ComplexType>
8476984894
<ComplexType Name="alertComment">
8477084895
<Property Name="comment" Type="Edm.String" />
8477184896
<Property Name="createdByDisplayName" Type="Edm.String" />
@@ -85013,6 +85138,12 @@
8501385138
<ComplexType Name="incidentTaskResponseAction" BaseType="microsoft.graph.security.responseAction" Abstract="true">
8501485139
<Property Name="identifierValue" Type="Edm.String" Nullable="false" />
8501585140
</ComplexType>
85141+
<ComplexType Name="invokeActionResult">
85142+
<Property Name="accountId" Type="Edm.String" Nullable="false" />
85143+
<Property Name="action" Type="microsoft.graph.security.action" Nullable="false" />
85144+
<Property Name="correlationId" Type="Edm.String" />
85145+
<Property Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
85146+
</ComplexType>
8501685147
<ComplexType Name="ioTDeviceEvidence" BaseType="microsoft.graph.security.alertEvidence">
8501785148
<Property Name="deviceId" Type="Edm.String" />
8501885149
<Property Name="deviceName" Type="Edm.String" />
@@ -85589,8 +85720,17 @@
8558985720
<Property Name="severity" Type="microsoft.graph.security.healthIssueSeverity" />
8559085721
<Property Name="status" Type="microsoft.graph.security.healthIssueStatus" />
8559185722
</EntityType>
85723+
<EntityType Name="identityAccounts" BaseType="graph.entity" Abstract="true">
85724+
<Property Name="accounts" Type="Collection(microsoft.graph.security.account)" />
85725+
<Property Name="cloudSecurityIdentifier" Type="Edm.String" />
85726+
<Property Name="displayName" Type="Edm.String" />
85727+
<Property Name="domain" Type="Edm.String" />
85728+
<Property Name="isEnabled" Type="Edm.Boolean" Nullable="false" />
85729+
<Property Name="onPremisesSecurityIdentifier" Type="Edm.String" />
85730+
</EntityType>
8559285731
<EntityType Name="identityContainer" BaseType="graph.entity">
8559385732
<NavigationProperty Name="healthIssues" Type="Collection(microsoft.graph.security.healthIssue)" ContainsTarget="true" />
85733+
<NavigationProperty Name="identityAccounts" Type="Collection(microsoft.graph.security.identityAccounts)" ContainsTarget="true" />
8559485734
<NavigationProperty Name="sensors" Type="Collection(microsoft.graph.security.sensor)" ContainsTarget="true" />
8559585735
</EntityType>
8559685736
<EntityType Name="incident" BaseType="graph.entity">
@@ -85733,6 +85873,10 @@
8573385873
<Property Name="includedSources" Type="microsoft.graph.security.sourceType" />
8573485874
<NavigationProperty Name="group" Type="graph.group" Nullable="false" />
8573585875
</EntityType>
85876+
<EntityType Name="user" BaseType="microsoft.graph.security.identityAccounts">
85877+
<Property Name="emailAddress" Type="Edm.String" />
85878+
<Property Name="userPrincipalName" Type="Edm.String" />
85879+
</EntityType>
8573685880
<EntityType Name="userSource" BaseType="microsoft.graph.security.dataSource">
8573785881
<Property Name="email" Type="Edm.String" Nullable="false" />
8573885882
<Property Name="includedSources" Type="microsoft.graph.security.sourceType" />
@@ -85818,6 +85962,13 @@
8581885962
<Parameter Name="cloudAttachmentVersion" Type="microsoft.graph.security.cloudAttachmentVersion" />
8581985963
<Parameter Name="documentVersion" Type="microsoft.graph.security.documentVersion" />
8582085964
</Action>
85965+
<Action Name="invokeAction" IsBound="true">
85966+
<Parameter Name="bindingParameter" Type="microsoft.graph.security.identityAccounts" />
85967+
<Parameter Name="accountId" Type="Edm.String" Nullable="false" Unicode="false" />
85968+
<Parameter Name="action" Type="microsoft.graph.security.action" Nullable="false" />
85969+
<Parameter Name="identityProvider" Type="microsoft.graph.security.identityProvider" Nullable="false" />
85970+
<ReturnType Type="microsoft.graph.security.invokeActionResult" />
85971+
</Action>
8582185972
<Action Name="purgeData" IsBound="true">
8582285973
<Parameter Name="bindingParameter" Type="microsoft.graph.security.ediscoverySearch" />
8582385974
<Parameter Name="purgeType" Type="microsoft.graph.security.purgeType">

schemas/beta-GovSG.csdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@
757757
<Property Name="restrictions" Type="graph.customAppManagementConfiguration" />
758758
<NavigationProperty Name="appliesTo" Type="Collection(graph.directoryObject)" />
759759
</EntityType>
760-
<EntityType Name="appRoleAssignment" BaseType="graph.entity">
760+
<EntityType Name="appRoleAssignment" BaseType="graph.directoryObject">
761761
<Property Name="appRoleId" Type="Edm.Guid" Nullable="false" />
762762
<Property Name="creationTimestamp" Type="Edm.DateTimeOffset" />
763763
<Property Name="principalDisplayName" Type="Edm.String" />

0 commit comments

Comments
 (0)